biocReposList {Biobase}R Documentation

Return a list of Bioconductor package repositories

Description

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.

Usage

biocReposList()

Details

The repository URLs are hardcoded for each release.

Value

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.

Author(s)

S. Falcon

Examples

## 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()

[Package Biobase version 2.14.0 Index]