This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
spades-software [2014/09/22 16:01] aorth created |
spades-software [2019/10/04 12:58] (current) aorth |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== | + | ====== |
| + | SPAdes – St. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. | ||
| ===== Information ===== | ===== Information ===== | ||
| - | * Version: 3.1.1 | + | * Version: 3.13.0 |
| * Added: September, 2014 | * Added: September, 2014 | ||
| - | * Link: http://bioinf.spbau.ru/spades | + | |
| + | | ||
| ===== Usage ===== | ===== Usage ===== | ||
| - | === See versions of spades which are available === | + | See versions of spades which are available: |
| - | < | + | < |
| + | |||
| + | Load one version into your environment and run it: | ||
| + | < | ||
| + | $ spades.py --help</ | ||
| + | |||
| + | === Example batch job === | ||
| + | |||
| + | < | ||
| + | #SBATCH -p highmem | ||
| + | #SBATCH -n 8 | ||
| + | #SBATCH -J spades | ||
| + | |||
| + | module | ||
| + | |||
| + | readonly DATADIR=~/ | ||
| + | readonly OUTDIR=/ | ||
| + | |||
| + | # create output directory | ||
| + | mkdir -p ${OUTDIR} | ||
| + | |||
| + | # run spades with 8 CPUs on mammoth (it has 16 logical CPUs, but only 8 are physical) | ||
| + | # run spades with 384 GB of RAM (default is 250, but it ran out of memory before) | ||
| + | spades.py -k 27 -1 ${DATADIR}/ | ||
| + | |||
| + | echo | ||
| + | echo " | ||
| + | echo | ||
| + | echo " | ||
| ===== Installation ====== | ===== Installation ====== | ||
| Notes from the sysadmin during installation: | Notes from the sysadmin during installation: | ||
| - | < | + | < |
| - | cd /tmp | + | $ wget https://github.com/ |
| - | wget http://spades.bioinf.spbau.ru/release3.1.1/SPAdes-3.1.1.tar.gz | + | $ tar xf SPAdes-3.13.0.tar.gz |
| - | cd SPAdes-3.1.1 | + | $ cd SPAdes-3.13.0 |
| - | sed -i ' | + | $ sudo mkdir / |
| - | scl enable devtoolset-1.1 bash | + | $ sudo chown aorth / |
| - | sudo mkdir -p / | + | $ sudo yum install centos-release-scl cmake |
| - | sudo chown aorth:aorth / | + | $ sudo yum install devtoolset-6-gcc.x86_64 devtoolset-6-gcc-c++.x86_64 |
| - | PREFIX=/ | + | $ PREFIX=/ |
| - | sudo chown -R root:root / | + | $ sudo chown -R root:root / |
| + | |||
| + | Note: if you get the error '' | ||