Skip to content

Commit

Permalink
closes #946
Browse files Browse the repository at this point in the history
  • Loading branch information
brentp committed Apr 25, 2020
1 parent c3a321e commit 79c5b02
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 @@ -384,7 +384,7 @@ def query(self):
gt_ref_depths, gt_alt_depths, gt_quals" + \
" FROM variants " + \
" WHERE (%s) " % args.where
if args.filter: query += " AND " + args.filter
if args.filter: query += " AND (" + args.filter + ")"
# we need to order results by gene so that we can sweep through the results
return query + " ORDER BY chrom, gene"

Expand Down

0 comments on commit 79c5b02

Please sign in to comment.