add nextflow d30e48d

This commit is contained in:
2026-04-29 23:01:54 +02:00
parent d0b12d668d
commit 97cc9058d3
2840 changed files with 730250 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
process foo1 {
debug true
input: path x
input: path y
"""
echo "FOO1: ${x}; ${y}"
"""
}
process foo2 {
debug true
input: path x
input: path y
script:
"""
echo "FOO2: ${x}; ${y}"
"""
}
process foo3 {
debug true
input: path x
input: path y
shell:
'''
echo "FOO3: !{x}; !{y}"
'''
}
process foo4 {
debug true
input: path x
input: path y
script:
template("$baseDir/task-escape-path.sh")
}
workflow {
f1 = file('file AA.txt')
ch = Channel.fromPath(['file1.txt', 'file2.txt', 'fil BB.txt']).collect()
foo1(f1,ch)
foo2(f1,ch)
foo3(f1,ch)
foo4(f1,ch)
}