mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
17 lines
509 B
Text
17 lines
509 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { BCFTOOLS_BGZIP } from '../../../../software/bcftools/bgzip/main.nf' addParams( options: [:] )
|
||
|
include { BCFTOOLS_TABIX } from '../../../../software/bcftools/tabix/main.nf' addParams( options: [:] )
|
||
|
|
||
|
workflow test_bcftools_tabix {
|
||
|
|
||
|
def input = []
|
||
|
input = [ [ id:'test' ], // meta map
|
||
|
file("${launchDir}/tests/data/vcf/test.vcf", checkIfExists: true) ]
|
||
|
|
||
|
BCFTOOLS_BGZIP ( input )
|
||
|
BCFTOOLS_TABIX ( BCFTOOLS_BGZIP.out.vcf )
|
||
|
}
|