Skip to content

Commit

Permalink
Merge pull request #947 from mmoisse/patch-3
Browse files Browse the repository at this point in the history
Fix for #946
  • Loading branch information
brentp authored Apr 28, 2020
2 parents 79c5b02 + f435524 commit d393bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gemini/gim.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def query(self):
query = sql_utils.ensure_columns(query, ['variant_id', 'gene'])
# add any non-genotype column limits to the where clause
if self.args.filter:
query += " WHERE " + self.args.filter
query += " WHERE (" + self.args.filter + ")"

if hasattr(self.args, 'X'):
if self.args.X == []:
Expand Down

0 comments on commit d393bf3

Please sign in to comment.