nf-core_modules/tests/modules/lissero/main.nf

14 lines
370 B
Text
Raw Normal View History

#!/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 )
}