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

3 lines
72 B
Plaintext

channel.of( 8, 6, 2, 5 )
.max()
.view { v -> "Max value is $v" }