mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
11 lines
304 B
Text
11 lines
304 B
Text
|
process {
|
||
|
withName: glimpse_chunk {
|
||
|
ext.args = [
|
||
|
"--window-size 2000000",
|
||
|
"--buffer-size 200000"
|
||
|
].join(' ')
|
||
|
ext.prefix = { "${meta.id}" }
|
||
|
}
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
}
|