mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
2d38566eca
* fix: remove left-over unnecessary code * Add megan/rma2info * Attempt at fixing test * Right yml formatting * Get the versios reporting correct
16 lines
458 B
Text
16 lines
458 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { MEGAN_RMA2INFO } from '../../../../modules/megan/rma2info/main.nf'
|
|
|
|
workflow test_megan_rma2info {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file('https://github.com/nf-core/test-datasets/raw/a7e61654553887475a2f7178108587ecd9b54608/data/delete_me/malt/test.rma6', checkIfExists: true)
|
|
]
|
|
megan_summary = true
|
|
|
|
MEGAN_RMA2INFO ( input, megan_summary )
|
|
}
|