mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
26 lines
691 B
Text
26 lines
691 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { GVCFTOOLS_EXTRACTVARIANTS } from '../../../../modules/gvcftools/extractvariants/main.nf'
|
||
|
|
||
|
workflow test_gvcftools_extractvariants {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test', single_end:false ], // meta map
|
||
|
file(params.test_data['homo_sapiens']['illumina']['test_genome_vcf_gz'], checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
GVCFTOOLS_EXTRACTVARIANTS ( input )
|
||
|
}
|
||
|
|
||
|
workflow test_gvcftools_extractvariants_uncompressed {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test', single_end:false ], // meta map
|
||
|
file(params.test_data['homo_sapiens']['illumina']['test_genome_vcf'], checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
GVCFTOOLS_EXTRACTVARIANTS ( input )
|
||
|
}
|