aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2021-10-19 05:15:07 +0000
committerzsloan2021-10-19 05:15:07 +0000
commit12b72d28b28ede3e891afa2e679570a27110a094 (patch)
treeddeceeb71ae8017bf9aeb2bf7d666526b2e49d47 /wqflask
parent06164b62cebfe509a80b2c603630e3bbb0ba7924 (diff)
downloadgenenetwork2-12b72d28b28ede3e891afa2e679570a27110a094.tar.gz
Fixed bug where the record ID for ProbeSet traits wasn't being pulled from the correct position in the query results
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/search_results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/search_results.py b/wqflask/wqflask/search_results.py
index 61970e7e..f8ecd178 100644
--- a/wqflask/wqflask/search_results.py
+++ b/wqflask/wqflask/search_results.py
@@ -112,7 +112,7 @@ class SearchResultPage:
trait_dict = {}
trait_dict['index'] = index + 1
- trait_dict['name'] = result[0]
+ trait_dict['name'] = result[2]
#ZS: Check permissions on a trait-by-trait basis for phenotype traits
if self.dataset.type == "Publish":