User Tools

Site Tools


software:genome_assembly:cufflinks:1.0.3

cufflinks 1.0.3 installation

Depends on samtools and boost! Make sure those are installed first…

Unpack

tar zxf cufflinks-1.0.3.tar.gz
cd cufflinks-1.0.3

Configure, compile and install

./configure --prefix=/export/apps/cufflinks/1.0.3 --with-boost=/export/apps/boost/1.47.0 --with-bam=/export/apps/samtools/0.1.17
make
sudo make install

Prepare module file

Allow users to load support for cufflinks using the module system:

mkdir /export/apps/modules/modulefiles/cufflinks

Create the module file, /export/apps/modules/modulefiles/cufflinks/1.0.3:

#%Module1.0
#####################################################################
##
## cufflinks Modulefile
## by Alan Orth, a.orth@cgiar.org
##
set version   1.0.3
set prefix    /export/apps/cufflinks/${version}
set exec_prefix   ${prefix}
set url "http://cufflinks.cbcb.umd.edu/"
set msg "This module adds cufflinks v$version to various paths\n\ncufflinks Official Site: $url\n"

proc ModulesHelp { } { 
  puts stderr "$msg"
}

module-whatis   "$msg"

conflict      cufflinks

prepend-path  PATH    ${exec_prefix}/bin
# cufflinks 1.0.3 was compiled against boost 1.47.0, make sure if can find boost!
prepend-path  LD_LIBRARY_PATH /export/apps/boost/1.47.0/lib

# cufflinks depends on samtools, load the samtools module as well
if { ![is-loaded samtools] } { 
    module load samtools
}

Test module file

module load cufflinks
software/genome_assembly/cufflinks/1.0.3.txt · Last modified: 2012/06/12 08:47 by aorth