Skip to content

[Bioc-devel] Complete download of Bioconductor 1.8

1 message · Seth Falcon

#
"Claudio Lottaz" <Claudio.Lottaz at molgen.mpg.de> writes:
reposTools has been deprecated.  The 1.8 release repositories are not
available in reposTools format.
Yes, all Bioc package repositories are normal CRAN-style repositories.
To get the current complete list of Bioc repositories:

library("Biobase")
biocReposList()
allp <- available.packages(contriburl=contrib.url(biocReposList()))

However, this includes all of CRAN, all annotation and experiment
packages, etc.

For just the software packages:

softwarePkgs <- available.packages(contrib.url(biocReposList()["bioc"]))

Then you can use download.packages:

download.packages(rownames(softwarePkgs), "destdir", repos=biocReposList()["bioc"])

Also, you might be interested in these instructions:
http://www.bioconductor.org/download/mirrors/mirror-howto.html