nf-core_modules/tests/software/gunzip/main.nf
2021-02-09 10:05:55 +01:00

13 lines
288 B
Text

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