nf-core_modules/tests/software/untar/main.nf

12 lines
268 B
Text
Raw Normal View History

2021-02-09 10:50:32 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { UNTAR } from '../../../software/untar/main.nf' addParams( options: [:] )
workflow test_untar {
input = file("${launchDir}/tests/data/generic/test.txt.tar.gz", checkIfExists: true)
2021-02-09 10:50:32 +00:00
UNTAR ( input )
}