Skip to content

Commit c31c2a9

Browse files
committed
Add deseq and fix homer annotate peaks in multiqc
1 parent dd10518 commit c31c2a9

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

modules/local/multiqc.nf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

workflows/chipseq.nf

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)