Files
ma/nextflow/tests/s3-public.nf
2026-04-29 23:01:54 +02:00

13 lines
184 B
Plaintext

process foo {
input:
path x
script:
"""
cat $x
"""
}
workflow {
def f0 = file('s3://ngi-igenomes/igenomes/Homo_sapiens/Ensembl/GRCh37/Annotation/README.txt')
foo(f0)
}