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

3 lines
85 B
Plaintext

channel.of( 'hello', 'ciao', 'bonjour' )
.collect { v -> v.length() }
.view()