mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
15 lines
325 B
Text
15 lines
325 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { HAPLOCHECK } from '../../../modules/haplocheck/main.nf'
|
|
|
|
workflow test_haplocheck {
|
|
|
|
input = [
|
|
[ id:'test' ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_mito_vcf'], checkIfExists: true)
|
|
]
|
|
|
|
HAPLOCHECK ( input )
|
|
}
|