Download this file

192 lines (153 with data), 5.6 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/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:,tumor-name:,normal-name:,human-reference:,selector:,MEM:,threads:,extra-arguments:,extra-filter-arguments:,action:,singularity -n 'submit_MuTect.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=7
threads=4
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 ;;
--tumor-name )
case "$2" in
"") shift 2 ;;
*) tumor_name=$2 ; shift 2 ;;
esac ;;
--normal-name )
case "$2" in
"") shift 2 ;;
*) normal_name=$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 ;;
--MEM )
case "$2" in
"") shift 2 ;;
*) MEM=$2 ; shift 2 ;;
esac ;;
--threads )
case "$2" in
"") shift 2 ;;
*) threads=$2 ; shift 2 ;;
esac ;;
--extra-arguments )
case "$2" in
"") shift 2 ;;
*) extra_arguments=$2 ; shift 2 ;;
esac ;;
--extra-filter-arguments )
case "$2" in
"") shift 2 ;;
*) extra_filter_arguments=$2 ; shift 2 ;;
esac ;;
--action )
case "$2" in
"") shift 2 ;;
*) action=$2 ; shift 2 ;;
esac ;;
--singularity )
singularity=1 ; shift ;;
-- ) shift; break ;;
* ) break ;;
esac
done
logdir=${outdir}/logs
mkdir -p ${logdir}
out_script=${outdir}/logs/mutect2.cmd
selector_text=''
if [[ -r $SELECTOR ]]; then
selector_text="--intervals /mnt/${SELECTOR}"
fi
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 "#$ -pe smp ${threads}" >> $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
if [[ $tumor_name ]]
then
echo "tumor_name=${tumor_name}" >> $out_script
else
if [[ $singularity ]]; then
echo "tumor_name=\`singularity exec --bind /:/mnt docker://lethalfang/samtools:1.7 samtools view -H /mnt/${tumor_bam} | egrep -w '^@RG' | grep -Po 'SM:[^\t$]+' | sed 's/SM://' | uniq | sed -e 's/[[:space:]]*$//'\`" >> $out_script
else
echo "tumor_name=\`docker run --rm -v /:/mnt -u $UID --memory 1g lethalfang/samtools:1.7 samtools view -H /mnt/${tumor_bam} | egrep -w '^@RG' | grep -Po 'SM:[^\t$]+' | sed 's/SM://' | uniq | sed -e 's/[[:space:]]*$//'\`" >> $out_script
fi
fi
if [[ $normal_name ]]
then
echo "normal_name=${normal_name}" >> $out_script
else
if [[ $singularity ]]; then
echo "normal_name=\`singularity exec --bind /:/mnt docker://lethalfang/samtools:1.7 samtools view -H /mnt/${normal_bam} | egrep -w '^@RG' | grep -Po 'SM:[^\t$]+' | sed 's/SM://' | uniq | sed -e 's/[[:space:]]*$//'\`" >> $out_script
else
echo "normal_name=\`docker run --rm -v /:/mnt -u $UID --memory 1g lethalfang/samtools:1.7 samtools view -H /mnt/${normal_bam} | egrep -w '^@RG' | grep -Po 'SM:[^\t$]+' | sed 's/SM://' | uniq | sed -e 's/[[:space:]]*$//'\`" >> $out_script
fi
echo "" >> $out_script
fi
echo "" >> $out_script
if [[ $singularity ]]; then
echo "singularity exec --bind /:/mnt docker://broadinstitute/gatk:4.0.5.2 \\" >> $out_script
else
echo "docker run --rm -v /:/mnt -u $UID --memory $(( MEM * threads ))G broadinstitute/gatk:4.0.5.2 \\" >> $out_script
fi
echo "java -Xmx${MEM}g -jar /gatk/gatk.jar Mutect2 \\" >> $out_script
echo "--reference /mnt/${HUMAN_REFERENCE} \\" >> $out_script
echo "$selector_text \\" >> $out_script
echo "--input /mnt/${normal_bam} \\" >> $out_script
echo "--input /mnt/${tumor_bam} \\" >> $out_script
echo "--normal-sample \${normal_name} \\" >> $out_script
echo "--tumor-sample \${tumor_name} \\" >> $out_script
echo "--native-pair-hmm-threads ${threads} \\" >> $out_script
echo "${extra_arguments} \\" >> $out_script
echo "--output /mnt/${outdir}/unfiltered.${outvcf}" >> $out_script
echo "" >> $out_script
if [[ $singularity ]]; then
echo "singularity exec --bind /:/mnt docker://broadinstitute/gatk:4.0.5.2 \\" >> $out_script
else
echo "docker run --rm -v /:/mnt -u $UID --memory 6g broadinstitute/gatk:4.0.5.2 \\" >> $out_script
fi
echo "java -Xmx${MEM}g -jar /gatk/gatk.jar FilterMutectCalls \\" >> $out_script
echo "--variant /mnt/${outdir}/unfiltered.${outvcf} \\" >> $out_script
echo "${extra_filter_arguments} \\" >> $out_script
echo "--output /mnt/${outdir}/${outvcf}" >> $out_script
echo "" >> $out_script
echo 'echo -e "Done at `date +"%Y/%m/%d %H:%M:%S"`" 1>&2' >> $out_script
${action} $out_script