Skip to content

Commit 59d32c8

Browse files
authored
Merge pull request #306 from drpatelh/updates
Add tower.yml file with list of pertinent Reports to display in Tower
2 parents c4c0c3d + 255992d commit 59d32c8

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

modules/local/plot_homer_annotatepeaks.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ process PLOT_HOMER_ANNOTATEPEAKS {
2727
-p $prefix \\
2828
$args
2929
30-
find ./ -type f -name "*.txt" -exec cat {} \\; | cat $mqc_header - > ${prefix}.summary_mqc.tsv
30+
find ./ -type f -name "*summary.txt" -exec cat {} \\; | cat $mqc_header - > ${prefix}.summary_mqc.tsv
3131
3232
cat <<-END_VERSIONS > versions.yml
3333
"${task.process}":

tower.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
reports:
2+
multiqc_report.html:
3+
display: "MultiQC HTML report"
4+
macs2_peak.plots.pdf:
5+
display: "All samples MACS2 peak QC PDF plots"
6+
macs2_annotatePeaks.plots.pdf:
7+
display: "All samples HOMER annotatePeaks.pl QC PDF plots"
8+
"*.consensus_peaks.plots.pdf":
9+
display: "Consensus peaks DESeq2 QC PDF plots"
10+
"*.consensus_peaks.boolean.intersect.plot.pdf":
11+
display: "Consensus peaks UpSetR intersection PDF plots"
12+
"*.consensus_peaks.boolean.annotatePeaks.txt":
13+
display: "Consensus peaks annotated by HOMER"
14+
"*.plotHeatmap.pdf":
15+
display: "Per-sample deepTools plotHeatmap PDF plots"
16+
"*_peaks.broadPeak":
17+
display: "Per-sample MACS2 broadPeak file"
18+
"*_peaks.narrowPeak":
19+
display: "Per-sample MACS2 narrowPeak file"

workflows/chipseq.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ workflow CHIPSEQ {
297297
ch_versions = ch_versions.mix(MARK_DUPLICATES_PICARD.out.versions)
298298

299299
//
300-
// SUBWORKFLOW: Fix getting name sorted BAM here for PE/SE
300+
// SUBWORKFLOW: Filter BAM file with BamTools
301301
//
302302
FILTER_BAM_BAMTOOLS (
303303
MARK_DUPLICATES_PICARD.out.bam.join(MARK_DUPLICATES_PICARD.out.bai, by: [0]),

0 commit comments

Comments
 (0)