nf-core_modules/tests/modules/ssuissero/main.nf
Robert A. Petit III 9e0abcc443
add module for ssuisero (#1329)
* add module for ssuisero

* Update main.nf

* Update meta.yml

Co-authored-by: Sateesh <33637490+sateeshperi@users.noreply.github.com>
2022-02-27 20:04:03 -07:00

15 lines
353 B
Text

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