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

16 lines
326 B
Text
Raw Normal View History

2022-02-19 00:42:18 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { LEGSTA } from '../../../modules/legsta/main.nf'
workflow test_legsta {
input = [
[ id:'test', single_end:false ], // meta map
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
]
LEGSTA ( input )
}