You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It calculated h from beg to end.
Because of the applying band, sometimes beg can grow bigger than end.
Then skip i and run i+1 with the e-h value of i-1, not i's. It could cause misalignment.
So, I added break condition.
example)
w = 81, qlen = 72
if i = 165, i-w = 84 > beg = 84
end = 72
The text was updated successfully, but these errors were encountered:
Hi,
I make a pull request (#361 )for below issue.
It calculated h from beg to end.
Because of the applying band, sometimes beg can grow bigger than end.
Then skip i and run i+1 with the e-h value of i-1, not i's. It could cause misalignment.
So, I added break condition.
example)
w = 81, qlen = 72
if i = 165, i-w = 84 > beg = 84
end = 72
The text was updated successfully, but these errors were encountered: