nf-core_modules/tests/modules/mlst/main.nf

14 lines
368 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { MLST } from '../../../modules/mlst/main.nf' addParams( options: [:] )
workflow test_mlst {
input = [ [ id:'test', single_end:false ], // meta map
file("https://raw.githubusercontent.com/nf-core/test-datasets/bactmap/genome/NCTC13799.fna", checkIfExists: true) ]
MLST ( input )
}