Cegma 2.4: Difference between revisions
Jump to navigation
Jump to search
(Created page with " == Module file == The module file can be found in this location: /cm/shared/apps/WUR/ABGC/modulefiles <source lang='tcl'> #%Module1.0######################################...") |
No edit summary |
||
Line 6: | Line 6: | ||
<source lang='tcl'> | <source lang='tcl'> | ||
#%Module1.0####################################################################### | #%Module1.0####################################################################### | ||
## | ## cegma 2.4 modulefile | ||
## | ## | ||
proc ModulesHelp { } { | proc ModulesHelp { } { | ||
puts stderr "\tAdds | puts stderr "\tAdds cegma 2.4 to your environment" | ||
} | } | ||
module-whatis "Adds | module-whatis "Adds cegma 2.4 to your environment" | ||
module load BLAST+/2.2.28 genewise/2.2.3-rc7 geneid/1.4.4 hmmer/3.1b1 | |||
setenv CEGMA /cm/shared/apps/WUR/ABGC/cegma/cegma_v2.4.010312/ | |||
set cegma_24_root /cm/shared/apps/WUR/ABGC/cegma/cegma_v2.4.010312/bin/ | |||
set cegma_24_perllib /cm/shared/apps/WUR/ABGC/cegma/cegma_v2.4.010312/lib/ | |||
prepend-path PATH $cegma_24_root | |||
prepend-path PERL5LIB $cegma_24_perllib | |||
</source> | </source> | ||
Line 28: | Line 33: | ||
== External links == | == External links == | ||
* [http:// | * [http://korflab.ucdavis.edu/Datasets/cegma/ CEGMA homepage at Korf Lab] |
Revision as of 13:02, 21 December 2013
Module file
The module file can be found in this location:
/cm/shared/apps/WUR/ABGC/modulefiles
<source lang='tcl'>
- %Module1.0#######################################################################
- cegma 2.4 modulefile
proc ModulesHelp { } {
puts stderr "\tAdds cegma 2.4 to your environment"
}
module-whatis "Adds cegma 2.4 to your environment"
module load BLAST+/2.2.28 genewise/2.2.3-rc7 geneid/1.4.4 hmmer/3.1b1
setenv CEGMA /cm/shared/apps/WUR/ABGC/cegma/cegma_v2.4.010312/
set cegma_24_root /cm/shared/apps/WUR/ABGC/cegma/cegma_v2.4.010312/bin/ set cegma_24_perllib /cm/shared/apps/WUR/ABGC/cegma/cegma_v2.4.010312/lib/
prepend-path PATH $cegma_24_root prepend-path PERL5LIB $cegma_24_perllib
</source>