diff options
author | Artem Tarasov | 2015-06-20 18:54:32 +0300 |
---|---|---|
committer | Artem Tarasov | 2015-06-20 18:54:32 +0300 |
commit | de593bfa20ce7652dfeca08aefa35efd0c686dc9 (patch) | |
tree | 0179bd45f2b15aabc0a32c732559d6cf219ff02c /wqflask | |
parent | aca78aa6f8ca1dfc1bde8237a065bccf5ccf52c8 (diff) | |
download | genenetwork2-de593bfa20ce7652dfeca08aefa35efd0c686dc9.tar.gz |
fix genotype search
Diffstat (limited to 'wqflask')
-rwxr-xr-x | wqflask/wqflask/do_search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/do_search.py b/wqflask/wqflask/do_search.py index a42503c1..8c1b6730 100755 --- a/wqflask/wqflask/do_search.py +++ b/wqflask/wqflask/do_search.py @@ -394,7 +394,7 @@ class GenotypeSearch(DoSearch): # This adds a clause to the query that matches the search term # against each field in search_fields (above) - fields_clause = [] + where_clause = [] if "'" not in self.search_term[0]: self.search_term = "[[:<:]]" + self.search_term[0] + "[[:>:]]" |