nf-core_modules/tests/software/htslib/tabix/main.nf
2021-02-16 14:47:53 +01:00

9 lines
No EOL
271 B
Text

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