aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzsloan2021-12-13 21:18:57 +0000
committerzsloan2021-12-13 15:23:01 -0600
commit522214bd2edf83e68a94ed5fd0d891548cacf34f (patch)
tree7c3fffd24cdc7127a9af6ec93c99b95f88316788
parent374ee9ff1e975dd14cea3a4a35a5950880db7225 (diff)
downloadgenenetwork2-522214bd2edf83e68a94ed5fd0d891548cacf34f.tar.gz
Fixes issue that caused LRS searches that specify position to not work properly; the queries had to be changed after integrating the change that also pulls the Max LRS info in the original query
-rw-r--r--wqflask/wqflask/do_search.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/wqflask/wqflask/do_search.py b/wqflask/wqflask/do_search.py
index 6b8dfa41..99272ee3 100644
--- a/wqflask/wqflask/do_search.py
+++ b/wqflask/wqflask/do_search.py
@@ -515,10 +515,7 @@ class LrsSearch(DoSearch):
self.search_term = converted_search_term
- if len(self.search_term) > 2:
- from_clause = ", Geno"
- else:
- from_clause = ""
+ from_clause = ""
return from_clause