Skip to content

Commit

Permalink
closes #27 - fix F2 detection in methods.config and updated CHANGELOG…
Browse files Browse the repository at this point in the history
….md and nextflow.config (#32)

Co-authored-by: Mootor <mmootor@ip-0A125235.rhxrlfvjyzbupc03cc22jkch3c.xx.internal.cloudapp.net>
  • Loading branch information
Faizal-Eeman and Mootor authored Jun 30, 2022
1 parent ca2f64b commit 4da6d8b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
---

## [Unreleased]
### Changed
- Fix F2 detection in Line 111 of methods.config

---

Expand All @@ -34,4 +36,4 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Add option to specify `map_qual`, `min_clique_size`, and `mad_cutoff` Delly filters to reduce the runtime.
- Use BCFtools to automatically generate the samples.tsv that is needed by the sSV filtering (see https://github.com/dellytools/delly).

---
---
2 changes: 1 addition & 1 deletion pipeline/config/methods.config
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,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
2 changes: 1 addition & 1 deletion pipeline/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ manifest {
name = "call-sSV"
mainScript = "call-sSV.nf"
nextflowVersion = ">=20.07.1"
author = "Yu Pan, Ghouse Mohammed"
author = "Yu Pan, Ghouse Mohammed, Mohammed Faizal Eeman Mootor"
homePage = "https://github.com/uclahs-cds/pipeline-call-sSV"
description = "A pipeline to call somatic SVs utilizing Delly"
version = "2.0.0"
Expand Down

0 comments on commit 4da6d8b

Please sign in to comment.