Files
ma/nextflow/tests/publish-s3.nf
2026-04-29 23:01:54 +02:00

20 lines
252 B
Plaintext

process my_process {
publishDir "s3://nextflow-ci/work/ci-test/publish-s3"
input:
val(param)
output:
file("HELLO.tsv")
script:
"""
echo "Hello, world" > HELLO.tsv
"""
}
workflow {
channel.of(1) | my_process
}