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

4 lines
95 B
Plaintext

// mapping function
channel.of( "hello", "hi", "hey" )
.max { v -> v.length() }
.view()