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

4 lines
168 B
Plaintext

left = channel.of( record(id: 'X', a: 1), record(id: 'X', a: 3) )
right = channel.of( record(id: 'X', b: 2), record(id: 'X', b: 4) )
left.join(right, by: 'id').view()