mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
23 lines
861 B
Text
23 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 )
|
||
|
}
|