Files
ma/nextflow/docs/snippets/subscribe.nf
2026-04-29 23:01:54 +02:00

5 lines
124 B
Plaintext

source = channel.of( 'alpha', 'beta', 'delta' )
source.subscribe { str ->
println "Got: ${str}; len: ${str.length()}"
}