nf-core_modules/tests/modules/haplocheck/main.nf
2022-06-08 09:08:59 -03:00

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 )
}