Allpathslg 51910: Difference between revisions

From HPCwiki
Jump to navigation Jump to search
No edit summary
m (<source> to <pre> to fix code blocks)
 
Line 7: Line 7:
   /cm/shared/modulefiles/SHARED/
   /cm/shared/modulefiles/SHARED/


<source lang='tcl'>
<pre>
#%Module1.0#######################################################################
#%Module1.0#######################################################################
## maker ALLPATHS-LG (51910 modulefile
## maker ALLPATHS-LG (51910 modulefile
Line 26: Line 26:




</source>
</pre>


== Installation details ==
== Installation details ==
Line 32: Line 32:
ALLPATHS-LG 51910 was downloades as 'latest version':
ALLPATHS-LG 51910 was downloades as 'latest version':


<source lang='bash'>
<pre>
wget ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/latest_source_code/LATEST_VERSION.tar.gz
wget ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/latest_source_code/LATEST_VERSION.tar.gz
</source>
</pre>


It was compiled from source (using gcc4.8.1) on 03-02-2015:
It was compiled from source (using gcc4.8.1) on 03-02-2015:


<source lang='bash'>
<pre>
module load gcc/4.8.1
module load gcc/4.8.1
./configure --prefix=/cm/shared/apps/SHARED/ALLPATHS-LG/allpathslg-51910
./configure --prefix=/cm/shared/apps/SHARED/ALLPATHS-LG/allpathslg-51910
make
make
make install
make install
</source>
</pre>


Available 200kbp testgenome initially failed to assemble. This was solved by setting 'LC_ALL=C'. This is handled by the module file and therefore does not require to be set in the local environment. With this tweak the test data set will run properly.
Available 200kbp testgenome initially failed to assemble. This was solved by setting 'LC_ALL=C'. This is handled by the module file and therefore does not require to be set in the local environment. With this tweak the test data set will run properly.
Testgenome derived from here and instructions followed in README:
Testgenome derived from here and instructions followed in README:


<source lang='bash'>
<pre>
wget ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/test.genome.tar.gz
wget ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/test.genome.tar.gz
</source>
</pre>


== See also ==
== See also ==

Latest revision as of 16:41, 15 June 2023

ALLPATHS-LG is a popular genome assembler.


Module file

The module file can be found in this location:

 /cm/shared/modulefiles/SHARED/
#%Module1.0#######################################################################
## maker ALLPATHS-LG (51910 modulefile
##
proc ModulesHelp { } {

        puts stderr "\tAdds ALLPATHS-LG (51910) to your environment"
}

module-whatis   "Adds ALLPATHS-LG (51910) to your environment"

module load gcc/4.8.1
setenv LC_ALL C

set             allpathslg_51910_root        /cm/shared/apps/SHARED/ALLPATHS-LG/allpathslg-51910/bin/

prepend-path     PATH             $allpathslg_51910_root


Installation details

ALLPATHS-LG 51910 was downloades as 'latest version':

wget ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/latest_source_code/LATEST_VERSION.tar.gz

It was compiled from source (using gcc4.8.1) on 03-02-2015:

module load gcc/4.8.1
./configure --prefix=/cm/shared/apps/SHARED/ALLPATHS-LG/allpathslg-51910
make
make install

Available 200kbp testgenome initially failed to assemble. This was solved by setting 'LC_ALL=C'. This is handled by the module file and therefore does not require to be set in the local environment. With this tweak the test data set will run properly. Testgenome derived from here and instructions followed in README:

wget ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/test.genome.tar.gz

See also

External links