add nextflow d30e48d
This commit is contained in:
4
nextflow/docs/snippets/cross-with-mapper.nf
Normal file
4
nextflow/docs/snippets/cross-with-mapper.nf
Normal file
@@ -0,0 +1,4 @@
|
||||
source = channel.of( [1, 'alpha'], [2, 'beta'] )
|
||||
target = channel.of( [1, 'a'], [1, 'b'], [2, 'a'], [2, 'b'] )
|
||||
|
||||
source .cross(target) { v -> v[1][0] } .view()
|
||||
Reference in New Issue
Block a user