aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2019-04-05 14:57:37 -0500
committerzsloan2019-04-05 14:57:37 -0500
commit115aa88a95eab8f8e5c5c41f6fbb552e322314ae (patch)
treed18be862a757a9c829a5e76709fd56cd14e71745 /wqflask
parent91147b36c65e742d9b7f2fda95fb5969e25f6e34 (diff)
downloadgenenetwork2-115aa88a95eab8f8e5c5c41f6fbb552e322314ae.tar.gz
Fixed issue where Max LRS column displayed the mean in global search results
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/gsearch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/gsearch.py b/wqflask/wqflask/gsearch.py
index 56769112..287ffde2 100644
--- a/wqflask/wqflask/gsearch.py
+++ b/wqflask/wqflask/gsearch.py
@@ -79,7 +79,7 @@ class GSearch(object):
this_trait['mean'] = '%.3f' % line[10]
this_trait['LRS_score_repr'] = "N/A"
if line[11] != "" and line[11] != None:
- this_trait['LRS_score_repr'] = '%3.1f' % line[10]
+ this_trait['LRS_score_repr'] = '%3.1f' % line[11]
this_trait['additive'] = "N/A"
if line[14] != "" and line[14] != None:
this_trait['additive'] = '%.3f' % line[14]