Download this file

171 lines (131 with data), 4.8 kB

  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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#!/bin/bash
# Use getopt instead of getopts for long options
set -e
OPTS=`getopt -o o: --long out-dir:,out-vcf:,tumor-bam:,normal-bam:,human-reference:,selector:,extra-config-arguments:,extra-run-arguments:,MEM:,action:,exome,singularity -n 'submit_Strelka.sh' -- "$@"`
if [ $? != 0 ] ; then echo "Failed parsing options." >&2 ; exit 1 ; fi
#echo "$OPTS"
eval set -- "$OPTS"
MYDIR="$( cd "$( dirname "$0" )" && pwd )"
action=echo
MEM=6
singularity=''
while true; do
case "$1" in
--out-vcf )
case "$2" in
"") shift 2 ;;
*) outvcf=$2 ; shift 2 ;;
esac ;;
--out-dir )
case "$2" in
"") shift 2 ;;
*) outdir=$2 ; shift 2 ;;
esac ;;
--tumor-bam )
case "$2" in
"") shift 2 ;;
*) tumor_bam=$2 ; shift 2 ;;
esac ;;
--normal-bam )
case "$2" in
"") shift 2 ;;
*) normal_bam=$2 ; shift 2 ;;
esac ;;
--human-reference )
case "$2" in
"") shift 2 ;;
*) HUMAN_REFERENCE=$2 ; shift 2 ;;
esac ;;
--selector )
case "$2" in
"") shift 2 ;;
*) SELECTOR=$2 ; shift 2 ;;
esac ;;
--extra-config-arguments )
case "$2" in
"") shift 2 ;;
*) extra_config_arguments=$2 ; shift 2 ;;
esac ;;
--extra-run-arguments )
case "$2" in
"") shift 2 ;;
*) extra_run_arguments=$2 ; shift 2 ;;
esac ;;
--MEM )
case "$2" in
"") shift 2 ;;
*) MEM=$2 ; shift 2 ;;
esac ;;
--action )
case "$2" in
"") shift 2 ;;
*) action=$2 ; shift 2 ;;
esac ;;
--exome )
if_exome=1 ; shift ;;
--singularity )
singularity=1 ; shift ;;
-- ) shift; break ;;
* ) break ;;
esac
done
vcf_prefix=${outvcf%\.vcf}
logdir=${outdir}/logs
mkdir -p ${logdir}
if [[ ${SELECTOR} && `cat ${SELECTOR} | wc -l` -lt 50 ]]; then
region_txt=`cat ${SELECTOR} | awk -F "\t" '{print "--region=" $1 ":" $2+1 "-" $3}' | tr '\n' '\ '`
fi
out_script=${outdir}/logs/strelka.cmd
echo "#!/bin/bash" > $out_script
echo "" >> $out_script
echo "#$ -o ${logdir}" >> $out_script
echo "#$ -e ${logdir}" >> $out_script
echo "#$ -S /bin/bash" >> $out_script
echo "#$ -l h_vmem=${MEM}G" >> $out_script
echo 'set -e' >> $out_script
echo "" >> $out_script
echo 'echo -e "Start at `date +"%Y/%m/%d %H:%M:%S"`" 1>&2' >> $out_script
echo "" >> $out_script
selector_basename=`basename ${SELECTOR}`
if [[ -r ${SELECTOR}.gz && -r ${SELECTOR}.gz.tbi ]]
then
input_BED=${SELECTOR}.gz
else
if [[ $singularity ]]; then
echo "singularity exec --bind /:/mnt docker://lethalfang/tabix:1.7 bash -c \"cat /mnt/${SELECTOR} | bgzip > /mnt/${outdir}/${selector_basename}.gz\"" >> $out_script
echo "singularity exec --bind /:/mnt docker://lethalfang/tabix:1.7 tabix /mnt/${outdir}/${selector_basename}.gz" >> $out_script
else
echo "docker run -v /:/mnt -u $UID --rm --memory ${MEM}G lethalfang/tabix:1.7 bash -c \"cat /mnt/${SELECTOR} | bgzip > /mnt/${outdir}/${selector_basename}.gz\"" >> $out_script
echo "docker run -v /:/mnt -u $UID --rm --memory ${MEM}G lethalfang/tabix:1.7 tabix /mnt/${outdir}/${selector_basename}.gz" >> $out_script
fi
echo "" >> $out_script
input_BED=${outdir}/${selector_basename}.gz
fi
if [[ $if_exome ]]
then
exome='--exome'
fi
if [[ $singularity ]]; then
echo "singularity exec --bind /:/mnt docker://lethalfang/strelka:2.9.5 \\" >> $out_script
else
echo "docker run --rm -v /:/mnt -u $UID --memory ${MEM}G lethalfang/strelka:2.9.5 \\" >> $out_script
fi
echo "/opt/strelka/bin/configureStrelkaSomaticWorkflow.py \\" >> $out_script
echo "--tumorBam=/mnt/${tumor_bam} \\" >> $out_script
echo "--normalBam=/mnt/${normal_bam} \\" >> $out_script
echo "--referenceFasta=/mnt/${HUMAN_REFERENCE} \\" >> $out_script
echo "--callMemMb=$(( 1024 * MEM )) \\" >> $out_script
echo "$region_txt \\" >> $out_script
echo "--callRegions=/mnt/${input_BED} \\" >> $out_script
echo "${exome} ${extra_config_arguments} \\" >> $out_script
echo "--runDir=/mnt/${outdir}/${outvcf%\.vcf}" >> $out_script
echo "" >> $out_script
if [[ $singularity ]]; then
echo "singularity exec --bind /:/mnt docker://lethalfang/strelka:2.9.5 \\" >> $out_script
else
echo "docker run --rm -v /:/mnt -u $UID --memory ${MEM}G lethalfang/strelka:2.9.5 \\" >> $out_script
fi
echo "/mnt/${outdir}/${outvcf%\.vcf}/runWorkflow.py -m local -j 1 ${extra_run_arguments}" >> $out_script
echo "" >> $out_script
echo 'echo -e "Done at `date +"%Y/%m/%d %H:%M:%S"`" 1>&2' >> $out_script
${action} $out_script