mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
1765225042
* feat: view is now in args2 so we can use sort * forgot one split_cpus * feat: update with new logic * fix: add more info * fix: remove split_cpus logic
9 lines
196 B
Text
9 lines
196 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
withName: BWA_MEM {
|
|
ext.args2 = { sort_bam ? "" : "-bh" }
|
|
}
|
|
|
|
}
|