about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--wqflask/wqflask/marker_regression/marker_regression.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/wqflask/wqflask/marker_regression/marker_regression.py b/wqflask/wqflask/marker_regression/marker_regression.py
index 24292c35..9f2f06f3 100644
--- a/wqflask/wqflask/marker_regression/marker_regression.py
+++ b/wqflask/wqflask/marker_regression/marker_regression.py
@@ -84,7 +84,10 @@ class MarkerRegression(object):
             self.manhattan_plot = False
 
         self.maf = start_vars['maf'] # Minor allele frequency
-        self.use_loco = start_vars['use_loco']
+        if "use_loco" in start_vars:
+            self.use_loco = start_vars['use_loco']
+        else:
+            self.use_loco = None
         self.suggestive = ""
         self.significant = ""
         self.pair_scan = False # Initializing this since it is checked in views to determine which template to use