biocReposList {Biobase} | R Documentation |
WARNING: The biocReposList
function is deprecated!
This function returns a named character vector of Bioconductor package repositories.
The vector can be used as the repos
argument to
install.packages
and friends.
biocReposList()
The repository URLs are hardcoded for each release.
bioc |
URL for Bioc software package repository |
aData |
URL for Bioc annotation data package repository |
eData |
URL for Bioc experiment data package repository |
extra |
URL for Bioc extra repository |
cran |
URL for CRAN package repository. |
S. Falcon
## This function is deprecated. Please use biocLite() to install packages: if (interactive()) { source("http://bioconductor.org/biocLite.R") biocLite("hgu95av2.db") } ## If you really need to get the list of Bioconductor package repositories ## (like biocReposList() does), then do: source("http://bioconductor.org/biocLite.R") biocinstallRepos() # PLEASE USE THIS, NOT biocReposList()