Skip to content

Commit

Permalink
remove sorting [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi18av committed Jul 31, 2023
1 parent 451e7c5 commit e5011cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workflows/call_wf.nf
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,12 @@ workflow CALL_WF {

UTILS_SAMPLE_STATS(sample_stats_ch)

UTILS_COHORT_STATS(UTILS_SAMPLE_STATS.out.collect(sort:true))
UTILS_COHORT_STATS(UTILS_SAMPLE_STATS.out.collect())

emit:
cohort_stats_tsv = UTILS_COHORT_STATS.out
gvcf_ch = GATK_HAPLOTYPE_CALLER.out.gvcf_ch.collect(sort:true)
gvcf_ch = GATK_HAPLOTYPE_CALLER.out.gvcf_ch.collect()
reformatted_lofreq_vcfs_tuple_ch = GATK_INDEX_FEATURE_FILE__LOFREQ.out.vcf_tuple.collect(sort:true)
bgzip_ch = BGZIP__LOFREQ.out.collect(sort:true)
bgzip_ch = BGZIP__LOFREQ.out.collect()
samtools_bam_ch = SAMTOOLS_INDEX.out
}

0 comments on commit e5011cb

Please sign in to comment.