nf-core_modules/tests/software/htslib/tabix/main.nf

9 lines
271 B
Text
Raw Normal View History

2021-02-16 08:47:53 -05:00
#!/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) )
}