Jellyfish 2.1.1: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 32: | Line 32: | ||
Compiled from source using the stock gcc 4.4 of Scientific Linux on 15-03-2014: | Compiled from source using the stock gcc 4.4 of Scientific Linux on 15-03-2014: | ||
http://www.genome.umd.edu/jellyfish.html | http://www.genome.umd.edu/jellyfish.html | ||
make -f Makefile.SSE3.gcc | |||
make -f Makefile.SSE3.PTHREADS.gcc | |||
make -f Makefile.SSE3.MPI.gcc | |||
The file <code>Makefile.SSE3.MPI.gcc</code> has been modified: | |||
CC = mpicc | |||
The version of <code>openmpi</code> used: | |||
openmpi/gcc/64/1.6.5 | |||
== See also == | == See also == | ||
Revision as of 19:56, 15 March 2014
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
make -f Makefile.SSE3.gcc
make -f Makefile.SSE3.PTHREADS.gcc
make -f Makefile.SSE3.MPI.gcc
The file Makefile.SSE3.MPI.gcc has been modified:
CC = mpicc
The version of openmpi used:
openmpi/gcc/64/1.6.5