aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzsloan2020-10-21 15:48:17 -0500
committerzsloan2020-10-21 15:48:17 -0500
commite2b803a0721ef8589b304661d1420967c419003d (patch)
tree429f2fda3d0b232aba95ea69e2a20ddc308ab09c
parent09a80c440daeda7f33cb1930cbff964a012bf5b6 (diff)
downloadgenenetwork2-e2b803a0721ef8589b304661d1420967c419003d.tar.gz
Removed code setting the maximum tick value to 1.15* the max LRS/LOD if permutations aren't used
-rw-r--r--wqflask/wqflask/marker_regression/display_mapping_results.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/wqflask/wqflask/marker_regression/display_mapping_results.py b/wqflask/wqflask/marker_regression/display_mapping_results.py
index a74f87bd..c364c0db 100644
--- a/wqflask/wqflask/marker_regression/display_mapping_results.py
+++ b/wqflask/wqflask/marker_regression/display_mapping_results.py
@@ -2075,8 +2075,6 @@ class DisplayMappingResults(object):
if self.permChecked and self.nperm > 0 and not self.multipleInterval:
LRS_LOD_Max = max(self.significant, LRS_LOD_Max)
- else:
- LRS_LOD_Max = 1.15*LRS_LOD_Max
#genotype trait will give infinite LRS
LRS_LOD_Max = min(LRS_LOD_Max, webqtlConfig.MAXLRS)