nf-core_modules/tests/modules/dragonflye/main.nf
Robert A. Petit III 653e9e05b1
add module for dragonflye (#633)
* add module for dragonflye

* fix tests for dragonflye

* Update test.yml

* Update meta.yml

* Update main.nf

* Update main.nf

* Update modules/dragonflye/meta.yml

Co-authored-by: Gregor Sturm <mail@gregor-sturm.de>
2021-08-16 11:51:30 +02:00

22 lines
861 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { DRAGONFLYE } from '../../../modules/dragonflye/main.nf' addParams( options: [args: '--assembler miniasm --gsize 5000000'] )
include { DRAGONFLYE as DRAGONFLYE_RAVEN } from '../../../modules/dragonflye/main.nf' addParams( options: [args: '--assembler raven --gsize 5000000'] )
workflow test_dragonflye {
input = [ [ id:'test', single_end:true ], // meta map
[ file("https://github.com/nf-core/test-datasets/raw/bacass/nanopore/subset15000.fq.gz", checkIfExists: true) ]
]
DRAGONFLYE ( input )
}
workflow test_dragonflye_raven {
input = [ [ id:'test', single_end:true ], // meta map
[ file("https://github.com/nf-core/test-datasets/raw/bacass/nanopore/subset15000.fq.gz", checkIfExists: true) ]
]
DRAGONFLYE_RAVEN ( input )
}