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,34 @@
#!/usr/bin/env nextflow
process foo {
output:
path('one.txt', arity: '1')
path('pair_*.txt', arity: '2')
path('many_*.txt', arity: '1..*')
script:
"""
echo 'one' > one.txt
echo 'pair_1' > pair_1.txt
echo 'pair_2' > pair_2.txt
echo 'many_1' > many_1.txt
echo 'many_2' > many_2.txt
echo 'many_3' > many_3.txt
"""
}
process bar {
input:
path('one.txt', arity: '1')
path('pair_*.txt', arity: '2')
path('many_*.txt', arity: '1..*')
script:
"""
cat one.txt
cat pair_*.txt
cat many_*.txt
"""
}
workflow {
foo | bar
}