如果R包的更新与当前的R版本或R代码不兼容,就会导致之前适用的脚本出现一些问题,此时可能需要安装某个特定版本的R包(使脚本正常运行)
例如我当前的survminer包版本是0.4.3,想换成0.4.2版本。而常规的 install.packages 函数并不支持版本的选择...
1.最简便的方法是使用devtools包中的install_version函数:
require(devtools)install_version('survminer', version = '0.4.2')
Downloading package from url: https://mirrors.tuna.tsinghua.edu.cn/CRAN/src/contrib/Archive/survminer/survminer_0.4.2.tar.gz
Installing survminer
packageVersion('survminer') # 当前版本查看
[1] ‘0.4.2’
这种方法会下载并安装目标R包及其依赖的包,所以推荐使用!
2.虽然 install.packages 函数并不支持版本的选择,但是如果你知道R包的源文件的位置:https://cran.r-project.org/src/contrib/Archive 或者其他镜像,则可以直接通过 source 的方式安装:
packageurl = 'https://cran.r-project.org/src/contrib/Archive/survminer/survminer_0.4.2.tar.gz'
install.packages(packageurl, repos = NULL, type = 'source')
举例
packageurl = 'http://www.bioconductor.org/packages/release/bioc/src/contrib/BiocGenerics_0.32.0.tar.gz'
> install.packages(packageurl, repos = NULL, type = 'source')
Installing package into ‘C:/Users/wlx/Documents/R/win-library/3.6’
(as ‘lib’ is unspecified)
trying URL 'http://www.bioconductor.org/packages/release/bioc/src/contrib/BiocGenerics_0.32.0.tar.gz'
Content type 'application/x-gzip' length 46806 bytes (45 KB)
downloaded 45 KB
* installing *source* package 'BiocGenerics' ...
** using staged installation
** R
** inst
** byte-compile and prepare package for lazy loading
Creating a new generic function for 'append' in package 'BiocGenerics'
Creating a new generic function for 'as.data.frame' in package 'BiocGenerics'
Creating a new generic function for 'cbind' in package 'BiocGenerics'
Creating a new generic function for 'rbind' in package 'BiocGenerics'
Creating a new generic function for 'do.call' in package 'BiocGenerics'
Creating a new generic function for 'duplicated' in package 'BiocGenerics'
Creating a new generic function for 'anyDuplicated' in package 'BiocGenerics'
Creating a new generic function for 'eval' in package 'BiocGenerics'
Creating a new generic function for 'pmax' in package 'BiocGenerics'
Creating a new generic function for 'pmin' in package 'BiocGenerics'
Creating a new generic function for 'pmax.int' in package 'BiocGenerics'
Creating a new generic function for 'pmin.int' in package 'BiocGenerics'
Creating a new generic function for 'Reduce' in package 'BiocGenerics'
Creating a new generic function for 'Filter' in package 'BiocGenerics'
Creating a new generic function for 'Find' in package 'BiocGenerics'
Creating a new generic function for 'Map' in package 'BiocGenerics'
Creating a new generic function for 'Position' in package 'BiocGenerics'
Creating a new generic function for 'get' in package 'BiocGenerics'
Creating a new generic function for 'mget' in package 'BiocGenerics'
Creating a new generic function for 'grep' in package 'BiocGenerics'
Creating a new generic function for 'grepl' in package 'BiocGenerics'
Creating a new generic function for 'is.unsorted' in package 'BiocGenerics'
Creating a new generic function for 'lapply' in package 'BiocGenerics'
Creating a new generic function for 'sapply' in package 'BiocGenerics'
Creating a new generic function for 'mapply' in package 'BiocGenerics'
Creating a new generic function for 'match' in package 'BiocGenerics'
Creating a new generic function for 'order' in package 'BiocGenerics'
Creating a new generic function for 'paste' in package 'BiocGenerics'
Creating a new generic function for 'rank' in package 'BiocGenerics'
Creating a new generic function for 'rownames' in package 'BiocGenerics'
Creating a new generic function for 'colnames' in package 'BiocGenerics'
Creating a new generic function for 'union' in package 'BiocGenerics'
Creating a new generic function for 'intersect' in package 'BiocGenerics'
Creating a new generic function for 'setdiff' in package 'BiocGenerics'
Creating a new generic function for 'sort' in package 'BiocGenerics'
Creating a new generic function for 'table' in package 'BiocGenerics'
Creating a new generic function for 'tapply' in package 'BiocGenerics'
Creating a new generic function for 'unique' in package 'BiocGenerics'
Creating a new generic function for 'unsplit' in package 'BiocGenerics'
Creating a new generic function for 'var' in package 'BiocGenerics'
Creating a new generic function for 'sd' in package 'BiocGenerics'
Creating a new generic function for 'which' in package 'BiocGenerics'
Creating a new generic function for 'which.max' in package 'BiocGenerics'
Creating a new generic function for 'which.min' in package 'BiocGenerics'
Creating a new generic function for 'IQR' in package 'BiocGenerics'
Creating a new generic function for 'mad' in package 'BiocGenerics'
Creating a new generic function for 'xtabs' in package 'BiocGenerics'
Creating a new generic function for 'clusterCall' in package 'BiocGenerics'
Creating a new generic function for 'clusterApply' in package 'BiocGenerics'
Creating a new generic function for 'clusterApplyLB' in package 'BiocGenerics'
Creating a new generic function for 'clusterEvalQ' in package 'BiocGenerics'
Creating a new generic function for 'clusterExport' in package 'BiocGenerics'
Creating a new generic function for 'clusterMap' in package 'BiocGenerics'
Creating a new generic function for 'parLapply' in package 'BiocGenerics'
Creating a new generic function for 'parSapply' in package 'BiocGenerics'
Creating a new generic function for 'parApply' in package 'BiocGenerics'
Creating a new generic function for 'parRapply' in package 'BiocGenerics'
Creating a new generic function for 'parCapply' in package 'BiocGenerics'
Creating a new generic function for 'parLapplyLB' in package 'BiocGenerics'
Creating a new generic function for 'parSapplyLB' in package 'BiocGenerics'
Creating a new generic function for 'basename' in package 'BiocGenerics'
Creating a new generic function for 'dirname' in package 'BiocGenerics'
** help
*** installing help indices
converting help for package 'BiocGenerics'
finding HTML links ... 好了
BiocGenerics-package html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:31: file link 'rbind' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:34: file link 'rowSums' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:35: file link 'colMeans' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:36: file link 'rowMeans' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:41: file link 'anyDuplicated' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:46: file link 'pmax' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:47: file link 'pmin' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:48: file link 'pmax.int' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:49: file link 'pmin.int' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:52: file link 'Reduce' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:53: file link 'Filter' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:54: file link 'Find' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:55: file link 'Map' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:56: file link 'Position' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:59: file link 'mget' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:62: file link 'grepl' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:67: file link 'sapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:72: file link '%in%' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:75: file link 'ncol' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:76: file link 'NROW' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:77: file link 'NCOL' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:85: file link 'rep.int' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:87: file link 'rownames' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:88: file link 'rownames<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:89: file link 'colnames' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:90: file link 'colnames<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:93: file link 'union' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:94: file link 'intersect' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:95: file link 'setdiff' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:100: file link 'start<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:101: file link 'end' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:102: file link 'end<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:103: file link 'width' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:104: file link 'width<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:105: file link 'pos' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:143: file link 'clusterCall' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:145: file link 'clusterApplyLB' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:146: file link 'clusterEvalQ' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:147: file link 'clusterExport' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:148: file link 'clusterMap' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:149: file link 'clusterSplit' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:150: file link 'parLapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:151: file link 'parSapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:152: file link 'parApply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:153: file link 'parRapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:154: file link 'parCapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:155: file link 'parLapplyLB' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:156: file link 'parSapplyLB' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:163: file link 'annotation<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:168: file link 'dbfile' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:178: file link 'organism' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:179: file link 'organism<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:180: file link 'species' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:181: file link 'species<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:184: file link 'path<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:185: file link 'basename' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:186: file link 'basename<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:187: file link 'dirname' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:188: file link 'dirname<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:195: file link 'score<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:198: file link 'strand<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:199: file link 'invertStrand' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:204: file link 'type<-' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/BiocGenerics-package.Rd:243: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Extremes html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:18: file link 'pmax' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:38: file link 'pmax' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:44: file link 'pmax' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:53: file link 'pmax' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:59: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:62: file link 'pmax,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Extremes.Rd:64: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
IQR html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/IQR.Rd:44: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Ontology html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Ontology.Rd:26: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Ontology.Rd:29: file link 'Ontology,GOTerms-method' in package 'AnnotationDbi' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/Ontology.Rd:31: file link 'GOTerms' in package 'AnnotationDbi' does not exist and so has been treated as a topic
S3-classes-as-S4-classes html
annotation html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/annotation.Rd:34: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/annotation.Rd:37: file link 'annotation,eSet-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/annotation.Rd:39: file link 'eSet' in package 'Biobase' does not exist and so has been treated as a topic
append html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/append.Rd:54: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/append.Rd:57: file link 'append,Vector,Vector-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/append.Rd:59: file link 'Vector' in package 'S4Vectors' does not exist and so has been treated as a topic
as.data.frame html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.data.frame.Rd:53: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.data.frame.Rd:56: file link 'as.data.frame,DataFrame-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.data.frame.Rd:58: missing file link 'as.data.frame,IntegerRanges-method'
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.data.frame.Rd:60: file link 'DataFrame' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.data.frame.Rd:61: file link 'IntegerRanges' in package 'IRanges' does not exist and so has been treated as a topic
as.vector html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:15: file link 'as.vector' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:30: file link 'as.vector' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:38: file link 'as.vector' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:47: file link 'as.vector' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:53: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:56: file link 'as.vector,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:57: file link 'as.vector,AtomicList-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:59: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/as.vector.Rd:60: file link 'AtomicList' in package 'IRanges' does not exist and so has been treated as a topic
boxplot html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/boxplot.Rd:44: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
cbind html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/cbind.Rd:53: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/cbind.Rd:56: file link 'cbind,DataFrame-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/cbind.Rd:58: file link 'DataFrame' in package 'S4Vectors' does not exist and so has been treated as a topic
clusterApply html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/clusterApply.Rd:98: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
colSums html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/colSums.Rd:56: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/colSums.Rd:59: file link 'colSums,DelayedMatrix-method' in package 'DelayedArray' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/colSums.Rd:62: file link 'DelayedMatrix' in package 'DelayedArray' does not exist and so has been treated as a topic
combine html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:69: file link 'AnnotatedDataFrame' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:70: file link 'MIAME' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:71: file link 'eSet' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:84: file link 'combine,AnnotatedDataFrame,AnnotatedDataFrame-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:85: file link 'combine,AssayData,AssayData-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:86: file link 'combine,MIAME,MIAME-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:87: file link 'combine,eSet,eSet-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/combine.Rd:96: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
dbconn html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dbconn.Rd:36: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dbconn.Rd:39: file link 'dbconn,AnnotationDb-method' in package 'AnnotationDbi' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dbconn.Rd:41: file link 'dbconn' in package 'AnnotationDbi' does not exist and so has been treated as a topic
density html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/density.Rd:45: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
dge html
dims html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dims.Rd:27: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dims.Rd:30: file link 'dims,eSet-method' in package 'Biobase' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/dims.Rd:32: file link 'eSet' in package 'Biobase' does not exist and so has been treated as a topic
do.call html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/do.call.Rd:61: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
duplicated html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/duplicated.Rd:69: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/duplicated.Rd:72: file link 'duplicated,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/duplicated.Rd:74: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
eval html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/eval.Rd:58: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/eval.Rd:61: file link 'eval,expression,Vector-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/eval.Rd:64: file link 'Vector' in package 'S4Vectors' does not exist and so has been treated as a topic
evalq html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/evalq.Rd:12: file link 'evalq' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/evalq.Rd:34: file link 'evalq' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/evalq.Rd:40: file link 'evalq' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/evalq.Rd:45: file link 'evalq' in package 'base' does not exist and so has been treated as a topic
fileName html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/fileName.Rd:29: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
funprog html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:26: file link 'Reduce' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:43: file link 'Reduce' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:55: file link 'Reduce' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:64: file link 'Reduce' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:70: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:73: file link 'Reduce,List-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/funprog.Rd:75: file link 'List' in package 'S4Vectors' does not exist and so has been treated as a topic
get html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/get.Rd:64: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/get.Rd:67: file link 'get,ANY,Bimap,missing-method' in package 'AnnotationDbi' does not exist and so has been treated as a topic
grep html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/grep.Rd:56: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
image html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/image.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
is.unsorted html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/is.unsorted.Rd:63: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/is.unsorted.Rd:66: file link 'is.unsorted,GenomicRanges-method' in package 'GenomicRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/is.unsorted.Rd:69: file link 'GenomicRanges' in package 'GenomicRanges' does not exist and so has been treated as a topic
lapply html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/lapply.Rd:61: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/lapply.Rd:64: file link 'lapply,List-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/lapply.Rd:66: file link 'List' in package 'S4Vectors' does not exist and so has been treated as a topic
mad html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mad.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
mapply html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mapply.Rd:9: file link 'sapply' in package 'BiocGenerics' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mapply.Rd:54: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
match html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/match.Rd:66: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/match.Rd:69: file link 'match,Hits,Hits-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/match.Rd:70: file link '%in%,Rle,ANY-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/match.Rd:72: file link 'Hits' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/match.Rd:73: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
mean html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mean.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mean.Rd:49: file link 'mean,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/mean.Rd:51: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
normalize html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/normalize.Rd:38: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
nrow html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/nrow.Rd:50: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/nrow.Rd:53: file link 'nrow,DataFrame-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/nrow.Rd:55: file link 'DataFrame' in package 'S4Vectors' does not exist and so has been treated as a topic
order html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/order.Rd:73: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/order.Rd:76: missing file link 'order,IntegerRanges-method'
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/order.Rd:78: file link 'IntegerRanges' in package 'IRanges' does not exist and so has been treated as a topic
organism_species html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:63: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:66: file link 'organism,character-method' in package 'annotate' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:67: file link 'organism,chromLocation-method' in package 'annotate' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:69: file link 'chromLocation' in package 'annotate' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:72: file link 'species,AnnotationDb-method' in package 'AnnotationDbi' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/organism_species.Rd:74: file link 'AnnotationDb' in package 'AnnotationDbi' does not exist and so has been treated as a topic
paste html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/paste.Rd:49: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/paste.Rd:52: file link 'paste,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/paste.Rd:54: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
path html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/path.Rd:91: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
plotMA html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/plotMA.Rd:35: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
plotPCA html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/plotPCA.Rd:36: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
rank html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rank.Rd:70: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rank.Rd:73: file link 'rank,Vector-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rank.Rd:75: file link 'Vector' in package 'S4Vectors' does not exist and so has been treated as a topic
relist html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/relist.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/relist.Rd:49: file link 'relist,ANY,List-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/relist.Rd:51: file link 'List' in package 'S4Vectors' does not exist and so has been treated as a topic
rep html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:12: file link 'rep.int' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:27: file link 'rep.int' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:33: file link 'rep.int' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:42: file link 'rep.int' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:48: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:51: file link 'rep.int,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/rep.Rd:53: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
residuals html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/residuals.Rd:41: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
row_colnames html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:17: file link 'rownames' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:36: file link 'rownames' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:50: file link 'rownames' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:59: file link 'rownames' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:66: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:69: file link 'rownames,DataFrame-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/row_colnames.Rd:71: file link 'DataFrame' in package 'S4Vectors' does not exist and so has been treated as a topic
score html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/score.Rd:34: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/score.Rd:37: file link 'score,GenomicRanges-method' in package 'GenomicRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/score.Rd:39: file link 'GenomicRanges' in package 'GenomicRanges' does not exist and so has been treated as a topic
sets html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:17: file link 'union' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:39: file link 'union' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:57: file link 'GenomicRanges' in package 'GenomicRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:65: file link 'union' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:71: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:74: file link 'union,GenomicRanges,GenomicRanges-method' in package 'GenomicRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sets.Rd:77: file link 'GenomicRanges' in package 'GenomicRanges' does not exist and so has been treated as a topic
sort html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sort.Rd:62: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sort.Rd:65: file link 'sort,Vector-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/sort.Rd:67: file link 'Vector' in package 'S4Vectors' does not exist and so has been treated as a topic
start html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/start.Rd:64: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/start.Rd:67: file link 'start,IRanges-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/start.Rd:69: file link 'IRanges' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/start.Rd:71: missing file link 'pos,UnstitchedIPos-method'
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/start.Rd:73: missing file link 'UnstitchedIPos'
strand html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/strand.Rd:73: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/strand.Rd:76: file link 'strand,GRanges-method' in package 'GenomicRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/strand.Rd:78: file link 'GRanges' in package 'GenomicRanges' does not exist and so has been treated as a topic
subset html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/subset.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/subset.Rd:49: file link 'subset,DataTable-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/subset.Rd:51: file link 'DataTable' in package 'S4Vectors' does not exist and so has been treated as a topic
t html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/t.Rd:44: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/t.Rd:47: file link 't,Hits-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/t.Rd:49: file link 'Hits' in package 'S4Vectors' does not exist and so has been treated as a topic
table html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/table.Rd:46: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/table.Rd:49: file link 'table,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/table.Rd:51: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
tapply html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/tapply.Rd:64: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/tapply.Rd:67: file link 'tapply,Vector,ANY-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/tapply.Rd:69: file link 'Vector' in package 'S4Vectors' does not exist and so has been treated as a topic
testPackage html
toTable html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/toTable.Rd:37: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/toTable.Rd:40: file link 'toTable,Bimap-method' in package 'AnnotationDbi' does not exist and so has been treated as a topic
type html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/type.Rd:45: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/type.Rd:48: file link 'type,ANY-method' in package 'DelayedArray' does not exist and so has been treated as a topic
unique html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unique.Rd:57: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unique.Rd:60: file link 'unique,Rle-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unique.Rd:62: file link 'Rle' in package 'S4Vectors' does not exist and so has been treated as a topic
unlist html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unlist.Rd:51: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unlist.Rd:54: file link 'unlist,List-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unlist.Rd:56: file link 'List' in package 'S4Vectors' does not exist and so has been treated as a topic
unsplit html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:14: file link 'unsplit' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:33: file link 'unsplit' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:39: file link 'unsplit' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:48: file link 'unsplit' in package 'base' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:54: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:57: file link 'unsplit,List-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/unsplit.Rd:59: file link 'List' in package 'S4Vectors' does not exist and so has been treated as a topic
updateObject html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/updateObject.Rd:130: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
var html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/var.Rd:14: file link 'var' in package 'stats' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/var.Rd:32: file link 'var' in package 'stats' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/var.Rd:36: file link 'var' in package 'stats' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/var.Rd:45: file link 'var' in package 'stats' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/var.Rd:51: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
weights html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/weights.Rd:47: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
which html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/which.Rd:57: file link 'NumericList' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/which.Rd:69: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/which.Rd:72: file link 'which.max,NumericList-method' in package 'IRanges' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/which.Rd:75: file link 'NumericList' in package 'IRanges' does not exist and so has been treated as a topic
xtabs html
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/xtabs.Rd:52: file link 'selectMethod' in package 'methods' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/xtabs.Rd:55: file link 'xtabs,DataTable-method' in package 'S4Vectors' does not exist and so has been treated as a topic
Rd warning: C:/Windows/Temp/Rtmpkz8G1Y/R.INSTALL2f986586d71/BiocGenerics/man/xtabs.Rd:57: file link 'DataTable' in package 'S4Vectors' does not exist and so has been treated as a topic
** building package indices
** testing if installed package can be loaded from temporary location
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (BiocGenerics)
3.将安装包下载到本地后安装,终端命令如下:
wget https://cran.r-project.org/src/contrib/Archive/survminer/survminer_0.4.2.tar.gzR CMD INSTALL survminer_0.4.2.tar.gz
当然,想要安装特定版本的R包也可能会面临一些问题。比如,旧版本包中有bug、缺少新的功能、与当前R版本并不兼容等。此时,就需要下载安装适配版本的R或者调整脚本了!