add nextflow d30e48d
This commit is contained in:
19
nextflow/tests-v1/publish-s3.nf
Normal file
19
nextflow/tests-v1/publish-s3.nf
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user