-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunchR.align.sh
executable file
·126 lines (102 loc) · 5.53 KB
/
launchR.align.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/bin/bash
#--------------------------------------------------------------------------------------------------------------
# launchR.eachDiffFile.sh - launches R scripts for each cuffdiff *.diff file in each cuffdiff output directory
#
# - $1 must contain the prefix of the R script
#
# - Can send you emails when each job starts to execute and when each is finished so
# that you know when to submit the jobs for the next step
#
#--------------------------------------------------------------------------------------------------------------
#----SETTINGS---------------
if [ -z ${TAILOR_CONFIG+x} ]; then
echo -e "\nEnvironment variable TAILOR_CONFIG is not set!\n"
exit
elif [ ! -f "${TAILOR_CONFIG}" ]; then
echo -e "\nSettings file ${TAILOR_CONFIG} does not exist!\n"
exit
else
echo -e "\nUsing settings file ${TAILOR_CONFIG}.\n"
fi
source "${TAILOR_CONFIG}"
#---------------------------
#----JOB SUBMISSION PARAMETERS---------------------------------------------------------------------
PROCESSORS=1
MEMORY="60192" # 2048=2G, 4096=4G, 8192=8G, 16384=16G, 32768=32G, 65536=64G
DURATION="96:00" # HH:MM - 4:00=short queue limit, 72:00=3 days, 96:00=4 days, 192:00=8 days, 384:00=16 days
QUEUE="long" # short = max 8 hours; long = max ? days
#QUEUE="short" # short = max 8 hours; long = max ? days
export QUEUE
#--------------------------------------------------------------------------------------------------
#----PATHS-----------------------------------------------------------------------------------------
# INPUT="${GENENAMES}${INPUT_LABEL}"
INPUT="${LAUNCHR_INPUT}"
OUTPUT=$(eval echo "$LAUNCHR_OUTPUT")
SCRIPTS=${OUTPUT}/${JOBS_SCRIPTS_DIR}
JOBS=${OUTPUT}/${JOBS_OUT_DIR}
#--------------------------------------------------------------------------------------------------
#----OUTPUT------------------
if [ ! -d ${OUTPUT} ]; then
mkdir ${OUTPUT}
fi
if [ ! -d ${SCRIPTS} ]; then
mkdir ${SCRIPTS}
fi
if [ ! -d ${JOBS} ]; then
mkdir ${JOBS}
fi
#---------------------------
# Save this version of the config file
configFileName=$(basename ${TAILOR_CONFIG})
cp "${TAILOR_CONFIG}" "${OUTPUT}/${configFileName}.$(date +%F_%R)"
#----GLOB INPUT----------------------------------------------------------------------------------------------------------
findResults=align.table
# FIND_INPUT=$(eval echo "$LAUNCHR_EACHDIFFFILE_FIND_INPUT_DIR")
# find ${FIND_INPUT} -name "${LAUNCHR_EACHDIFFFILE_FIND_INPUT_PATTERN}" > $findResults
# grabs all the "*-over-*" subdirs (cuffdiff output dirs)
#------------------------------------------------------------------------------------------------------------------------
COMMAND=R
echo -e "\nINPUT=$INPUT; OUTPUT=$OUTPUT; findResults=$findResults";
while IFS='' read -r line || [[ -n "$line" ]]; do # each line is a cuffdiff output directory
diffFile=$(basename $line)
diffFileLength=${#diffFile}
# diffDir=${diffFile:0:$(($diffFileLength - 5))} # strip off the ".diff" extension
diffDir="" # strip off the ".diff" extension
overDir=$(basename $(dirname $line))
# diffDir=$(basename $line)
[[ $overDir =~ $LAUNCHR_INPUT_REGEX ]]
over=${BASH_REMATCH[1]}
under=${BASH_REMATCH[2]}
echo -e "\ndiffFile=${diffFile}; diffDir=${diffDir}; overDir=${overDir}; over=${over}; under=${under}"
scriptString="mktemp -p ${SCRIPTS} ${COMMAND}.${diffDir}.XXXXXXXXXXX"
echo -e "\n${scriptString}"
tempScript=`${scriptString}`
echo -e "\n${tempScript}"
chmodString="chmod 777 ${tempScript}"
echo -e `${chmodString}`
if [ ! -d "${OUTPUT}/${overDir}/${diffDir}" ]; then
mkdir "${OUTPUT}"
mkdir "${OUTPUT}/${overDir}"
mkdir "${OUTPUT}/${overDir}/${diffDir}"
fi
# COMMAND_LINE="${XVFB_RUN} ${COMMAND} CMD BATCH --no-site-file --no-init-file --no-restore --slave ${1}.R ${INPUT}/${overDir}/${diffFile} ${OUTPUT}/${overDir}/${diffDir}"
# COMMAND_LINE="${XVFB_RUN} ${COMMAND} CMD BATCH --no-site-file --no-init-file --no-restore --slave '--args inFile=\"${diffFile}\" inDir=\"${INPUT}/${overDir}\" outDir=\"${OUTPUT}/${diffDir}\" over=\"${over}\" under=\"${under}\"' ${1}.R ${OUTPUT}/${diffDir}/${1}.Rout"
COMMAND_LINE="${XVFB_RUN} ${COMMAND} CMD BATCH --no-restore '--args inFile=\"${line}\" inDir=\"${INPUT}/${overDir}\" outDir=\"${OUTPUT}\" over=\"${over}\" under=\"${under}\"' ${TAILOR}/${1}.R ${OUTPUT}/${1}.Rout"
echo -e "env\n\n" > ${tempScript}
echo -e "source loadModules.sh\n\n" >> ${tempScript}
echo "$COMMAND_LINE" >> ${tempScript}
if [ $SCHEDULER == "sge" ]; then
SUBMIT_COMMAND="qsub ${EXTRA_SUBMIT_PARAMETERS} -q $QUEUE -cwd -S /bin/bash -N ${diffDir}-${COMMAND} -pe smp ${PROCESSORS} -l h_rt=${DURATION},s_rt=${DURATION},vf=${MEMORY} -m eas -M ${USER_EMAIL} ${tempScript}"
else
SUBMIT_COMMAND="bsub ${EXTRA_SUBMIT_PARAMETERS} -q $QUEUE -J ${diffDir}-${COMMAND} -n ${PROCESSORS} -R span[hosts=1] -R rusage[mem=${MEMORY}] -W ${DURATION} -u ${LSB_MAILTO} -B -o ${JOBS}/${COMMAND}.%J.out -e ${JOBS}/${COMMAND}.%J.error bash ${tempScript}"
fi
date=`date`
echo -e "\n# $date\n" >> ${OUTPUT}/${COMMAND}.jobs.log
echo -e "\n# Job Script\n" >> ${OUTPUT}/${COMMAND}.jobs.log
cat ${tempScript} >> ${OUTPUT}/${COMMAND}.jobs.log
echo -e "\n# Job Submission\n${SUBMIT_COMMAND}\n" >> ${OUTPUT}/${COMMAND}.jobs.log
echo -e "\n#-------------------------------------------------------------------------------------------------------" >> ${OUTPUT}/${COMMAND}.jobs.log
echo `${SUBMIT_COMMAND}`
# rm ${tempScript}
# exit
done < "$findResults" # Sends the $findResults file as input to the while-loop