nf-core_modules/tests/software/untar/main.nf
2021-02-09 11:50:32 +01:00

13 lines
291 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { UNTAR } from '../../../software/untar/main.nf' addParams( options: [:] )
workflow test_untar {
def input = []
input = [ file("${launchDir}/tests/data/tar_gz/test.txt.tar.gz", checkIfExists: true) ]
UNTAR ( input )
}