...
Code Block |
---|
wget http://bio.math.berkeley.edu/eXpress/downloads/express-1.1.0/express-1.1.0-src.tgz tar zxvf express*.tgz cd ./express*/ # Remember where eXpress unpacked itself export MY_EXPRESS_DIR=`pwd` # Download BamTools from github wget --no-check-certificate https://github.com/downloads/pezmaster31/bamtools/bamtools-1.0.2.tar.gz # extract BamTools into $MY_EXPRESS_DIR then install tar zxvf bamtools*.tar.gz # strip off the version number from the bamtools cddirectory mv ./bamtools*/ # Remember where BamTools unpacked itself./bamtools/ cd ./bamtools export MY_BAMTOOLS_DIR=`pwd` |
...