nf-core_modules/tests/modules/snpeff/main.nf
Maxime U. Garcia d8bef6057b
update snpeff to 5.1 and cache up to 105 (#1877)
* update snpeff to 5.1 and cache up to 105

* update dm5checksum
2022-07-13 15:16:21 +02:00

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", [] )
}