-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathiCLIP_Transcriptome_v3.1.0.nf
More file actions
419 lines (329 loc) · 18.8 KB
/
iCLIP_Transcriptome_v3.1.0.nf
File metadata and controls
419 lines (329 loc) · 18.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
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
"""
Author : Wilfried Guiblet. Blame him if it fails.
Update of : https://github.com/NCI-RBL/iCLIP
* Overview *
- Add-on to iCLIP pipeline
- Call peaks on transcriptome alignment
- Intersect with potential spliced-sites
- Build report
"""
// Necessary for syntax
nextflow.enable.dsl=2
// Create channels from the input paths
samplefiles_ch = Channel.fromList(params.samplenames)//.view { "value: $it" }
contrasts_ch = Channel.fromList(params.contrasts)//.view { "value: $it" }
// Create a channel with a unique value. Useful for processes that do not iterate through multiple samples.
unique_ch = Channel.fromList(['unique'])
// ************* The following parameters are imported from the file: nextflow.parameters.yaml *************
// determine which umi separator to use
if(params.multiplexflag == 'Y') {
// demultiplexing ades rbc: to all demux files;
params.umi_sep = "rbc:"}
else{
// external demux uses an _
params.umi_sep = params.umiSeparator}
params.manorm_w = params.MANormWidth
params.manorm_d = params.MNormDistance
// ************* End of parameter importation *************
process DeDup {
"""
Sort and discard duplicates
"""
container 'wilfriedguiblet/iclip:v3.1.0' // Use a Docker container
input:
val samplefile
output:
val samplefile
shell:
"""
set -exo pipefail
# sort file
samtools sort -m 80G -T !{params.workdir}/01_preprocess/02_alignment/ !{params.workdir}/01_preprocess/02_alignment/!{samplefile}_Aligned.toTranscriptome.out.bam -o !{params.workdir}/01_preprocess/02_alignment/!{samplefile}_Aligned.toTranscriptome.sortedByCoord.out.bam
samtools index -@ !{params.featureCounts.threads} !{params.workdir}/01_preprocess/02_alignment/!{samplefile}_Aligned.toTranscriptome.sortedByCoord.out.bam
# Run UMI Tools Deduplication
echo "Using the following UMI seperator: !{params.umi_sep}"
umi_tools dedup \\
-I !{params.workdir}/01_preprocess/02_alignment/!{samplefile}_Aligned.toTranscriptome.sortedByCoord.out.bam \\
--method unique \\
--multimapping-detection-method=NH \\
--umi-separator=!{params.umi_sep} \\
-S !{params.workdir}/temp/!{samplefile}.toTranscriptome.unmasked.bam \\
--log2stderr;
# Sort and Index
samtools sort --threads !{params.featureCounts.threads} -m 10G -T !{params.workdir}/temp/ \\
!{params.workdir}/temp/!{samplefile}.toTranscriptome.unmasked.bam \\
-o !{params.workdir}/02_bam/02_dedup/!{samplefile}.toTranscriptome.dedup.si.bam;
samtools index -@ !{params.featureCounts.threads} !{params.workdir}/02_bam/02_dedup/!{samplefile}.toTranscriptome.dedup.si.bam;
bedtools bamtobed -i !{params.workdir}/02_bam/02_dedup/!{samplefile}.toTranscriptome.dedup.si.bam > !{params.workdir}/03_peaks/01_bed/!{samplefile}.toTranscriptome.bed
"""
}
process CTK_Peak_Calling {
"""
Peak calling using CTK.
"""
container 'wilfriedguiblet/ctk:v0.1'
input:
val samplefile
output:
val samplefile
shell:
"""
export PERL5LIB=/opt/conda/lib/czplib
/opt/conda/lib/ctk/tag2peak.pl \
-big -ss \
-p 0.001 --multi-test\
--valley-seeking \
--valley-depth 0.9 \
!{params.workdir}/03_peaks/01_bed/!{samplefile}.toTranscriptome.bed !{params.workdir}/03_peaks/01_bed/!{samplefile}.toTranscriptome.peaks.bed \
--out-boundary !{params.workdir}/03_peaks/01_bed/!{samplefile}.toTranscriptome.peaks.boundary.bed \
--out-half-PH !{params.workdir}/03_peaks/01_bed/!{samplefile}.toTranscriptome.peaks.halfPH.bed \
--multi-test \
-minPH !{params.CTK.minimum_peak_height_Transcriptome}
"""
}
process Create_Safs {
"""
Reformat BED into SAF.
"""
container 'wilfriedguiblet/iclip:v3.1.0' // Use a Docker container
input:
val samplefile
output:
val samplefile
shell:
"""
set -exo pipefail
awk '{{OFS="\\t"; if (\$3-\$2 >= 20) print \$1":"\$2"-"\$3"_"\$6,\$1,\$2,\$3,\$6}}' !{params.workdir}/03_peaks/01_bed/!{samplefile}.toTranscriptome.peaks.boundary.bed > !{params.workdir}/03_peaks/02_SAF/!{samplefile}.toTranscriptome.saf
"""
}
process Feature_Counts {
"""
Unique reads (fractional counts correctly count splice reads for each peak.
When peaks counts are combined for peaks connected by splicing in Rscript)
Include Multimap reads - MM reads given fractional count based on # of mapping
locations. All spliced reads also get fractional count. So Unique reads can get
fractional count when spliced peaks combined in R script the summed counts give
whole count for the unique alignement in combined peak.
http://manpages.ubuntu.com/manpages/bionic/man1/featureCounts.1.html
Output summary
- Differences within any folder (allreadpeaks or uniquereadpeaks) should ONLY be the counts column -
as this represent the number of peaks that were uniquely identified (uniqueCounts) or the number of peaks MM (allFracMMCounts)
- Differences within folders (03_allreadpeaks, 03_uniquereadpeaks) will be the peaks identified, as the first takes
all reads as input and the second takes only unique reads as input
"""
container 'wilfriedguiblet/iclip:v3.1.0' // Use a Docker container
input:
val samplefile
output:
val samplefile
shell:
"""
set -exo pipefail
# Run for allreadpeaks
featureCounts -F SAF \\
-a !{params.workdir}/03_peaks/02_SAF/!{samplefile}.toTranscriptome.saf \\
-O \\
-J \\
--fraction \\
--minOverlap 1 \\
-s 1 \\
-T !{params.featureCounts.threads} \\
-o /!{params.workdir}/03_peaks/03_counts/!{samplefile}_ALLreadpeaks_uniqueCounts.toTranscriptome.txt \\
!{params.workdir}/02_bam/02_dedup/!{samplefile}.toTranscriptome.dedup.si.bam;
featureCounts -F SAF \\
-a !{params.workdir}/03_peaks/02_SAF/!{samplefile}.toTranscriptome.saf \\
-M \\
-O \\
-J \\
--fraction \\
--minOverlap 1 \\
-s 1 \\
-T !{params.featureCounts.threads} \\
-o !{params.workdir}/03_peaks/03_counts/!{samplefile}_ALLreadpeaks_FracMMCounts.toTranscriptome.txt \\
!{params.workdir}/02_bam/02_dedup/!{samplefile}.toTranscriptome.dedup.si.bam;
featureCounts -F SAF \\
-a !{params.workdir}/03_peaks/02_SAF/!{samplefile}.toTranscriptome.saf \\
-M \\
-O \\
--minOverlap 1 \\
-s 1 \\
-T !{params.featureCounts.threads} \\
-o !{params.workdir}/03_peaks/03_counts/!{samplefile}_ALLreadpeaks_totalCounts.toTranscriptome.txt \\
!{params.workdir}/02_bam/02_dedup/!{samplefile}.toTranscriptome.dedup.si.bam;
"""
}
process CombineCounts {
"""
Combining the different type of counts done in FeatureCounts
"""
container 'wilfriedguiblet/iclip:v3.1.0' // Use a Docker container
input:
val samplefile
output:
val samplefile
shell:
"""
# Usage: script input1 input2 input3 output
python !{params.sourcedir}/05_countmerger.py \\
--uniqueCountsFile !{params.workdir}/03_peaks/03_counts/!{samplefile}_ALLreadpeaks_uniqueCounts.toTranscriptome.txt \\
--FracMMCountsFile !{params.workdir}/03_peaks/03_counts/!{samplefile}_ALLreadpeaks_FracMMCounts.toTranscriptome.txt \\
--totalCountsFile !{params.workdir}/03_peaks/03_counts/!{samplefile}_ALLreadpeaks_totalCounts.toTranscriptome.txt \\
--outName !{params.workdir}/04_annotation/02_peaks/!{samplefile}_!{params.peakid}readPeaks_AllRegions.toTranscriptome.txt
"""
}
process Peak_Annotation {
"""
Annotate peaks Splice sites and Gene IDs
"""
container 'wilfriedguiblet/iclip:v3.1.0' // Use a Docker container
input:
val samplefile
output:
val(samplefile)
shell:
"""
awk -v OFS='\t' '(NR>1) {print \$2, \$3, \$4, \$1, 0, \$5, \$6, \$7, \$8, \$9 }' \\
!{params.workdir}/04_annotation/02_peaks/!{samplefile}_!{params.peakid}readPeaks_AllRegions.toTranscriptome.txt \\
> !{params.workdir}/04_annotation/02_peaks/!{samplefile}_!{params.peakid}readPeaks_AllRegions.toTranscriptome.bed
bedtools intersect -wa -wb -loj \\
-a !{params.workdir}/04_annotation/02_peaks/!{samplefile}_!{params.peakid}readPeaks_AllRegions.toTranscriptome.bed \\
-b !{params."${params.reference}".gencodedir}/GENCODE_VM23_knownGene_!{params.reference}.splice_sites.bed !{params."${params.reference}".gencodedir}/GENCODE_VM23_knownGene_!{params.reference}.5UTR.bed !{params."${params.reference}".gencodedir}/GENCODE_VM23_knownGene_!{params.reference}.3UTR.bed \\
-names Splice_Sites 5UTR 3UTR \\
> !{params.workdir}/04_annotation/02_peaks/!{samplefile}_!{params.peakid}readPeaks_AllRegions.!{params.reference}.intersect.toTranscriptome.bed
python !{params.sourcedir}/MergeGeneIDs.py \\
!{params.workdir}/04_annotation/02_peaks/!{samplefile}_!{params.peakid}readPeaks_AllRegions.!{params.reference}.intersect.toTranscriptome.bed \\
!{params."${params.reference}".gencodepath} \\
!{params.workdir}/04_annotation/02_peaks/!{samplefile}_!{params.peakid}readPeaks_annotation_complete.toTranscriptome.csv
"""
}
process MANORM_analysis {
container 'wilfriedguiblet/iclip:v3.1.0' // Use a Docker container
input:
tuple val(sample), val(background), val(dummy)
output:
tuple val(sample), val(background)
shell:
"""
manorm \\
--p1 "!{params.workdir}/03_peaks/01_bed/!{sample}.toTranscriptome.peaks.boundary.bed" \\
--p2 "!{params.workdir}/03_peaks/01_bed/!{background}.toTranscriptome.peaks.boundary.bed" \\
--r1 "!{params.workdir}/03_peaks/01_bed/!{sample}.toTranscriptome.bed" \\
--r2 "!{params.workdir}/03_peaks/01_bed/!{background}.toTranscriptome.bed" \\
--s1 0 \\
--s2 0 \\
-p 1 \\
-m 0 \\
-w !{params.manorm_w} \\
--summit-dis !{params.manorm_d} \\
--wa \\
-o !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome \\
--name1 !{sample} \\
--name2 !{background}
awk -v OFS='\t' '{print \$1,\$2,\$3,\$4}' !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/output_filters/!{sample}_vs_!{background}_M_above_0.0_biased_peaks.bed > !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome.manorm.xls
"""
}
process MANORM_Annotation {
"""
Annotate MANORM peaks Splice sites and Gene IDs
"""
container 'wilfriedguiblet/iclip:v3.1.0' // Use a Docker container
input:
tuple val(sample), val(background)
output:
tuple val(sample), val(background)
shell:
"""
awk '{{OFS="\\t"; if (\$3-\$2 >= 20) print \$1":"\$2"-"\$3,\$1,\$2,\$3,"+"}}' !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/output_filters/!{sample}_vs_!{background}_M_above_0.0_biased_peaks.bed > !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.saf
featureCounts -F SAF \\
-a !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.saf \\
-O \\
-J \\
--fraction \\
--minOverlap 1 \\
-s 1 \\
-T !{params.featureCounts.threads} \\
-o !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.uniqueCounts.!{sample}.txt \\
!{params.workdir}/02_bam/02_dedup/!{sample}.toTranscriptome.dedup.si.bam;
featureCounts -F SAF \\
-a !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.saf \\
-M \\
-O \\
-J \\
--fraction \\
--minOverlap 1 \\
-s 1 \\
-T !{params.featureCounts.threads} \\
-o !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.FracMMCounts.!{sample}.txt \\
!{params.workdir}/02_bam/02_dedup/!{sample}.toTranscriptome.dedup.si.bam;
featureCounts -F SAF \\
-a !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.saf \\
-M \\
-O \\
--minOverlap 1 \\
-s 1 \\
-T !{params.featureCounts.threads} \\
-o !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.totalCounts.!{sample}.txt \\
!{params.workdir}/02_bam/02_dedup/!{sample}.toTranscriptome.dedup.si.bam;
featureCounts -F SAF \\
-a !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.saf \\
-O \\
-J \\
--fraction \\
--minOverlap 1 \\
-s 1 \\
-T !{params.featureCounts.threads} \\
-o !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.uniqueCounts.!{background}.txt \\
!{params.workdir}/02_bam/02_dedup/!{background}.toTranscriptome.dedup.si.bam;
featureCounts -F SAF \\
-a !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.saf \\
-M \\
-O \\
-J \\
--fraction \\
--minOverlap 1 \\
-s 1 \\
-T !{params.featureCounts.threads} \\
-o !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.FracMMCounts.!{background}.txt \\
!{params.workdir}/02_bam/02_dedup/!{background}.toTranscriptome.dedup.si.bam;
featureCounts -F SAF \\
-a !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.saf \\
-M \\
-O \\
--minOverlap 1 \\
-s 1 \\
-T !{params.featureCounts.threads} \\
-o !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.totalCounts.!{background}.txt \\
!{params.workdir}/02_bam/02_dedup/!{background}.toTranscriptome.dedup.si.bam;
python !{params.sourcedir}/05_countmerger.py \\
--uniqueCountsFile !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.uniqueCounts.!{sample}.txt \\
--FracMMCountsFile !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.FracMMCounts.!{sample}.txt \\
--totalCountsFile !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.totalCounts.!{sample}.txt \\
--outName !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.AllCounts.!{sample}.txt
python !{params.sourcedir}/05_countmerger.py \\
--uniqueCountsFile !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.uniqueCounts.!{background}.txt \\
--FracMMCountsFile !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.FracMMCounts.!{background}.txt \\
--totalCountsFile !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.totalCounts.!{background}.txt \\
--outName !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.AllCounts.!{background}.txt
awk -v OFS='\t' '(NR>1) {print \$2, \$3, \$4, \$1, 0, \$5, \$6, \$7, \$8, \$9 }' \\
!{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.AllCounts.!{sample}.txt \\
> !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.AllCounts.!{sample}.bed
awk -v OFS='\t' '(NR>1) {print \$2, \$3, \$4, \$1, 0, \$5, \$6, \$7, \$8, \$9 }' \\
!{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.AllCounts.!{background}.txt \\
> !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.AllCounts.!{background}.bed
bedtools intersect -wa -wb -loj \\
-a !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.AllCounts.!{sample}.bed \\
-b !{params."${params.reference}".gencodedir}/GENCODE_VM23_knownGene_!{params.reference}.splice_sites.bed !{params."${params.reference}".gencodedir}/GENCODE_VM23_knownGene_!{params.reference}.5UTR.bed !{params."${params.reference}".gencodedir}/GENCODE_VM23_knownGene_!{params.reference}.3UTR.bed \\
-names Splice_Sites 5UTR 3UTR \\
> !{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.intersect.!{sample}.bed
python !{params.sourcedir}/MergeGeneIDsMANORM.py \\
!{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.intersect.!{sample}.bed \\
!{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.peaks.AllCounts.!{background}.bed \\
!{params."${params.reference}".gencodepath} \\
!{params.workdir}/05_demethod/02_analysis/!{sample}_vs_!{background}.toTranscriptome/!{sample}_vs_!{background}.annotation_complete.toTranscriptome.csv
#
"""
}
workflow {
DeDup(samplefiles_ch) | CTK_Peak_Calling | Create_Safs | Feature_Counts | CombineCounts | Peak_Annotation
MANORM_analysis(contrasts_ch.combine(Peak_Annotation.out.collect().toList())) | MANORM_Annotation
}