#!/bin/bash #SBATCH --export=NONE # do not export current env to the job #SBATCH --job-name=snpeff # 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 snpEff/4.3t-foss-2018b-Python-3.6.6-Java-1.8.0 < $outfile ################################################################################ <