MAFFT 7.130: Difference between revisions

From HPCwiki
Jump to navigation Jump to search
(Created page with "'''[http://mafft.cbrc.jp/alignment/software/ MAFFT]''' is a multiple sequence alignment program for unix-like operating systems. It offers a range of multiple alignment metho...")
 
m (<source> to <pre> to fix code blocks)
 
(2 intermediate revisions by one other user not shown)
Line 5: Line 5:
   /cm/shared/modulefiles/SHARED/
   /cm/shared/modulefiles/SHARED/


<source lang='tcl'>
<pre>
#%Module1.0#######################################################################
#%Module1.0#######################################################################
## MAFFT 7.130 modulefile
## MAFFT 7.130 modulefile
Line 23: Line 23:
prepend-path    PATH            $mafft_7_root
prepend-path    PATH            $mafft_7_root


</source>
</pre>


== Installation details ==
== Installation details ==


Downloaded as pre-compiled binary:
Downloaded as source:
  http://www.drive5.com/muscle/downloads3.8.31/muscle3.8.31_i86linux64.tar.gz
<source lang='bash'>
wget http://mafft.cbrc.jp/alignment/software/mafft-7.130-with-extensions-src.tgz
</pre>


== See also ==
== See also ==
Line 35: Line 37:


== External links ==
== External links ==
* [http://drive5.com/muscle/ MUSCLE home page]
* [http://mafft.cbrc.jp/alignment/software/ MAFFT home page]

Latest revision as of 14:49, 15 June 2023

MAFFT is a multiple sequence alignment program for unix-like operating systems. It offers a range of multiple alignment methods, L-INS-i (accurate; for alignment of <∼200 sequences), FFT-NS-2 (fast; for alignment of <∼10,000 sequences), etc.

Module file

The module file can be found in this location:

 /cm/shared/modulefiles/SHARED/
#%Module1.0#######################################################################
## MAFFT 7.130 modulefile
##
proc ModulesHelp { } {

        puts stderr "\tAdds MAFFT 7.130 to your environment"
}

module-whatis   "Adds MAFFT 7.130 to your environment"


setenv MAFFT_BINARIES /cm/shared/apps/SHARED/MAFFT/mafft-7.130-with-extensions/binaries

set             mafft_7_root        /cm/shared/apps/SHARED/MAFFT/mafft-7.130-with-extensions/bin

prepend-path     PATH             $mafft_7_root

Installation details

Downloaded as source: <source lang='bash'> wget http://mafft.cbrc.jp/alignment/software/mafft-7.130-with-extensions-src.tgz

See also

External links