mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
14 lines
368 B
Text
14 lines
368 B
Text
|
#!/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 )
|
||
|
}
|