Displaying 1 result from an estimated 1 matches for "bioccontrib".
2004 Apr 14
1
Makefile for installing all available packages
...1.9.0
WGET ?= wget -N -nd -r -A gz -r -l 1 -nv
PACKAGE_FILES = $(wildcard *.gz )
PACKAGE_LOGS = $(addsuffix .log, $(basename $(basename $(PACKAGE_FILES))))
default: cran bioconductor install
cran:
$(WGET) "http://cran.r-project.org/src/contrib/PACKAGES.html"
bioconductor: bioCmain bioCcontrib bioCdata
bioCmain:
$(WGET)
"http://www.bioconductor.org/repository/release1.3/package/html/index.html"
bioCcontrib:
$(WGET) "http://www.bioconductor.org/contrib/index.html"
bioCdata:
$(WGET) "http://www.bioconductor.org/data/metaData.html"
install: $(PACKAGE_LOG...