nf-core_modules/tests/modules/lissero/main.nf
Robert A. Petit III c10f9eb817
add lissero module (#1026)
* add lissero module

* Update test.yml

Co-authored-by: Gregor Sturm <mail@gregor-sturm.de>
2021-11-08 20:52:07 +01:00

13 lines
370 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { LISSERO } from '../../../modules/lissero/main.nf' addParams( options: [:] )
workflow test_lissero {
input = [ [ id:'test', single_end:false ], // meta map
file("https://github.com/MDU-PHL/LisSero/raw/master/tests/test_seq/NC_002973.fna", checkIfExists: true) ]
LISSERO ( input )
}