add nextflow d30e48d
This commit is contained in:
21
nextflow/tests/publish-s3-kms.nf
Normal file
21
nextflow/tests/publish-s3-kms.nf
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
params.outdir = 'results'
|
||||
|
||||
process my_process {
|
||||
publishDir params.outdir
|
||||
|
||||
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