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

4 lines
135 B
Plaintext

// Example with a JSON object
channel.of('{"A": 1, "B": [1, 2, 3], "C": {"D": null}}')
.splitJson()
.view { v -> "Item: ${v}" }