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

16 lines
353 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SSUISSERO } from '../../../modules/ssuissero/main.nf'
workflow test_ssuissero {
input = [
[ id:'test', single_end:false ], // meta map
file(params.test_data['haemophilus_influenzae']['genome']['genome_fna_gz'], checkIfExists: true)
]
SSUISSERO ( input )
}