#!/bin/bash #SBATCH --export=NONE # do not export current env to the job #SBATCH --job-name=imsindel # job name #SBATCH --time=08:00:00 # max job run time dd-hh:mm:ss #SBATCH --ntasks-per-node=1 # tasks (commands) per compute node #SBATCH --cpus-per-task=7 # CPUs (threads) per command #SBATCH --mem=7G # total memory per node #SBATCH --output=stdout.%j # save stdout to file #SBATCH --error=stderr.%j # save stderr to file module load IMSindel/1.0.1-foss-2019b-Ruby-2.7.1 <