File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ process MULTIQC {
4444
4545 path (' featurecounts/*' )
4646
47+ path (' deseq2/*' )
48+ path (' deseq2/*' )
49+
4750 output:
4851 path " *multiqc_report.html" , emit: report
4952 path " *_data" , emit: data
Original file line number Diff line number Diff line change @@ -582,6 +582,8 @@ workflow CHIPSEQ {
582582 ch_deseq2_pca_header,
583583 ch_deseq2_clustering_header
584584 )
585+ ch_deseq2_pca_multiqc = DESEQ2_QC . out. pca_multiqc
586+ ch_deseq2_clustering_multiqc = DESEQ2_QC . out. dists_multiqc
585587 }
586588 }
587589
@@ -654,9 +656,10 @@ workflow CHIPSEQ {
654656
655657 ch_custompeaks_frip_multiqc. collect{it[1 ]}. ifEmpty([]),
656658 ch_custompeaks_count_multiqc. collect{it[1 ]}. ifEmpty([]),
657- ch_plothomerannotatepeaks_multiqc. collect{it[1 ]}. ifEmpty([]),
658- ch_subreadfeaturecounts_multiqc. collect{it[1 ]}. ifEmpty([])// ,
659- // path ('macs/consensus/*') from ch_macs_consensus_deseq_mqc.collect().ifEmpty([])
659+ ch_plothomerannotatepeaks_multiqc. collect(). ifEmpty([]),
660+ ch_subreadfeaturecounts_multiqc. collect{it[1 ]}. ifEmpty([]),
661+ ch_deseq2_pca_multiqc. collect(). ifEmpty([]),
662+ ch_deseq2_clustering_multiqc. collect(). ifEmpty([])
660663 )
661664 multiqc_report = MULTIQC . out. report. toList()
662665 }
You can’t perform that action at this time.
0 commit comments