Skip to content

Commit

Permalink
tweak the channel dumps [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi18av committed Sep 8, 2024
1 parent 505d218 commit e7f65eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion subworkflows/local/quality_check/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ workflow QUALITY_CHECK {

emit:
reads_and_meta_ch = RENAME_FILES.out.meta_and_files
reads_ch = RENAME_FILES.out.files.collect()
reads_ch = RENAME_FILES.out.files
multiqc_files = FASTQC.out.zip.collect{it[1]}
versions = FASTQC.out.versions.first()
derived_cohort_tsv = samples_tsv_file
Expand Down
5 changes: 2 additions & 3 deletions workflows/mtbseqnf.nf
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ workflow MTBSEQ_NF {
ch_multiqc_files = ch_multiqc_files.mix(QUALITY_CHECK.out.multiqc_files)


QUALITY_CHECK.out.reads_and_meta_ch.dump(tag: 'QUALITY_CHECK.out.reads_and_meta_ch')


if(!params.only_qc) {

if( params.parallel ) {
Expand All @@ -75,6 +72,8 @@ workflow MTBSEQ_NF {

ch_reads = QUALITY_CHECK.out.reads_ch.collect()

ch_reads.dump(tag: 'ch_reads')

TBFULL( ch_reads,
params.user,
ch_reference_files )
Expand Down

0 comments on commit e7f65eb

Please sign in to comment.