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

Get only first value.

parent fb1bfbb0
Branches
Tags
1 merge request!23Resolve "Output software versions and methods and references"
Pipeline #3275 failed with stages
in 9 hours, 13 minutes, and 36 seconds
......@@ -491,17 +491,17 @@ process softwareReport {
input:
file trimReads_vf from trimReadsVersions.collect()
file alignReads_vf from alignReadsVersions.collect()
file filterReads_vf from filterReadsVersions.collect()
file convertReads_vf from convertReadsVersions.collect()
file crossReads_vf from crossReadsVersions.collect()
file callPeaksMACS_vf from callPeaksMACSVersions.collect()
file consensusPeaks_vf from consensusPeaksVersions.collect()
file peakAnnotation_vf from peakAnnotationVersions.collect()
file motifSearch_vf from motifSearchVersions.collect().ifEmpty([])
file diffPeaks_vf from diffPeaksVersions.collect().ifEmpty([])
file experimentQC_vf from experimentQCVersions.collect()
file trimReads_vf from trimReadsVersions.first()
file alignReads_vf from alignReadsVersions.first()
file filterReads_vf from filterReadsVersions.first()
file convertReads_vf from convertReadsVersions.first()
file crossReads_vf from crossReadsVersions.first()
file callPeaksMACS_vf from callPeaksMACSVersions.first()
file consensusPeaks_vf from consensusPeaksVersions.first()
file peakAnnotation_vf from peakAnnotationVersions.first()
file motifSearch_vf from motifSearchVersions.first().ifEmpty()
file diffPeaks_vf from diffPeaksVersions.first().ifEmpty()
file experimentQC_vf from experimentQCVersions.first()
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