2011-01-20 04:28:59 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
SAMPLE_SET=$1
|
2011-02-04 02:33:29 +08:00
|
|
|
STING_HOME=/humgen/gsa-pipeline/.repository
|
|
|
|
|
JOB_QUEUE=week
|
|
|
|
|
SHORT_QUEUE=hour
|
2011-01-20 04:28:59 +08:00
|
|
|
TMP_DIR=$PWD/tmp
|
|
|
|
|
|
|
|
|
|
mkdir $PWD/tmp
|
|
|
|
|
source /broad/software/scripts/useuse
|
|
|
|
|
use LSF
|
|
|
|
|
use R-2.10
|
|
|
|
|
use Oracle-full-client
|
|
|
|
|
use .cx-oracle-5.0.2-python-2.6.5-oracle-full-client-11.1
|
|
|
|
|
|
2011-02-08 06:01:09 +08:00
|
|
|
java -Djava.io.tmpdir="$TMP_DIR" -jar "$STING_HOME"/dist/Queue.jar -jobQueue "$JOB_QUEUE" -shortJobQueue "$SHORT_QUEUE" -jobProject "$SAMPLE_SET" -jobPrefix "$SAMPLE_SET" -tearScript "$STING_HOME"/R/DataProcessingReport/GetTearsheetStats.R -S "$STING_HOME"/scala/qscript/playground/FullCallingPipeline.q -Y "$SAMPLE_SET".yaml --gatkjar "$STING_HOME"/dist/GenomeAnalysisTK.jar -log queue_log.txt -statusTo corin -bsub $2
|