nextflow-io / patterns

A curated collection of Nextflow implementation patterns
http://nextflow-io.github.io/patterns/
MIT License
329 stars 72 forks source link

Add pattern for optional execution using `until` operator #13

Open evanfloden opened 5 years ago

evanfloden commented 5 years ago

See example from @micans

ch_fastqs_cram .mix(ch_fastqs_dir) .into{ ch_rnaseq; ch_fastqc; ch_mixcr }

ch_rnaseq .until{ skip_align_step } .into { ch_star; ch_hisat2; ch_salmon }