mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Merge branch 'master' into feat/hasta_update
This commit is contained in:
commit
9182b55acc
1 changed files with 8 additions and 2 deletions
|
@ -10,7 +10,7 @@ process {
|
||||||
withLabel:'sentieon' {
|
withLabel:'sentieon' {
|
||||||
beforeScript = { "export PATH=\$PATH:\$SENTIEON_INSTALL_DIR/sentieon-genomics-202112.02/bin" }
|
beforeScript = { "export PATH=\$PATH:\$SENTIEON_INSTALL_DIR/sentieon-genomics-202112.02/bin" }
|
||||||
}
|
}
|
||||||
withName: BCFTOOLS_VIEW {
|
withName: 'BCFTOOLS_VIEW' {
|
||||||
if (params.genome == 'GRCh37') {
|
if (params.genome == 'GRCh37') {
|
||||||
ext.args = '--output-type z --apply-filters PASS --exclude "INFO/clinical_genomics_mipAF > 0.40 | INFO/swegenAF > 0.40 | INFO/clingen_ngiAF > 0.40 | INFO/gnomad_svAF > 0.40 "'
|
ext.args = '--output-type z --apply-filters PASS --exclude "INFO/clinical_genomics_mipAF > 0.40 | INFO/swegenAF > 0.40 | INFO/clingen_ngiAF > 0.40 | INFO/gnomad_svAF > 0.40 "'
|
||||||
} else if (params.genome == 'GRCh38') {
|
} else if (params.genome == 'GRCh38') {
|
||||||
|
@ -20,7 +20,13 @@ process {
|
||||||
enabled: false,
|
enabled: false,
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Java memory fixes
|
||||||
withName:'QUALIMAP_BAMQC' {
|
withName:'QUALIMAP_BAMQC' {
|
||||||
ext.args = { "--java-mem-size=${task.memory.giga / 1.15 as long}G" }
|
clusterOptions = { "-A $params.priority ${params.clusterOptions ?: ''} ${task.memory ? "--mem ${task.memory.mega * 1.15 as long}M" : ''}" }
|
||||||
}
|
}
|
||||||
|
withName:'PICARD_MARKDUPLICATES' {
|
||||||
|
clusterOptions = { "-A $params.priority ${params.clusterOptions ?: ''} ${task.memory ? "--mem ${task.memory.mega * 1.15 as long}M" : ''}" }
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue