Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

This page shows you how to run submit a bash script to Slurm. The runSingle script, accessible through the rcbio/1.3.3 module, converts an input bash script with sbatch command and submits a single job to the Slurm scheduler for you.

...

Code Block
srun --pty -p interactive -t 0-12:0:0 --mem 2000MB -c 1 /bin/bash
mkdir /n/scratch3scratch/users/${USER:0:1}/${USER}/test
cd /n/scratch3scratch/users/${USER:0:1}/${USER}/test

...