Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
remove redundant check in out-of-frame indels check
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Aug 4, 2023
1 parent 6d5cf2d commit 20fa4b2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions intact/intact.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,8 +610,6 @@ def get_indel_impact(alignment):
counter = 0
good = 0
for (x, y) in zip(alignment[0], alignment[1]):
if x == "-" and y == "-":
continue
if x == "-" and y != "-":
shift += 1
if x != "-" and y == "-":
Expand Down

0 comments on commit 20fa4b2

Please sign in to comment.