mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
17 lines
436 B
Text
17 lines
436 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { VCF2DB } from '../../../modules/vcf2db/main.nf'
|
||
|
|
||
|
workflow test_vcf2db {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test', single_end:false ], // meta map
|
||
|
file(params.test_data['homo_sapiens']['genome']['justhusky_minimal_vcf_gz'], checkIfExists: true),
|
||
|
file(params.test_data['homo_sapiens']['genome']['justhusky_ped'], checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
VCF2DB ( input )
|
||
|
}
|