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

7 lines
140 B
Plaintext

channel.of( 1, 2, 3 )
.map { v -> v + 1 }
.dump(tag: 'plus1')
channel.of( 1, 2, 3 )
.map { v -> v ** 2 }
.dump(tag: 'exp2')