Files
ma/nextflow/docs/snippets/mix.nf
2026-04-29 23:01:54 +02:00

5 lines
113 B
Plaintext

c1 = channel.of( '1', '2', '3' )
c2 = channel.of( 'a', 'b' )
v3 = channel.value( 'z' )
c1.mix(c2).mix(v3).view()