Return a list of Bioconductor package repositories
返回Bioconductor套件库列表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
WARNING: The biocReposList function is deprecated!
警告:biocReposList函数已经过时了!
This function returns a named character vector of Bioconductor package repositories.
这个函数返回一个Bioconductor包库命名的特征向量。
The vector can be used as the repos argument to install.packages and friends.
向量可以被用来作为repos到install.packages和朋友的说法。
用法----------Usage----------
biocReposList()
Details
详情----------Details----------
The repository URLs are hardcoded for each release.
档案库的URL是硬编码的每个版本。
值----------Value----------
参数:bioc
URL for Bioc software package repository
为Bioc软件包库的URL
参数:aData
URL for Bioc annotation data package repository
为Bioc注释数据包库的URL
参数:eData
URL for Bioc experiment data package repository
Bioc实验数据包库的URL
参数:extra
URL for Bioc extra repository
网址为Bioc额外的资源库
参数:cran
URL for CRAN package repository.
CRAN的包库的URL。
作者(S)----------Author(s)----------
S. Falcon
举例----------Examples----------
## This function is deprecated. Please use biocLite() to install packages:[#此功能已经过时了。请使用biocLite()来安装软件包:]
if (interactive()) {
source("http://bioconductor.org/biocLite.R")
biocLite("hgu95av2.db")
}
## If you really need to get the list of Bioconductor package repositories[#如果你真的需要得到Bioconductor包库列表]
## (like biocReposList() does), then do:[#(biocReposList()不一样),然后执行:]
source("http://bioconductor.org/biocLite.R")
biocinstallRepos() # PLEASE USE THIS, NOT biocReposList()[请使用这个,而不是biocReposList()]