mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
d8bef6057b
* update snpeff to 5.1 and cache up to 105 * update dm5checksum
14 lines
319 B
Text
14 lines
319 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SNPEFF } from '../../../modules/snpeff/main.nf'
|
|
|
|
workflow test_snpeff {
|
|
input = [
|
|
[ id:'test' ], // meta map
|
|
file(params.test_data['sarscov2']['illumina']['test_vcf'], checkIfExists: true)
|
|
]
|
|
|
|
SNPEFF ( input, "WBcel235.105", [] )
|
|
}
|