#!/bin/bash #SBATCH --export=NONE # do not export current env to the job #SBATCH --job-name=bwa_pe # job name #SBATCH --time=24:00:00 # max job run time dd-hh:mm:ss #SBATCH --ntasks-per-node=1 # tasks (commands) per compute node #SBATCH --cpus-per-task=48 # CPUs (threads) per command #SBATCH --mem=360G # total memory per node #SBATCH --output=stdout.%x.%j # save stdout to file #SBATCH --error=stderr.%x.%j # save stderr to file module load GCC/9.3.0 BWA/0.7.17 SAMtools/1.10 <