Exonerate 2.2.0: Difference between revisions

From HPCwiki
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######################################...")
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[https://www.ebi.ac.uk/~guy/exonerate/ Exonerate] is a generic tool for pairwise sequence comparison. It allows you to align sequences using a many alignment models, using either exhaustive dynamic programming, or a variety of heuristics.
== Module file ==
== Module file ==
The module file can be found in this location:
The module file can be found in this location:
   /cm/shared/apps/WUR/ABGC/modulefiles
   /cm/shared/modulefiles/SHARED/


<source lang='tcl'>
<source lang='tcl'>
#%Module1.0#######################################################################
#%Module1.0#######################################################################
## bwa 0.7.5a modulefile
## exonerate 2.2.0-x86_64 modulefile
##
##
proc ModulesHelp { } {
proc ModulesHelp { } {


         puts stderr "\tAdds bwa v0.7.5a to your environment"
         puts stderr "\tAdds exonerate 2.2.0-x86_64 to your environment"
}
}


module-whatis  "Adds bwa v0.7.5a to your environment"
module-whatis  "Adds exonerate 2.2.0-x86_64 to your environment"
 
set            bwa_075a_root        /cm/shared/apps/WUR/ABGC/bwa/bwa-0.7.5a
 
prepend-path    PATH            $bwa_075a_root


set            exonerate_220_root        /cm/shared/apps/SHARED/exonerate/exonerate-2.2.0-x86_64/bin


prepend-path    PATH            $exonerate_220_root
</source>
</source>


== Installation details ==
Installed as pre- compiled libraries downloaded from the Exonerate [https://www.ebi.ac.uk/~guy/exonerate/exonerate-2.2.0-x86_64.tar.gz download page]


== See also ==
== See also ==
Line 28: Line 28:


== External links ==
== External links ==
* [http://bio-bwa.sourceforge.net/bwa.shtml BWA manpage]
* [https://www.ebi.ac.uk/~guy/exonerate/ Exonerate homepage at EBI]

Latest revision as of 09:59, 15 March 2014

Exonerate is a generic tool for pairwise sequence comparison. It allows you to align sequences using a many alignment models, using either exhaustive dynamic programming, or a variety of heuristics.

Module file

The module file can be found in this location:

 /cm/shared/modulefiles/SHARED/

<source lang='tcl'>

  1. %Module1.0#######################################################################
    1. exonerate 2.2.0-x86_64 modulefile

proc ModulesHelp { } {

       puts stderr "\tAdds exonerate 2.2.0-x86_64 to your environment"

}

module-whatis "Adds exonerate 2.2.0-x86_64 to your environment"

set exonerate_220_root /cm/shared/apps/SHARED/exonerate/exonerate-2.2.0-x86_64/bin

prepend-path PATH $exonerate_220_root </source>

Installation details

Installed as pre- compiled libraries downloaded from the Exonerate download page

See also

External links