mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 14:13:09 +00:00
cad9133c71
* feat added haplogrep classify * feat made module * fix added correct container * feat removed md5sum * fix trying to fix issue with version.yml * fix some small things * fix version * fix on meta.yml * fix stub run * fix Apply suggestions from code review Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> * fix Apply suggestions from code review2 Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com> Co-authored-by: Taniguti <ltaniguti@gmail.com> Co-authored-by: Ramprasad Neethiraj <20065894+ramprasadn@users.noreply.github.com>
16 lines
408 B
Text
16 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 )
|
|
}
|