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

4 lines
68 B
Plaintext

channel.of( '1', '7', '12' )
.toInteger()
.sum()
.view()