#BSUB -L /bin/bash # uses the bash login shell to initialize the job's execution environment. #BSUB -J tophat2 # job name #BSUB -n 4 # assigns 4 cores for execution #BSUB -R "span[ptile=4]" # assigns 4 cores per node #BSUB -R "rusage[mem=2500]" # reserves 2500MB memory per core #BSUB -M 2500 # sets to 2500MB (~2.5GB) the per process enforceable memory limit. #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 TopHat/2.1.1-intel-2015B module load Bowtie2/2.2.9-intel-2015B <