nf-core_modules/tests/modules/staphopiasccmec/main.nf
Robert A. Petit III 073bbf1b26
add staphopia-sccmec module (#702)
* add staphopia-sccmec module

* add additional test

* change output name

* Update main.nf

* Update test.yml

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2021-09-15 17:24:11 +01:00

22 lines
709 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { STAPHOPIASCCMEC } from '../../../modules/staphopiasccmec/main.nf' addParams( options: [:] )
include { STAPHOPIASCCMEC as STAPHOPIASCCMEC_HAMMING } from '../../../modules/staphopiasccmec/main.nf' addParams( options: [args: '--hamming'] )
workflow test_staphopiasccmec {
input = [ [ id:'test' ],
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true) ]
STAPHOPIASCCMEC ( input )
}
workflow test_staphopiasccmec_hamming {
input = [ [ id:'test' ],
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true) ]
STAPHOPIASCCMEC_HAMMING ( input )
}