#BSUB -L /bin/bash # uses the bash login shell to initialize the job's execution environment. #BSUB -J snap_pe # job name #BSUB -n 10 # assigns 10 cores for execution #BSUB -R "span[ptile=10]" # assigns 10 cores per node #BSUB -R "rusage[mem=500]" # reserves 500MB memory per core #BSUB -M 500 # sets to 500MB per process enforceable memory limit. Total memory for job = (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 SNAP/0.15.4 <