add nextflow d30e48d
This commit is contained in:
4
nextflow/docs/snippets/join-record-duplicates.nf
Normal file
4
nextflow/docs/snippets/join-record-duplicates.nf
Normal file
@@ -0,0 +1,4 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user