usingslurm
This is an old revision of the document!
Table of Contents
Using SLURM
Interactive jobs
How to get an interactive session, ie when you want to interact with a program (like R, etc):
[aorth@hpc: ~]$ interactive salloc: Granted job allocation 1080 [aorth@taurus: ~]$
Batch jobs
Request 4 CPUs for a NCBI BLAST+ job in the batch
partition. Create a file blast.sbatch:
#!/bin/bash #SBATCH -p batch #SBATCH -n 4 export BLASTDB=/export/data/bio/ncbi/blast/db blastn -query ~/data/sequences/drosoph_14_sequences.seq -db nt -num_threads 4
Submit the script with sbatch
:
$ sbatch blastn_test.sh Submitted batch job 1082
Check SLURM queue
squeue
usingslurm.1369666441.txt.gz · Last modified: by aorth