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

4 lines
118 B
Plaintext

// Example with a JSON array
channel.of('[1, null, ["A", {}], true]')
.splitJson()
.view { v -> "Item: ${v}" }