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

14 lines
288 B
Text
Raw Normal View History

2021-02-09 09:05:55 +00:00
#!/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 )
}