mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 02:58:17 +00:00
fix config
This commit is contained in:
parent
d3ddc2221a
commit
743e95c61b
1 changed files with 6 additions and 1 deletions
|
@ -2,7 +2,12 @@ process {
|
|||
|
||||
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||||
withName: BIOBAMBAM_BAMMERGE {
|
||||
ext.args = "md5=1 md5filename=test.md5 index=1 indexfilename=test.bam.bai"
|
||||
ext.args = [
|
||||
"md5=1",
|
||||
{"md5filename=${meta.id}.md5"},
|
||||
"index=1",
|
||||
{"indexfilename=${meta.id}.bam.bai"}
|
||||
].join(" ").trim()
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue