aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2022-08-04 22:04:35 +0000
committerzsloan2022-12-21 13:04:07 -0600
commit7e4ac66bf55f222f87174178e0348e9c40a05b56 (patch)
tree10589d7a642d3d7570ea2fcdd2bc404ba8c58a6f /wqflask
parent6ecd008ab7cf7a11b0b051fc9e2dba575a919633 (diff)
downloadgenenetwork2-7e4ac66bf55f222f87174178e0348e9c40a05b56.tar.gz
Add homology band option to run_mapping.py
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/marker_regression/run_mapping.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/wqflask/wqflask/marker_regression/run_mapping.py b/wqflask/wqflask/marker_regression/run_mapping.py
index 8ca1faf5..b75774b2 100644
--- a/wqflask/wqflask/marker_regression/run_mapping.py
+++ b/wqflask/wqflask/marker_regression/run_mapping.py
@@ -152,7 +152,7 @@ class RunMapping:
self.lrsMax = start_vars['lrsMax']
if "haplotypeAnalystCheck" in start_vars:
self.haplotypeAnalystCheck = start_vars['haplotypeAnalystCheck']
- if "startMb" in start_vars: # ZS: This is to ensure showGenes, Legend, etc are checked the first time you open the mapping page, since startMb will only not be set during the first load
+ if "startMb" in start_vars: # This is to ensure showGenes, Legend, etc are checked the first time you open the mapping page, since startMb will only not be set during the first load
if "permCheck" in start_vars:
self.permCheck = "ON"
else:
@@ -166,6 +166,11 @@ class RunMapping:
else:
self.showSNP = False
+ if "showHomology" in start_vars:
+ self.showHomology = start_vars['showHomology']
+ else:
+ self.showHomology = False
+
if "showGenes" in start_vars:
self.showGenes = start_vars['showGenes']
else: