This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
guides:slurm:basics [16.10.2020 10:47] Juha Kekäläinen |
guides:slurm:basics [18.10.2024 14:09] (current) Administrator |
||
---|---|---|---|
Line 8: | Line 8: | ||
* Optional plugins can be used for accounting, advanced reservation, | * Optional plugins can be used for accounting, advanced reservation, | ||
- | Bioinformatics Center uses unmodified version of Slurm on sampo.uef.fi computing cluster. This guarantees that the most of the tutorials and guides found from the Internet are applicable as-is. The most obvious starting place to search for usage information is documentation section of the Slurm own website [[https:// | + | Bioinformatics Center uses Slurm on kudos.uef.fi computing cluster. This guarantees that the most of the tutorials and guides found from the Internet are applicable as-is. The most obvious starting place to search for usage information is documentation section of the Slurm own website [[https:// |
{{ : | {{ : | ||
Line 34: | Line 34: | ||
#SBATCH --time 5 # Runtime in minutes. | #SBATCH --time 5 # Runtime in minutes. | ||
#SBATCH --mem=2000 # | #SBATCH --mem=2000 # | ||
- | #SBATCH --partition | + | #SBATCH --partition |
- | module load matlab/R2018b | + | |
+ | module load matlab/R2022b | ||
matlab -nodisplay < matlab.m # Execute the script | matlab -nodisplay < matlab.m # Execute the script | ||
Line 47: | Line 48: | ||
``` | ``` | ||
**[sbatch](https:// | **[sbatch](https:// | ||
+ | |||
+ | Here is an another example on how to analyze variants. | ||
+ | |||
+ | ``` | ||
+ | #!/bin/bash | ||
+ | #SBATCH --ntasks 1 # Number of task | ||
+ | #SBATCH --time 00: | ||
+ | #SBATCH --mem 2000 # Reserve 2 GB RAM for the job | ||
+ | #SBATCH --partition small # Partition to submit | ||
+ | |||
+ | module load bcftools # load modules | ||
+ | |||
+ | # filter variants and calculate stats | ||
+ | bcftools filter --include' | ||
+ | ``` | ||
+ | |||
+ | Submit the job to computing queue with the **[sbatch](https:// | ||
+ | |||
+ | ``` | ||
+ | sbatch variants.sbatch | ||
+ | ``` | ||
Line 83: | Line 105: | ||
``` | ``` | ||
scontrol show job < | scontrol show job < | ||
- | ``` | ||
- | |||
- | #### Extend runtime of given jobid | ||
- | |||
- | ``` | ||
- | scontrol update jobid=< | ||
``` | ``` | ||