aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2023-06-06 17:59:33 +0000
committerzsloan2023-06-06 18:01:33 +0000
commit1b709fd550c2abf53cc4fae84eab1b179e94b63d (patch)
tree54cd9dc59842f47e8bb7330dc320096dd5774eb5 /wqflask
parent161abf23b0441e91dbbf1e0ae0e552307d48f2ef (diff)
downloadgenenetwork2-1b709fd550c2abf53cc4fae84eab1b179e94b63d.tar.gz
Add 1 to LRS_LOD_MAX in order to prevent situations where a tick is missing for the highest points on the manhattan plot
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/marker_regression/display_mapping_results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/marker_regression/display_mapping_results.py b/wqflask/wqflask/marker_regression/display_mapping_results.py
index f74060d2..bf89b0db 100644
--- a/wqflask/wqflask/marker_regression/display_mapping_results.py
+++ b/wqflask/wqflask/marker_regression/display_mapping_results.py
@@ -2403,7 +2403,7 @@ class DisplayMappingResults:
pass
else:
LRS_LOD_Max = max([result['lod_score']
- for result in self.qtlresults])
+ for result in self.qtlresults]) + 1
if self.LRS_LOD == "LRS":
LRS_LOD_Max = LRS_LOD_Max * self.LODFACTOR
if self.permChecked and self.nperm > 0 and not self.multipleInterval: