Skip to content

Commit

Permalink
Add missing deepTools output for MultiQC/Report
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Peltzer committed Aug 20, 2018
1 parent eea19e9 commit 0fe8b6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/scrape_software_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
'Picard MarkDuplicates': ['v_markduplicates.txt', r"([\d\.]+)-SNAPSHOT"],
'Samtools': ['v_samtools.txt', r"samtools (\S+)"],
'featureCounts': ['v_featurecounts.txt', r"featureCounts v(\S+)"],
'deepTools': ['v_deeptools.txt', r"bamCoverage (\S+)"],
'StringTie': ['v_stringtie.txt', r"(\S+)"],
'Preseq': ['v_preseq.txt', r"Version: (\S+)"],
'RSeQC': ['v_rseqc.txt', r"read_duplication.py ([\d\.]+)"],
Expand All @@ -32,6 +33,7 @@
results['featureCounts'] = '<span style="color:#999999;\">N/A</span>'
results['StringTie'] = '<span style="color:#999999;\">N/A</span>'
results['Preseq'] = '<span style="color:#999999;\">N/A</span>'
results['deepTools'] = '<span style="color:#999999;\">N/A</span>'
results['RSeQC'] = '<span style="color:#999999;\">N/A</span>'
results['MultiQC'] = '<span style="color:#999999;\">N/A</span>'

Expand Down
1 change: 1 addition & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -1055,6 +1055,7 @@ process get_software_versions {
stringtie --version &> v_stringtie.txt
preseq &> v_preseq.txt
read_duplication.py --version &> v_rseqc.txt
echo \$(bamCoverage --version 2>&1) > v_deeptools.txt
featureCounts -v &> v_featurecounts.txt
picard MarkDuplicates --version &> v_markduplicates.txt || true
samtools --version &> v_samtools.txt
Expand Down

0 comments on commit 0fe8b6c

Please sign in to comment.