mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-10 23:59:39 -05:00
9 lines
271 B
Text
9 lines
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) )
|
||
|
}
|