nf-core_modules/tests/modules/mummer/main.nf
2021-11-15 16:53:41 +01:00

14 lines
444 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { MUMMER } from '../../../modules/mummer/main.nf' addParams( options: [:] )
workflow test_mummer {
input = [ [ id:'test', single_end:false ], // meta map
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true),
file(params.test_data['sarscov2']['genome']['transcriptome_fasta'], checkIfExists: true) ]
MUMMER ( input )
}