Difference between revisions of "Applications/guppy"
From HPC
m |
|||
Line 3: | Line 3: | ||
==Application Details== | ==Application Details== | ||
− | * Description: | + | * Description: Local accelerated basecalling for Nanopore data. |
− | * Version: 1.5 | + | * Version: guppy 3.1.5 |
− | * Modules: | + | * Modules: guppy/cpu/3.1.5 and guppy/gpu/3.1.5 (GPU) |
* Licence: Free, open-source | * Licence: Free, open-source | ||
==Usage Examples== | ==Usage Examples== | ||
− | === | + | ===Batch example=== |
− | + | This uses 2 GPUs presently on GPU05 (compute level is high than 6) which is required by guppy's minimum requirement. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | <pre> | ||
#!/bin/bash | #!/bin/bash | ||
− | + | #SBATCH -J guppy.job | |
− | #SBATCH -J | + | #SBATCH --exclusive |
− | #SBATCH - | + | #SBATCH -o gpu05.%j.out |
− | + | #SBATCH -e gpu05.%j.err | |
− | + | #SBATCH -p gpu05 | |
− | #SBATCH -o | + | #SBATCH --gres=gpu:tesla:2 |
− | #SBATCH -e | ||
#SBATCH --exclusive | #SBATCH --exclusive | ||
− | + | ||
module purge | module purge | ||
− | module | + | module load cuda/10.1.168 |
+ | module load guppy/gpu/3.1.5 | ||
− | |||
− | + | guppy_basecaller --input_path /home/user/fast5 --save_path /home/user/guppy --flowcell FLO-MIN106 --kit SQK-RPB004 --min_qscore 7 --qscore_filtering -x cuda:0 cuda:1 | |
</pre> | </pre> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Line 95: | Line 39: | ||
==Further Information== | ==Further Information== | ||
− | * | + | * https://community.nanoporetech.com/ (login required) |
==Navigation== | ==Navigation== |
Revision as of 13:59, 14 June 2019
Contents
Application Details
- Description: Local accelerated basecalling for Nanopore data.
- Version: guppy 3.1.5
- Modules: guppy/cpu/3.1.5 and guppy/gpu/3.1.5 (GPU)
- Licence: Free, open-source
Usage Examples
Batch example
This uses 2 GPUs presently on GPU05 (compute level is high than 6) which is required by guppy's minimum requirement.
#!/bin/bash #SBATCH -J guppy.job #SBATCH --exclusive #SBATCH -o gpu05.%j.out #SBATCH -e gpu05.%j.err #SBATCH -p gpu05 #SBATCH --gres=gpu:tesla:2 #SBATCH --exclusive module purge module load cuda/10.1.168 module load guppy/gpu/3.1.5 guppy_basecaller --input_path /home/user/fast5 --save_path /home/user/guppy --flowcell FLO-MIN106 --kit SQK-RPB004 --min_qscore 7 --qscore_filtering -x cuda:0 cuda:1
Further Information
- https://community.nanoporetech.com/ (login required)