add nextflow d30e48d
This commit is contained in:
4
nextflow/docs/snippets/join-record-remainder.nf
Normal file
4
nextflow/docs/snippets/join-record-remainder.nf
Normal file
@@ -0,0 +1,4 @@
|
||||
left = channel.of( record(id: 'X', a: 1), record(id: 'Y', a: 2), record(id: 'Z', a: 3), record(id: 'P', a: 7) )
|
||||
right = channel.of( record(id: 'Z', b: 6), record(id: 'Y', b: 5), record(id: 'X', b: 4), record(id: 'Q', b: 8) )
|
||||
|
||||
left.join(right, by: 'id', remainder: true).view()
|
||||
Reference in New Issue
Block a user