Skip to content
Snippets Groups Projects
Commit f3de8565 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix software outout.

parent 1f9b2c71
No related merge requests found
...@@ -491,17 +491,17 @@ process softwareReport { ...@@ -491,17 +491,17 @@ process softwareReport {
input: input:
file trimReads_vf from trimReadsVersions.distinct().collect() file ('trimReads_vf/*') from trimReadsVersions.first()
file alignReads_vf from alignReadsVersions.distinct().collect() file ('alignReads_vf/*') from alignReadsVersions.first()
file filterReads_vf from filterReadsVersions.distinct().collect() file ('filterReads_vf/*') from filterReadsVersions.first()
file convertReads_vf from convertReadsVersions.distinct().collect() file ('convertReads_vf/*') from convertReadsVersions.first()
file crossReads_vf from crossReadsVersions.distinct().collect() file ('crossReads_vf/*') from crossReadsVersions.first()
file callPeaksMACS_vf from callPeaksMACSVersions.distinct().collect() file ('callPeaksMACS_vf/*') from callPeaksMACSVersions.first()
file consensusPeaks_vf from consensusPeaksVersions.distinct().collect() file ('consensusPeaks_vf/*') from consensusPeaksVersions.first()
file peakAnnotation_vf from peakAnnotationVersions.distinct().collect() file ('peakAnnotation_vf/*') from peakAnnotationVersions.first()
file motifSearch_vf from motifSearchVersions.distinct().collect().ifEmpty() file ('motifSearch_vf/*') from motifSearchVersions.first().ifEmpty()
file diffPeaks_vf from diffPeaksVersions.distinct().collect().ifEmpty() file ('diffPeaks_vf/*') from diffPeaksVersions.first().ifEmpty()
file experimentQC_vf from experimentQCVersions.distinct().collect() file ('experimentQC_vf/*') from experimentQCVersions.first()
output: output:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment