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

5 lines
109 B
Plaintext

a = channel.of( 'a', 'b', 'c' )
b = channel.of( 1, 2, 3 )
c = channel.of( 'p', 'q' )
c.concat( b, a ).view()