#BSUB -L /bin/bash # uses the bash login shell to initialize the job's execution environment. #BSUB -J rnaseqc # job name #BSUB -n 5 # assigns 5 cores for execution #BSUB -R "span[ptile=5]" # assigns 5 cores per node #BSUB -R "rusage[mem=2500]" # reserves 2500MB memory per core #BSUB -M 2500 # sets to 2500MB per process enforceable memory limit. (M * n) #BSUB -W 4:00 # sets to 4 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 RNA-SeQC/1.1.8-intel-2015B-Java-1.7.0_80 < $sample_file # run RNA-SeQC with defaults java -jar $EBROOTRNASEQC/RNA-SeQC_v1.1.8.jar -r $reference_fasta -t $reference_gtf -s $sample_file -o $output_dir -singleEnd <