straglr on Biowulf

Straglr is a tool that can be used for genome-wide scans for tandem repeat(TR) expansions or targeted genotyping using long-read alignments.

References:

Documentation
Important Notes

This application requires a graphical connection using NX

Interactive job
Interactive jobs should be used for debugging, graphics, or applications that cannot be run as batch jobs.

Allocate an interactive session and run the program.
Sample session (user input in bold):

[user@biowulf]$ sinteractive
salloc.exe: Pending job allocation 46116226
salloc.exe: job 46116226 queued and waiting for resources
salloc.exe: job 46116226 has been allocated resources
salloc.exe: Granted job allocation 46116226
salloc.exe: Waiting for resource configuration
salloc.exe: Nodes cn3144 are ready for job

[user@cn3144 ~]$ module load straglr
[user@cn3144 ~]$ cp -r ${STRAGLR_TEST_DATA} . ; cd test_data 
[user@cn3144 ~]$ straglr.py test.bam /fdb/igenomes/Homo_sapiens/UCSC/hg38/Sequence/WholeGenomeFasta/genome.fa straglr_scan --min_str_len 2 --max_str_len 100 --min_ins_size 100 --genotype_in_size  --min_support 2 --max_num_clusters 2    

[user@cn3144 ~]$ exit
salloc.exe: Relinquishing job allocation 46116226
[user@biowulf ~]$

Batch job
Most jobs should be run as batch jobs.

Create a batch input file (e.g. straglr.sh). For example:

#!/bin/bash
set -e
module load straglr
straglr < straglr.in > straglr.out

Submit this job using the Slurm sbatch command.

sbatch [--cpus-per-task=#] [--mem=#] straglr.sh
Swarm of Jobs
A swarm of jobs is an easy way to submit a set of independent commands requiring identical resources.

Create a swarmfile (e.g. straglr.swarm). For example:

straglr < straglr.in > straglr.out
straglr < straglr.in > straglr.out
straglr < straglr.in > straglr.out
straglr < straglr.in > straglr.out

Submit this job using the swarm command.

swarm -f straglr.swarm [-g #] [-t #] --module straglr
where
-g # Number of Gigabytes of memory required for each process (1 line in the swarm command file)
-t # Number of threads/CPUs required for each process (1 line in the swarm command file).
--module straglr Loads the straglr module for each subjob in the swarm