Skip to content

Commit

Permalink
fixes an issue where alignment trimming ended prematurely
Browse files Browse the repository at this point in the history
  • Loading branch information
fethalen committed Apr 18, 2024
1 parent efd5617 commit d9e0163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/alignmentconcatenation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ function maskalignment(
alignmentend = last(anchors).seqpos

for (position, letters) in enumerate(alignment)
position > alignmentend && break
# position > alignmentend && break
(queryletter, refletter) = letters
if ((!retainstops && queryletter == AA_Term) ||
(!retainambiguous && isambiguous(queryletter)) ||
Expand Down

0 comments on commit d9e0163

Please sign in to comment.