mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
f20c427339
* added classic mlst module * removed nf-core TODO comments * included drpatelh suggestions * adjust version capture identation * update main to pass lint * follow output expected by test.yml * suggested prefix change from rpetit3 * Apply suggestions from code review Co-authored-by: Gregor Sturm <mail@gregor-sturm.de> Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
13 lines
368 B
Text
13 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 )
|
|
}
|