add nextflow d30e48d
This commit is contained in:
6
nextflow/docs/snippets/multimap-shared.nf
Normal file
6
nextflow/docs/snippets/multimap-shared.nf
Normal file
@@ -0,0 +1,6 @@
|
||||
channel.of( 1, 2, 3 )
|
||||
.multiMap { v -> alpha: beta: v }
|
||||
.set { result }
|
||||
|
||||
result.alpha.view { v -> "alpha $v" }
|
||||
result.beta.view { v -> "beta $v" }
|
||||
Reference in New Issue
Block a user