mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
14 lines
305 B
Text
14 lines
305 B
Text
|
process {
|
||
|
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
|
||
|
withName: DRAGONFLYE {
|
||
|
ext.args = '--assembler miniasm --gsize 5000000'
|
||
|
}
|
||
|
|
||
|
withName: DRAGONFLYE_RAVEN {
|
||
|
ext.args = '--assembler raven --gsize 5000000'
|
||
|
}
|
||
|
|
||
|
}
|