mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
f44e6c74b4
* nf-core create * svdb merge module and test * remove to-do from test.yml * version * update meta.yml * add stub * add when
16 lines
476 B
Text
16 lines
476 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SVDB_MERGE } from '../../../../modules/svdb/merge/main.nf'
|
|
|
|
workflow test_svdb_merge {
|
|
|
|
input = [ [ id:'test' ], // meta map
|
|
[ file(params.test_data['sarscov2']['illumina']['test_vcf'], checkIfExists: true),
|
|
file(params.test_data['sarscov2']['illumina']['test2_vcf'], checkIfExists: true) ]
|
|
]
|
|
priority = [ 'tiddit', 'cnvnator']
|
|
|
|
SVDB_MERGE ( input, priority )
|
|
}
|