#BSUB -L /bin/bash # uses the bash login shell to initialize the job's execution environment. #BSUB -J stacks # job name #BSUB -n 1 # assigns 1 core(s) for execution #BSUB -R "span[ptile=1]" # assigns 1 core(s) per node #BSUB -R "rusage[mem=10]" # reserves 10MB memory per core #BSUB -M 10 # sets to 10MB process enforceable memory limit. (M * n) #BSUB -W 1:00 # sets to 1 hour the job's runtime wall-clock limit. #BSUB -o stdout.%J # directs the job's standard output to stdout.jobid #BSUB -e stderr.%J # directs the job's standard error to stderr.jobid module load Stacks/1.37-intel-2015B <