#!/bin/bash #SBATCH --export=NONE # do not export current env to the job #SBATCH --job-name=freebayes # job name #SBATCH --time=7-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=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 FreeBayes/1.3.4-linux-static-AMD64 < $output_vcf ################################################################################ <