mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
653e9e05b1
* 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>
22 lines
861 B
Text
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 )
|
|
}
|