mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
16 lines
398 B
Text
16 lines
398 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { IMPUTEME_VCFTOPRS } from '../../../../modules/imputeme/vcftoprs/main.nf' addParams( options: [:] )
|
||
|
|
||
|
workflow test_imputeme_vcftoprs {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test' ], // meta map
|
||
|
file(params.test_data['homo_sapiens']['genome']['syntheticvcf_short_vcf_gz'], checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
IMPUTEME_VCFTOPRS ( input )
|
||
|
}
|