You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nf-core_modules/tests/modules/haplogrep2/classify/main.nf

17 lines
408 B
Plaintext

#!/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 )
}