Skip to content

Commit

Permalink
Properly print prefiltered variants
Browse files Browse the repository at this point in the history
Bug introduced by #147, fixes #155
  • Loading branch information
mgalardini committed May 25, 2021
1 parent ebc3419 commit 8d8a5de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyseer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def main():
prefilter += 1
if options.print_filtered:
printed += 1
print(format_output(ret,
print(format_output(x,
lineage_dict,
model,
options.print_samples))
Expand All @@ -561,7 +561,7 @@ def main():
prefilter += 1
if options.print_filtered:
printed += 1
print(format_output(ret,
print(format_output(x,
lineage_dict,
model,
options.print_samples))
Expand Down Expand Up @@ -771,7 +771,7 @@ def main():
prefilter += 1
if options.print_filtered:
printed += 1
print(format_output(ret,
print(format_output(x,
lineage_dict,
model,
options.print_samples))
Expand Down

0 comments on commit 8d8a5de

Please sign in to comment.