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

4 lines
136 B
Plaintext

left = channel.of( ['X', 1], ['Y', 2], ['Z', 3], ['P', 7] )
right = channel.of( ['Z', 6], ['Y', 5], ['X', 4] )
left.join(right).view()