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

4 lines
95 B
Plaintext

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