nf-core_modules/tests/modules/haplocheck/main.nf

16 lines
325 B
Text
Raw Normal View History

2022-05-13 10:42:34 +00:00
#!/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)
2022-05-13 10:42:34 +00:00
]
HAPLOCHECK ( input )
}