mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
55bee0b02e
* add module for hpsuisero * Update meta.yml * Update main.nf Co-authored-by: Sateesh <33637490+sateeshperi@users.noreply.github.com>
15 lines
357 B
Text
15 lines
357 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { HPSUISSERO } from '../../../modules/hpsuissero/main.nf'
|
|
|
|
workflow test_hpsuissero {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['haemophilus_influenzae']['genome']['genome_fna_gz'], checkIfExists: true)
|
|
]
|
|
|
|
HPSUISSERO ( input )
|
|
}
|