Jellyfish 2.1.1: Difference between revisions

From HPCwiki
Jump to navigation Jump to search
(Created page with "'''[http://soap.genomics.org.cn/soapdenovo.html#intro2 SOAPdenovo2]''' is a popular genome assembler. == Module file == The module file can be found in this location: /cm/...")
 
m (<source> to <pre> to fix code blocks)
 
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
'''[http://soap.genomics.org.cn/soapdenovo.html#intro2 SOAPdenovo2]''' is a popular genome assembler.
'''[http://www.cbcb.umd.edu/software/jellyfish/ Jellyfish]''' is a fast, parallel k-mer counter for DNA.
 


== Module file ==
== Module file ==
Line 6: Line 5:
   /cm/shared/modulefiles/SHARED/
   /cm/shared/modulefiles/SHARED/


<source lang='tcl'>
<pre>
#%Module1.0#######################################################################
#%Module1.0#######################################################################
## Jellyfish 2.1.1 modulefile
## Jellyfish 2.1.1 modulefile
Line 27: Line 26:
prepend-path    PKG_CONFIG_PATH  $jellyfish_211_pkg
prepend-path    PKG_CONFIG_PATH  $jellyfish_211_pkg


</source>
</pre>


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


The pre-compiled binaries were downloaded from SourceForge on 15-03-2014:
Compiled from source using the stock gcc 4.4 of Scientific Linux on 15-03-2014:
   http://sourceforge.net/projects/soapdenovo2/files/SOAPdenovo2/
   http://www.genome.umd.edu/jellyfish.html
This included the GapCloser software (v1.12), ErrorCorrection (v0.04), and SOAPec (v2.01, includes Corrector_AR, Corrector_HA, KmerFreq_AR and KmerFreq_HA binaries).
 
 


== See also ==
== See also ==
Line 40: Line 40:


== External links ==
== External links ==
* [http://soap.genomics.org.cn/soapdenovo.html#intro2 SOAPdenovo2 home page]
* [http://www.cbcb.umd.edu/software/jellyfish/ Jellyfish home page]

Latest revision as of 14:49, 15 June 2023

Jellyfish is a fast, parallel k-mer counter for DNA.

Module file

The module file can be found in this location:

 /cm/shared/modulefiles/SHARED/
#%Module1.0#######################################################################
## Jellyfish 2.1.1 modulefile
##
proc ModulesHelp { } {

        puts stderr "\tAdds Jellyfish 2.1.1 to your environment"
}

module-whatis   "Adds Jellyfish 2.1.1 to your environment"

set             jellyfish_211_bin         /cm/shared/apps/SHARED/jellyfish/jellyfish-2.1.1/bin/bin
set             jellyfish_211_ldpath      /cm/shared/apps/SHARED/jellyfish/jellyfish-2.1.1/bin/lib
set             jellyfish_211_man         /cm/shared/apps/SHARED/jellyfish/jellyfish-2.1.1/bin/share/man
set             jellyfish_211_pkg         /cm/shared/apps/SHARED/jellyfish/jellyfish-2.1.1/bin/lib/pkgconfig

prepend-path     PATH             $jellyfish_211_bin
prepend-path     LD_LIBRARY_PATH  $jellyfish_211_ldpath
prepend-path     MANPATH          $jellyfish_211_man
prepend-path     PKG_CONFIG_PATH  $jellyfish_211_pkg

Installation details

Compiled from source using the stock gcc 4.4 of Scientific Linux on 15-03-2014:

  http://www.genome.umd.edu/jellyfish.html


See also

External links