mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
19 lines
487 B
Text
19 lines
487 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { SVDB_QUERY } from '../../../../modules/svdb/query/main.nf'
|
||
|
|
||
|
workflow test_svdb_query {
|
||
|
|
||
|
input = [ [ id:'test' ], // meta map
|
||
|
[ file(params.test_data['homo_sapiens']['illumina']['test_sv_vcf'], checkIfExists: true) ]
|
||
|
]
|
||
|
|
||
|
vcf_db = [
|
||
|
file(params.test_data['homo_sapiens']['genome']['gnomad_r2_1_1_sv_vcf_gz'], checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
SVDB_QUERY ( input, vcf_db )
|
||
|
}
|