| 1 | = Cluster for Bioinformatics = |
| 2 | |
| 3 | [[PageOutline]] |
| 4 | |
| 5 | |
| 6 | {{{ |
| 7 | sudo apt-get -y install gcc g++ make autoconf build-essential |
| 8 | }}} |
| 9 | |
| 10 | == JDK 6 == |
| 11 | |
| 12 | {{{ |
| 13 | sudo apt-get -y install sun-java6-jdk |
| 14 | }}} |
| 15 | |
| 16 | === GNU R == |
| 17 | |
| 18 | {{{ |
| 19 | sudo apt-get -y install r-base |
| 20 | sudo apt-get -y install `apt-cache search --names-only "^r-cran" | awk '{ print $1 }' | grep -v "r-cran-rjava" | grep -v "r-cran-rmpi" ` |
| 21 | }}} |
| 22 | |
| 23 | == GNU R BioConductor == |
| 24 | |
| 25 | {{{ |
| 26 | if [ ! -e biocLite.R ]; then |
| 27 | sudo wget http://www.bioconductor.org/biocLite.R |
| 28 | fi |
| 29 | if [ ! -e BioConductor.R ]; then |
| 30 | cat > BioConductor.R << EOF |
| 31 | source(file="$(pwd)/biocLite.R") |
| 32 | biocLite() |
| 33 | }}} |
| 34 | |
| 35 | == mpiBLAST == |
| 36 | |
| 37 | * source: http://www.mpiblast.org/ |
| 38 | {{{ |
| 39 | sudo apt-get install libncbi6-dev libncbi6 |
| 40 | }}} |