nf-core_modules/tests/modules/mlst/main.nf
Lee Katz f20c427339
added classic mlst module (#742)
* 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>
2021-10-05 20:49:46 +01:00

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 )
}