Files
ma/nextflow/validation/test-aws-unstage-fail.nf
2026-04-29 23:01:54 +02:00

17 lines
256 B
Plaintext

process test {
input:
val i
output:
file("test${i}")
file("test_2_${i}")
script:
"""
dd if=/dev/urandom of=test${i} bs=1K count=90
dd if=/dev/urandom of=test_2_${i} bs=1K count=90
"""
}
workflow {
channel.of(1) | test
}