mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
073bbf1b26
* 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>
22 lines
709 B
Text
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 )
|
|
}
|