Hmmer 3.1: 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######################################...")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
[http://hmmer.janelia.org HMMER] is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models (profile HMMs).


== 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
## hmmer 3.1 modulefile
##
##
proc ModulesHelp { } {
proc ModulesHelp { } {


         puts stderr "\tAdds bwa v0.7.5a to your environment"
         puts stderr "\tAdds hmmer v3.1 to your environment"
}
}


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


set            hmmer_31_root        /cm/shared/apps/SHARED/hmmer/hmmer-3.1b1-linux-intel-x86_64/binaries/


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


== Installation details ==
Downloaded as pre-compiled binaries from the [ftp://selab.janelia.org/pub/software/hmmer3/3.1b1/hmmer-3.1b1-linux-intel-x86_64.tar.gz hmmer website].


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


== External links ==
== External links ==
* [http://bio-bwa.sourceforge.net/bwa.shtml BWA manpage]
* [http://hmmer.janelia.org hmmer website]

Latest revision as of 10:00, 15 March 2014

HMMER is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models (profile HMMs).

Module file

The module file can be found in this location:

 /cm/shared/modulefiles/SHARED/

<source lang='tcl'>

  1. %Module1.0#######################################################################
    1. hmmer 3.1 modulefile

proc ModulesHelp { } {

       puts stderr "\tAdds hmmer v3.1 to your environment"

}

module-whatis "Adds hmmer v3.1 to your environment"

set hmmer_31_root /cm/shared/apps/SHARED/hmmer/hmmer-3.1b1-linux-intel-x86_64/binaries/

prepend-path PATH $hmmer_31_root </source>

Installation details

Downloaded as pre-compiled binaries from the hmmer website.

See also

External links