Skip to content

Commit

Permalink
Merge pull request #306 from drpatelh/updates
Browse files Browse the repository at this point in the history
Add tower.yml file with list of pertinent Reports to display in Tower
  • Loading branch information
robsyme authored Sep 16, 2022
2 parents c4c0c3d + 255992d commit 59d32c8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/local/plot_homer_annotatepeaks.nf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ process PLOT_HOMER_ANNOTATEPEAKS {
-p $prefix \\
$args
find ./ -type f -name "*.txt" -exec cat {} \\; | cat $mqc_header - > ${prefix}.summary_mqc.tsv
find ./ -type f -name "*summary.txt" -exec cat {} \\; | cat $mqc_header - > ${prefix}.summary_mqc.tsv
cat <<-END_VERSIONS > versions.yml
"${task.process}":
Expand Down
19 changes: 19 additions & 0 deletions tower.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
reports:
multiqc_report.html:
display: "MultiQC HTML report"
macs2_peak.plots.pdf:
display: "All samples MACS2 peak QC PDF plots"
macs2_annotatePeaks.plots.pdf:
display: "All samples HOMER annotatePeaks.pl QC PDF plots"
"*.consensus_peaks.plots.pdf":
display: "Consensus peaks DESeq2 QC PDF plots"
"*.consensus_peaks.boolean.intersect.plot.pdf":
display: "Consensus peaks UpSetR intersection PDF plots"
"*.consensus_peaks.boolean.annotatePeaks.txt":
display: "Consensus peaks annotated by HOMER"
"*.plotHeatmap.pdf":
display: "Per-sample deepTools plotHeatmap PDF plots"
"*_peaks.broadPeak":
display: "Per-sample MACS2 broadPeak file"
"*_peaks.narrowPeak":
display: "Per-sample MACS2 narrowPeak file"
2 changes: 1 addition & 1 deletion workflows/chipseq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ workflow CHIPSEQ {
ch_versions = ch_versions.mix(MARK_DUPLICATES_PICARD.out.versions)

//
// SUBWORKFLOW: Fix getting name sorted BAM here for PE/SE
// SUBWORKFLOW: Filter BAM file with BamTools
//
FILTER_BAM_BAMTOOLS (
MARK_DUPLICATES_PICARD.out.bam.join(MARK_DUPLICATES_PICARD.out.bai, by: [0]),
Expand Down

0 comments on commit 59d32c8

Please sign in to comment.