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

14 lines
291 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 {
def input = []
input = [ file("${launchDir}/tests/data/tar_gz/test.txt.tar.gz", checkIfExists: true) ]
UNTAR ( input )
}