Name Mode Size
R 040000
inst 040000
man 040000
src 040000
DESCRIPTION 100644 1 kb
NAMESPACE 100644 0 kb
NEWS 100644 0 kb
README 100644 1 kb
cleanup 100755 0 kb
configure 100755 125 kb
configure.ac 100644 3 kb
README
=============== Installing GSVA =============== In order to successfully install and run GSVA you need to install first the GNU Scientific Library (GSL) which you can find in the following URL: http://www.gnu.org/software/gsl Once you have installed the GSL, if you have done it "system-wide" then you can install GSVA in the usual way as with any other Bioconductor package: biocLite("GSVA") However, if you have installed the GSL in a non system-wide location of you hard disk, you should provide this location to biocLite() as follows: biocLite("GSVA", configure.args="--with-gsl-lib=\"/where/gsl/lib/is\" --with-gsl-include=\"/where/gsl/include/is\"") If, alternatively, you have downloaded yourself the source tarball of GSVA and want to install it from the shell, then you should use: R CMD INSTALL --configure-args="--with-gsl-lib=`R RHOME`/lib --with-gsl-include=`R RHOME`/include" GSVA_X.Y.Z.tar.gz where X.Y.Z is the corresponding version of GSVA that you have actually downloaded.