20 lines
252 B
Plaintext
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
|
|
}
|