mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
6e7c0e945b
* added vcf2db * fix test.yml * possible fix for failing tests * fix version number * fix test.yml * removed some comments
16 lines
436 B
Text
16 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 )
|
|
}
|