Changes between Initial Version and Version 1 of jazz/BioCluster_Setup


Ignore:
Timestamp:
Jul 7, 2009, 9:12:36 PM (15 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/BioCluster_Setup

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