#!/bin/bash #SBATCH --export=NONE # do not export current env to the job #SBATCH --job-name=wtdbg2 # job name #SBATCH --time=1-00:00:00 # max job run time dd-hh:mm:ss #SBATCH --ntasks-per-node=1 # tasks (commands) per compute node #SBATCH --cpus-per-task=28 # CPUs (threads) per command #SBATCH --mem=54G # total memory per node #SBATCH --output=stdout.%j # save stdout to file #SBATCH --error=stderr.%j # save stderr to file module load wtdbg2/2.3-foss-2018b module load BamTools/2.5.1-GCCcore-7.3.0 module load SAMtools/1.8-GCCcore-7.3.0 module load minimap2/2.17-GCCcore-7.3.0 <