diff options
author | zsloan | 2021-10-19 05:15:07 +0000 |
---|---|---|
committer | zsloan | 2021-10-19 05:15:07 +0000 |
commit | 12b72d28b28ede3e891afa2e679570a27110a094 (patch) | |
tree | ddeceeb71ae8017bf9aeb2bf7d666526b2e49d47 | |
parent | 06164b62cebfe509a80b2c603630e3bbb0ba7924 (diff) | |
download | genenetwork2-12b72d28b28ede3e891afa2e679570a27110a094.tar.gz |
Fixed bug where the record ID for ProbeSet traits wasn't being pulled from the correct position in the query results
-rw-r--r-- | wqflask/wqflask/search_results.py | 2 |
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": |