Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-steinegger committed Apr 24, 2019
1 parent 8127bd2 commit 30fee26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/alignment/StripedSmithWaterman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ SmithWaterman::cigar * SmithWaterman::banded_sw(const int *db_sequence, const in
l = 0; // record length of current cigar
op = prev_op = 'M';
temp2 = 2; // h
while (LIKELY(i > 0)) {
while (LIKELY(i > 0) || LIKELY(j > 0)) {
set_d(temp1, band_width, i, j, temp2);
switch (direction_line[temp1]) {
case 1:
Expand Down

0 comments on commit 30fee26

Please sign in to comment.