-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCutTag.sh
436 lines (320 loc) · 17.3 KB
/
CutTag.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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
#!/bin/bash
##################################################################
# Author: Lucas Carter
# Email: [email protected]
# PI: Vadim Backman
# Description:
# This script performs QC, trimming, mapping, coverage, and peak
# calling forCut&Tag generated data. It generates directories,
# loops through fastqs, and moves results into respective directories.
# This script is written to run on a SLURM HPC. A more thorough
# description can be found at README.md
################################################################
##--------------------------------------------------------------## Module load
## Customize these for your environment
module load samtools/1.6
module load bowtie2/2.5.4
module load fastqc
module load TrimGalore/0.6.10
module load java/jdk1.8.0_191
module load picard/2.21.4
module load bedtools/2.30.0
module load deeptools/3.1.1
##--------------------------------------------------------------## Script begin
### Usage function tells users how to run the software
helpFunction()
{
echo "*********************************** how to use CutTag.sh ***********************************"
echo -e "Usage: sh $0 -f <Forward Read> -w <Path to Working Directory> -g <Path to Bowtie Indices> -r <Path to Annotation File> -c <chromosome size file name > -t <threads> -m <min MAPQ score> -s <Spike in score (optional)> -p < path to SEACR (optional)> -b < sets MAC2 to --broad (optional)> -d <remove duplicates with Picard (optional)> \n"
echo -e "Run script in directory where fastqs are located \n"
echo "This script completes several functions: Read QC, Quality Control, Alignment, Sorting, and read count of features:"
echo -e "\t -- Quality Control: eliminates the adaptor and low quality reads using trim_galore."
echo -e "\t -- Mapping: Mapping via Bowtie2 for all features"
echo -e "\t -- Duplication: Marking duplicates and removing them (optional)"
echo -e "\t -- Sorting: Sort the bam files, mark uniquely mapping reads, generate coverage files "
echo -e "\t -- Conversion: Convert clean BAMs to BED and BEDGRAPH format "
echo -e "\t -- Peak Calling: Call peaks using MACS2 or SEACR"
echo -e "\t -- Read QC: Checks quality of reads using Fastqc \n \n"
echo -e "\t-h help \n"
echo "For more detail information, please feel free to contact: [email protected]"
echo "**************************************************"
exit 1 # Exit script after printing help
}
##--------------------------------------------------------------## options
while getopts "f:w:g:r:c:t:m:s:p:bd" opt
do
case $opt in
f) R1=$OPTARG ;; ## forward read | string
w) wdir=$OPTARG ;; ## working directory | string
g) gendir=$OPTARG ;; ## path/to/bowtie_indices | string
r) gtfdir=$OPTARG ;; ## path/to/gtf_file | string
c) csize=$OPTARG ;; ## name of chrom sizes file | string
t) threads=$OPTARG ;; ## number of threads to HPC | integer
m) minScore=$OPTARG ;; ## minimum MAPQ score | integer
s) spikein=$OPTARG ;; ## spike in value | integer
p) seacr=$OPTARG ;; ## call peaks with SEACR instead of MACS2 | path to SEACR.sh/.r | string
b) broad=1 ;; ## broad peaks option for MACS2 | no input
d) rmdups=1 ;; ## remove duplicates in Picard | no input
?) echo "Unknown argument --${OPTARG}"; helpFunction ;; # Print helpFunction in case parameter is non-existent
esac
done
# Print helpFunction in case parameters are empty
if [ -z "${R1}" ]
then
echo "*** error: must specify forward read ***";
helpFunction
fi
if [ -z "${wdir}" ]
then
echo "*** error: working directory where FASTQs are located must be provided ***";
helpFunction
fi
if [ -z "${gendir}" ]
then
echo "*** error: path to reference genome indices must be provided ***";
helpFunction
fi
if [ -z "${gtfdir}" ]
then
echo "*** error: path to genome annotation file must be provided ***";
helpFunction
fi
if [ -z "${csize}" ]
then
echo "*** error: must provide chromosome size file ***";
helpFunction
fi
if [ -z "${threads}" ]
then
echo "*** error: number of processors must be provided ***";
helpFunction
fi
if [ -z "${minScore}" ]
then
echo "*** error: a minimum MAPQ score must be provided ***";
helpFunction
fi
##--------------------------------------------------------------## Paths
# Get absolute path for scripts and results; check if required scripts exist
# Set working directory by moving script to directory where fastqs are located
cd ${wdir}
echo "$(date): Processing alignment of FASTQ sequence files"
echo -e "Generating directories. \n"
# make sure references are prepared correctly
root="$(dirname "$(pwd)")/"
echo "Workign directory is ${root}"
echo "Genome annotation file is located at ${gtfdir}"
echo -e "BOWTIE2 genome assembly is located in ${gendir} \n"
# Make .OUT directory for trimmed reads
outfold="${root}OUT"
[ ! -d $outfold ]&&mkdir $outfold
# make .SAM directory
samfold="${root}SAM"
[ ! -d $samfold ]&&mkdir $samfold
# Make QC directory
qcfold="${root}fastqc"
[ ! -d $qcfold ]&&mkdir $qcfold
# Make coverage directory
covfold="${root}coverage"
[ ! -d $covfold ]&&mkdir $covfold
# Make .BAM directory
bamfold="${root}BAM"
[ ! -d $bamfold ]&&mkdir $bamfold
# Make .BED directory
bedfold="${root}BED"
[ ! -d $bedfold ]&&mkdir $bedfold
# Make .BEDGRAPH directory
bgfold="${root}BEDGRAPH"
[ ! -d $bgfold ]&&mkdir $bgfold
# Make peaks directory
pkfold="${root}peaks"
[ ! -d $pkfold ]&&mkdir $pkfold
# Make peaks directory
rsfold="${root}results"
[ ! -d $rsfold ]&&mkdir $rsfold
##--------------------------------------------------------------## 1. Trim and QC
# begin data processing
cd ${wdir} ## move to fastq directory
R2=$(echo $R1 | sed 's/R1/R2/g')
###
echo "1. Starting the quality control: trimming ${R1} and ${R2}"
echo " **** 1.2 Running Trim Galore on all FASTA files now: "
echo -e " \t trim_galore --paired --retain_unpaired --dont_gzip -o $outfold ${root}${PWD##*/}/${R1} ${root}${PWD##*/}/${R2}"
trim_galore --paired --retain_unpaired --dont_gzip -o $outfold ${root}${PWD##*/}/${R1} ${root}${PWD##*/}/${R2}
echo -e "${R1} and ${R2} have been processed \n"
###
##--------------------------------------------------------------## 2. Mapping
cd ${outfold} ## move to trimmed fastq folder
T1=$(echo $R1 | sed 's/R1_001.fastq.gz/R1_001_val_1.fq/g')
T2=$(echo $R2 | sed 's/R2_001.fastq.gz/R2_001_val_2.fq/g')
S1=$(echo $T1 | sed 's/R1_001_val_1.fq/R1_001.sam/g')
###
echo "2. Starting the mapping for ${T1} and ${T2}"
echo -e " \t bowtie2 --local --very-sensitive --no-mixed --no-discordant --phred33 -I 10 -X 700 -p ${threads} -x ${gendir} -1 ${outfold}/${T1} -2 ${outfold}/${T2} -S ${samfold}/${S1} &> ${samfold}/${S1}_bowtie2.txt"
### Mapp reads using Bowtie
bowtie2 --local --very-sensitive --no-mixed --no-discordant --phred33 -I 10 -X 700 -p ${threads} -x ${gendir} -1 ${outfold}/${T1} -2 ${outfold}/${T2} -S ${samfold}/${S1} &> ${samfold}/${S1}_bowtie2.txt
echo -e "Mapping via Bowtie2 complete for ${T1} and ${T2} \n"
###
##--------------------------------------------------------------## 3. Mark duplicates
cd ${samfold} ## move to SAM alignment folder
S2=$(echo $S1 | sed 's/R1_001.sam/R1_001.sort.sam/g')
S3=$(echo $S2 | sed 's/R1_001.sort.sam/R1_001.sort.md.sam/g')
###
echo "3. Sorting ${S1} and marking duplicates in ${S2}"
echo -e " \t picard SortSam I=${samfold}/${S1} O=${samfold}/${S2} SORT_ORDER=coordinate"
## Sort SAM files
picard SortSam I=${samfold}/${S1} O=${samfold}/${S2} SORT_ORDER=coordinate
if [[ $rmdups -eq 1 ]] ## If there is no path to seacr software, use MACS2
then
echo -e "\t 3.1 Removing duplicates in ${S2}"
echo -e " \t picard MarkDuplicates I=${samfold}/${S2} O=${samfold}/${S3} REMOVE_DUPLICATES=true METRICS_FILE=${samfold}/${R1}_dupMark.txt"
## Mark duplicates and remove them in sorted SAM files
picard MarkDuplicates I=${samfold}/${S2} O=${samfold}/${S3} REMOVE_DUPLICATES=true METRICS_FILE=${samfold}/${R1}_dupMark.txt
else
echo -e "\t 3.1 Duplicates marked but not removed in ${S2}"
echo -e "\t picard MarkDuplicates I=${samfold}/${S2} O=${samfold}/${S3} METRICS_FILE=${samfold}/${R1}_dupMark.txt"
## Mark duplicates in sorted SAM files
picard MarkDuplicates I=${samfold}/${S2} O=${samfold}/${S3} METRICS_FILE=${samfold}/${R1}_dupMark.txt
fi
echo -e "Duplicates marked in ${S3} \n"
###
##--------------------------------------------------------------## 4. Sort and statistics
cd ${samfold} ## move to SAM alignment folder
B1=$(echo $S3 | sed 's/_R1_001.sort.md.sam/.bam/g')
B2=$(echo $B1 | sed 's/.bam/.ind.bam/g')
###
echo "4. sorting Bowtie2 mapped reads. Retaining the uniquely mapping reads for ${S3}. Generating aligmnent statistics."
samtools view -bS -F 0x04 -q ${minScore} ${samfold}/${S3} -o ${bamfold}/${B1} ## filter reads by MAPq
samtools sort ${bamfold}/${B1} > ${bamfold}/${B2}
samtools index ${bamfold}/${B2} ## index reads
samtools flagstat ${bamfold}/${B2} > ${bamfold}/${B2}.FLAGSTAT.txt ## get alignment scores
echo -e "samtools finished processing ${S3} to ${B1} \n"
###
##--------------------------------------------------------------## 5. unscaled BAM coverage
cd ${bamfold}
BW1=$(echo $B2 | sed 's/.ind.bam/.cpm.bigWig/g')
BW2=$(echo $B2 | sed 's/.ind.bam/.rpgc.bigWig/g')
###
echo "5. Generating coverage files for ${B2}"
echo -e "\t bamCoverage --bam ${bamfold}/${B2} --normalizeUsing CPM --outFileName ${covfold}/${BW1} --binSize 1 --numberOfProcessors max"
echo -e "\t bamCoverage --bam ${bamfold}/${B2} --normalizeUsing RPGC --outFileName ${covfold}/${BW2} --effectiveGenomeSize 2747877702 --binSize 1 --numberOfProcessors max"
# Bam coverage to generate BigWig
bamCoverage --bam ${bamfold}/${B2} --normalizeUsing CPM --outFileName ${covfold}/${BW1} --binSize 1 --numberOfProcessors max
bamCoverage --bam ${bamfold}/${B2} --normalizeUsing RPGC --outFileName ${covfold}/${BW2} --effectiveGenomeSize 2747877702 --binSize 1 --numberOfProcessors max
echo -e "BAM coverage files generated for ${B2} using CPM and RPGC normalization \n"
###
##--------------------------------------------------------------## 6. Bedtools conversion
cd ${bamfold} ## move to BAM folder
BD1=$(echo $B2 | sed 's/.ind.bam/.bed/g')
BD2=$(echo $BD1 | sed 's/.bed/.filt.bed/g')
BD3=$(echo $BD2 | sed 's/.filt.bed/.fragments.bed/g')
BD4=$(echo $BD3 | sed 's/.fragments.bed/.bin.bed/g')
B2N=$(echo $B2 | sed 's/.ind.bam/.n.bam/g')
###
echo "6. Converting ${B2} to BED files ${BD1}."
echo -e "\t bedtools bamtobed -i ${bamfold}/${B2} -bedpe >${bedfold}/${BD1}"
echo -e "\t awk '$1==$4 && $6-$2 < 1000 {print $0}' ${bedfold}/${BD1} >${bedfold}/${BD2} "
echo -e "\t cut -f 1,2,6 ${bedfold}/${BD2} | sort -k1,1 -k2,2n -k3,3n >${bedfold}/${BD3}"
echo -e "\t awk -v w=$binLen '{print $1, int(($2 + $3)/(2*w))*w + w/2}' ${bedfold}/${BD3} | sort -k1,1V -k2,2n | uniq -c | awk -v OFS="\t" '{print $2, $3, $1}' | sort -k1,1V -k2,2n >${bedfold}/${BD4}"
echo -e "\t samtools view -F 0x04 ${samfold}/${S1} | awk -F'\t' 'function abs(x){return ((x < 0.0) ? -x : x)} {print abs($9)}' | sort | uniq -c | awk -v OFS="\t" '{print $2, $1/2}' > ${samfold}/${S1}_fragmentLen.txt"
samtools sort -n ${bamfold}/${B2} > ${bamfold}/${B2N} ## Sort by read alignment flag for
bedtools bamtobed -i ${bamfold}/${B2N} -bedpe >${bedfold}/${BD1}
## Keep the read pairs that are on the same chromosome and fragment length less than 1000bp.
awk '$1==$4 && $6-$2 < 1000 {print $0}' ${bedfold}/${BD1} >${bedfold}/${BD2}
## Only extract the fragment related columns
cut -f 1,2,6 ${bedfold}/${BD2} | sort -k1,1 -k2,2n -k3,3n >${bedfold}/${BD3}
## Bin genome for correlation calculation later
binLen=500
awk -v w=$binLen '{print $1, int(($2 + $3)/(2*w))*w + w/2}' ${bedfold}/${BD3} | sort -k1,1V -k2,2n | uniq -c | awk -v OFS="\t" '{print $2, $3, $1}' | sort -k1,1V -k2,2n >${bedfold}/${BD4}
## Extract the 9th column from the alignment sam file which is the fragment length
samtools view -F 0x04 ${samfold}/${S1} | awk -F'\t' 'function abs(x){return ((x < 0.0) ? -x : x)} {print abs($9)}' | sort | uniq -c | awk -v OFS="\t" '{print $2, $1/2}' > ${samfold}/${S1}_fragmentLen.txt
echo -e "Done converting ${B2} to ${BD2} and ${BD3}. Generated binned genome ${BD4} for correlation analysis. \n"
###
##--------------------------------------------------------------## 7. Bedgraph generation
gpath=$(echo $gendir | rev | cut -d'/' -f2- | rev) ## remove last part of directory
chromsize=${gpath}/${csize}
cd ${bedfold}
###
echo "7. Converting ${BD3} to BEDGRAPH for peak calling."
echo -e "\t chromosome size path is ${chromsize}"
if [[ -z "${spikein}" ]] ## If there is no spikein generate bedgraph without
then
BG1=$(echo $BD3 | sed 's/.fragments.bed/.bedgraph/g')
echo -e "\t Generating BEDGRAPH without Spike-In"
echo -e "\t bedtools genomecov -bg -i ${bedfold}/${BD3} -g ${chromsize} > ${bgfold}/${BG1}"
bedtools genomecov -bg -i ${bedfold}/${BD3} -g ${chromsize} > ${bgfold}/${BG1}
echo -e "Done converting ${BD3} to ${BG1}. \n"
###
else
BG1=$(echo $BD3 | sed 's/.fragments.bed/.bedgraph/g')
BW3=$(echo $BD3 | sed 's/.fragments.bed/.scaled.bigWig/g')
libSize=`cat ${bedfold}/${BD3}|wc -l`
scale=`echo "15000000/(${libSize}*${spikein})" | bc -l`
echo -e "\t Generating BEDGRAPH and BIGWIG with scaled value from Spike-In: ${scale}"
echo -e "\t bedtools genomecov -bg -scale ${scale} -i ${bedfold}/${BD3} -g ${chromsize} > ${bgfold}/${BG1}"
echo -e "\t bamCoverage --bam ${bamfold}/${B2} --scaleFactor ${scale} --normalizeUsing RPGC --outFileName ${covfold}/${BW3} --effectiveGenomeSize 2747877702 --binSize 1 --numberOfProcessors max"
bedtools genomecov -bg -scale ${scale} -i ${bedfold}/${BD3} -g ${chromsize} > ${bgfold}/${BG1}
bamCoverage --bam ${bamfold}/${B2} --scaleFactor ${scale} --normalizeUsing RPGC --outFileName ${covfold}/${BW3} --effectiveGenomeSize 2747877702 --binSize 1 --numberOfProcessors max
echo -e "Done converting ${BD3} to ${BG1} and ${BW3}. \n"
###
fi
##--------------------------------------------------------------## 8. Peak calling
###
if [ -z "${seacr}" ] ## If there is no path to seacr software, use MACS2
then
cd ${bamfold}
P1=$(echo $BG1 | sed 's/.bedgraph/.macs2/g')
module load MACS2/2.2.9.1
echo "8. Calling MAC2 Peaks on ${B1}"
echo -e "\t macs2 callpeak -t ${bamfold}/${B1} -g hs -f BAMPE -n ${P1} --outdir ${pkfold} -q 0.1 --keep-dup all 2>${pkfold}/${P1}.macs2Peak_summary.txt"
macs2 callpeak -t ${bamfold}/${B1} -g hs -f BAMPE -n ${P1} --outdir ${pkfold} -q 0.1 --keep-dup all 2>${pkfold}/${P1}.macs2Peak_summary.txt
elif [[ $broad -eq 1 ]]
then
cd ${bamfold}
P1=$(echo $BG1 | sed 's/.bedgraph/.macs2/g')
module load MACS2/2.2.9.1
echo "8. Calling MAC2 Peaks on ${B1} with --broad option"
echo -e "\t macs2 callpeak -t ${bamfold}/${B1} -g hs -f BAMPE --broad -n ${P1} --outdir ${pkfold} -q 0.1 --keep-dup all 2>${pkfold}/${P1}.macs2Peak_summary.txt"
macs2 callpeak -t ${bamfold}/${B1} -g hs -f BAMPE --broad -n ${P1} --outdir ${pkfold} -q 0.1 --keep-dup all 2>${pkfold}/${P1}.macs2Peak_summary.txt
else
cd ${bgfold}
module load R/4.3.0
S1=$(echo $BG1 | sed 's/.bedgraph/.seacr.peaks/g')
echo "8. Calling SEACR Peaks on ${BG1}"
echo -e "\t bash $seacr ${bgfold}/${BG1} 0.01 non relaxed ${pkfold}/${S1}"
bash $seacr ${bgfold}/${BG1} 0.01 non relaxed ${pkfold}/${S1}
fi
echo -e "Peak calling complete \n"
###
##--------------------------------------------------------------## 9. FASTQC
module unload TrimGalore/0.6.10
module load fastqc
cd ${wdir}
echo "9. QC on original fastq reads ${R1}"
echo -e "\t fastqc -t ${threads} ${root}${PWD##*/}/${R1} ${root}${PWD##*/}/${R2} -o ${qcfold}"
ls -lh ${root}${PWD##*/}/${R1}
ls -lh ${root}${PWD##*/}/${R2}
fastqc -t ${threads} ${root}${PWD##*/}/${R1} ${root}${PWD##*/}/${R2} -o ${qcfold}
echo -e "FASTQC complete \n"
###
##--------------------------------------------------------------## 9. Compute Heatmap
module load deeptools
echo "10. Computing heatmap of peaks ${R1}"
echo -e "\t fastqc -t ${threads} ${root}${PWD##*/}/${R1} ${root}${PWD##*/}/${R2} -o ${qcfold}"
if [ -z "${seacr}" ]
then
echo -e "\t using MACS2 peaks"
matfile=$(echo $BG1 | sed 's/.bedgraph/_MACS2.mat.gz/g')
M1=$(echo $BG1 | sed 's/.bedgraph/.macs2_summits.bed/g')
else
echo -e "\t using SEACR peaks"
M1=$(echo $S1 | sed 's/.seacr.peaks.relaxed.bed/.seacr.peaks.summitRegion.bed/g')
matfile=$(echo $S1 | sed 's/.seacr.peaks.relaxed.bed/_SEACR.mat.gz/g')
awk '{split($6, summit, ":"); split(summit[2], region, "-"); print summit[1]"\t"region[1]"\t"region[2]}' ${pkfold}/${S1} > ${pkfold}/${M1}
fi
echo -e "\t computeMatrix reference-point -S ${covfold}/${BW2} -R ${pkfold}/${M1} --skipZeros -o ${pkfold}/${matfile} -p $threads -a 3000 -b 3000 --referencePoint center"
computeMatrix reference-point -S ${covfold}/${BW2} -R ${pkfold}/${M1} --skipZeros -o ${pkfold}/${matfile} -p $threads -a 3000 -b 3000 --referencePoint center
echo -e "\t plotHeatmap -m ${pkfold}/${matfile} -out ${rsfold}${matfile}_SEACR_heatmap.png --sortUsing sum --startLabel "Peak Start" --endLabel "Peak End" --xAxisLabel "" --regionsLabel "Peaks" --samplesLabel "${M1}""
plotHeatmap -m ${pkfold}/${matfile} -out ${rsfold}/${matfile}_heatmap.png --sortUsing sum --startLabel "Peak Start" --endLabel "Peak End" --xAxisLabel "" --regionsLabel "Peaks" --samplesLabel "${M1}"
echo -e " ******** All process have been completed ******** \n \n"
###