Skip to content

Commit

Permalink
Add plotHeatmap
Browse files Browse the repository at this point in the history
  • Loading branch information
drpatelh committed Jun 2, 2020
1 parent a7fc1ed commit 23cc664
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ The library-level alignments associated with the same sample are merged and subs
* `bwa/mergedLibrary/deepTools/plotFingerprint/`
* Output files: `*.plotFingerprint.pdf`, `*.plotFingerprint.qcmetrics.txt`, `*.plotFingerprint.raw.txt`
* `bwa/mergedLibrary/deepTools/plotProfile/`
* Output files: `*.computeMatrix.mat.gz`, `*.computeMatrix.vals.mat.tab`, `*.plotProfile.pdf`, `*.plotProfile.tab`.
* Output files: `*.computeMatrix.mat.gz`, `*.computeMatrix.vals.mat.tab`, `*.plotProfile.pdf`, `*.plotProfile.tab`, `*.plotHeatmap.pdf`, `*.plotHeatmap.mat.tab`.

4. **Call peaks**

Expand Down
6 changes: 5 additions & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ process BIGWIG {
}

/*
* STEP 5.4: Generate gene body coverage plot with deepTools plotProfile
* STEP 5.4: Generate gene body coverage plot with deepTools plotProfile and plotHeatmap
*/
process PLOTPROFILE {
tag "$name"
Expand Down Expand Up @@ -1004,6 +1004,10 @@ process PLOTPROFILE {
plotProfile --matrixFile ${name}.computeMatrix.mat.gz \\
--outFileName ${name}.plotProfile.pdf \\
--outFileNameData ${name}.plotProfile.tab
plotHeatmap --matrixFile ${name}.computeMatrix.mat.gz \\
--outFileName ${name}.plotHeatmap.pdf \\
--outFileNameMatrix ${name}.plotHeatmap.mat.tab
"""
}

Expand Down

0 comments on commit 23cc664

Please sign in to comment.