Skip to content
Snippets Groups Projects
Commit 2294a50d authored by Puriney's avatar Puriney
Browse files

:pill: fixing aQual is nonessential and conflicts with ALN_QUAL_MIN=0

Revert ":pill: fix corner case where alignment has no aQual score"

This reverts commit c4effa6d.
parent 1a353cb0
Branches master
No related merge requests found
......@@ -63,7 +63,7 @@ def count_umi(sam_fpath, features, stranded='yes',
except KeyError:
pass
if not aln.aQual or aln.aQual < accept_aln_qual_min:
if aln.aQual < accept_aln_qual_min:
aln_cnt["_low_map_qual"] += 1
continue
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment