Skip to content

Commit

Permalink
Fix F2 detection (#56)
Browse files Browse the repository at this point in the history
* closes #55 - fix F2 detection in `methods.config`

* Update CHANGELOG.md

Co-authored-by: Mootor <mmootor@ip-0A125213.rhxrlfvjyzbupc03cc22jkch3c.xx.internal.cloudapp.net>
  • Loading branch information
Faizal-Eeman and Mootor authored Jul 27, 2022
1 parent 0ba5d1e commit 269edaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ All notable changes to the call-gSV pipeline.
- Add GPL 2.0

### Fixed
- Fix Issue #55: fix F2 detection
- Fix Issue #32: remove option '--exclude' in delly cnv
- Fix Issue #33: should pass the mappability_map file instead of the exclusion file to regenotype_gCNV_Delly

Expand Down
2 changes: 1 addition & 1 deletion pipeline/config/methods.config
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ methods {
}
else {
// Check memory for F series node
if (node_memory_GB >= (node_cpus * 2 * 0.9) && node_memory_GB <= (node_cpus * 2)) {
if (node_memory_GB >= (node_cpus * 2 * 0.9 - 1) && node_memory_GB <= (node_cpus * 2)) {
includeConfig "${projectDir}/config/F${node_cpus}.config"
}
else {
Expand Down

0 comments on commit 269edaa

Please sign in to comment.