Skip to content

Commit

Permalink
💊 fixing aQual is nonessential and conflicts with ALN_QUAL_MIN=0
Browse files Browse the repository at this point in the history
Revert ":pill: fix corner case where alignment has no aQual score"

This reverts commit c4effa6.
  • Loading branch information
Puriney committed Oct 12, 2018
1 parent 1a353cb commit 2294a50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion celseq2/count_umi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2294a50

Please sign in to comment.