Skip to content

Commit

Permalink
Add bioconductor data repos
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed May 5, 2012
1 parent bb9a4ac commit d4ce66a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions R/check-cran.r
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@ check_cran <- function(pkgs, libpath = file.path(tempdir(), "R-lib"), ...) {
if (length(pkgs) == 0) return()
message("Checking CRAN packages: ", paste(pkgs, collapse = ", "))

repos <- c(CRAN = "http://cran.r-project.org/",
BioC = "http://www.bioconductor.org/packages/release/bioc")
repos <- c(
CRAN = "http://cran.r-project.org/",
bioc = "http://bioconductor.org/packages/release/bioc",
aData = "http://bioconductor.org/packages/release/data/annotation",
eData = "http://bioconductor.org/packages/release/data/experiment"
)
tmp <- tempdir()

# Create and use temporary library
Expand Down

0 comments on commit d4ce66a

Please sign in to comment.