#BSUB -L /bin/bash # uses the bash login shell to initialize the job's execution environment. #BSUB -J macs14 # job name #BSUB -n 2 # assigns 2 cores for execution #BSUB -R "span[ptile=2]" # assigns 2 cores per node #BSUB -R "rusage[mem=1000]" # reserves 1000MB memory per core #BSUB -M 1000 # sets to 1,000MB (~1GB) per process enforceable memory limit. (M * n) #BSUB -W 1:00 # sets to 1 hours 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 #BSUB -P project_ID # This is the project number against which the used service units (SUs) are charged. module load MACS/1.4.2-1-goolf-1.7.20-Python-2.7.10 <