Skip to content

Commit

Permalink
Merge pull request #452 from yech1990/master
Browse files Browse the repository at this point in the history
fix read1 error in writing filtered result
  • Loading branch information
IanSudbery authored Feb 1, 2021
2 parents 124f1dc + 580c21f commit a14dea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion umi_tools/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def main(argv=None):

if not new_read:
if options.filtered_out:
filtered_out.write(str(read1) + "\n")
filtered_out.write(str(read) + "\n")
continue

options.stdout.write(str(new_read) + "\n")
Expand Down

0 comments on commit a14dea7

Please sign in to comment.