mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 14:13:09 +00:00
17 lines
408 B
Text
17 lines
408 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { HAPLOGREP2_CLASSIFY } from '../../../../modules/haplogrep2/classify/main.nf'
|
||
|
|
||
|
workflow test_haplogrep2_classify {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test', single_end:false ], // meta map
|
||
|
file(params.test_data['homo_sapiens']['illumina']['test_mito_vcf'], checkIfExists: true)
|
||
|
]
|
||
|
format = 'vcf'
|
||
|
|
||
|
HAPLOGREP2_CLASSIFY ( input,format )
|
||
|
}
|