nf-core_modules/tests/modules/scoary/main.nf
Robert A. Petit III 22aa168622
add scoary module (#1034)
Co-authored-by: Gregor Sturm <mail@gregor-sturm.de>
2021-11-06 16:34:39 +01:00

15 lines
546 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SCOARY } from '../../../modules/scoary/main.nf' addParams( options: [:] )
workflow test_scoary {
input = [ [ id:'test', single_end:false ], // meta map
file("https://github.com/AdmiralenOla/Scoary/raw/master/scoary/exampledata/Gene_presence_absence.csv", checkIfExists: true),
file("https://github.com/AdmiralenOla/Scoary/raw/master/scoary/exampledata/Tetracycline_resistance.csv", checkIfExists: true) ]
tree = []
SCOARY ( input, tree)
}