From 115aa88a95eab8f8e5c5c41f6fbb552e322314ae Mon Sep 17 00:00:00 2001 From: zsloan Date: Fri, 5 Apr 2019 14:57:37 -0500 Subject: Fixed issue where Max LRS column displayed the mean in global search results --- wqflask/wqflask/gsearch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- cgit v1.2.3