add nextflow d30e48d
This commit is contained in:
6
nextflow/docs/snippets/merge-with-mapper.nf
Normal file
6
nextflow/docs/snippets/merge-with-mapper.nf
Normal file
@@ -0,0 +1,6 @@
|
||||
odds = channel.of(1, 3, 5, 7, 9)
|
||||
evens = channel.of(2, 4, 6)
|
||||
|
||||
odds
|
||||
.merge( evens ) { a, b -> tuple(b*b, a) }
|
||||
.view()
|
||||
Reference in New Issue
Block a user