-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtablemaker.sh
executable file
·103 lines (85 loc) · 4.43 KB
/
tablemaker.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
#!/bin/bash
#--------------------------------------------------------------------------------------------------------------
# Tablemaker - quantifies gene expression for each sample against a merged.gtf. The output can be used as input for ballgown
#
# In NGS RNA-seq samples, quantitative gene expression data is normalized for total gene/transcript length and the number of sequencing reads, and reported as
# RPKM: Reads Per Kilobase of exon per Million mapped reads. Used for reporting data based on single-end reads
# FPKM: Fragments Per Kilobase of exon per Million fragments. Used for reporting data based on paired-end fragments
#
# - 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=3
MEMORY="25192" # PER PROCESSOR!! - 2048=2G, 4096=4G, 8192=8G, 16384=16G, 32768=32G, 65536=64G
DURATION="92:00" # HH:MM - 72:00=3 days, 96:00=4 days, 192:00=8 days, 384:00=16 days
QUEUE="long" # short = max 4 hours; long = max 30 days
#--------------------------------------------------------------------------------------------------
#----PATHS-----------------------------------------------------------------------------------------
INPUT="${TABLEMAKER_INPUT}"
OUTPUT="${TABLEMAKER_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=${OUTPUT}/input.list.txt
#findResults=${OUTPUT}/threeFailed.list.txt
find ${INPUT} -type d -maxdepth 1 -name "${TABLEMAKER_FIND_INPUT_PATTERN}" > $findResults # search for only directories and no subdirs
#----------------------------------------------
COMMAND=tablemaker
while IFS='' read -r line || [[ -n "$line" ]]; do # each line is a directory that contains a accepted_hit.bam file
if [[ $line =~ $TABLEMAKER_INPUT_REGEX ]]; then
i=$(basename ${BASH_REMATCH[1]})
COMMAND_LINE="${COMMAND} -p ${PROCESSORS} ${EXTRA_TABLEMAKER_PARAMETERS} -o ${OUTPUT}/${i}_out ${INPUT}/${i}_out/${TABLEMAKER_ALIGNMENT_FILE}"
scriptString="mktemp -p ${SCRIPTS} ${COMMAND}.${i}.XXXXXXXXXXX"
echo -e "\n${scriptString}"
tempScript=`${scriptString}`
echo -e "\n${tempScript}"
echo -e "source loadModules.sh\n\n" > ${tempScript}
echo "$COMMAND_LINE" >> ${tempScript}
chmodString="chmod 777 ${tempScript}"
echo -e `${chmodString}`
if [ $SCHEDULER == "sge" ]; then
SUBMIT_COMMAND="qsub -q $QUEUE -cwd -S /bin/bash -N ${i}-${COMMAND} -pe smp ${PROCESSORS} -l h_rt=${DURATION},s_rt=${DURATION},vf=${MEMORY} -m eas -M ${USER_EMAIL} ${tempScript}"
else
SUBMIT_COMMAND="bsub -q $QUEUE -J ${i}-${COMMAND} -n ${PROCESSORS} -R span[hosts=1] -R rusage[mem=${MEMORY}] -W ${DURATION} -u ${LSB_MAILTO} -B -o ${JOBS}/${COMMAND}-${i}.%J.out -e ${JOBS}/${COMMAND}-${i}.%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}
# else
# echo "$line does not match reg.exp."
fi
done < "$findResults" # Sends the $findResults file as input to the while-loop