Skip to content

Commit

Permalink
Addressing MR review
Browse files Browse the repository at this point in the history
  • Loading branch information
vellamike committed Jan 17, 2024
1 parent 7c62595 commit 52631b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dorado/utils/sequence_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ std::tuple<int, int, std::vector<uint8_t>> realign_moves(const std::string& quer
query_sequence,
target_sequence); // We are going to compute the overlap between the two reads

auto failed_realignment = std::make_tuple(-1, -1, std::vector<uint8_t>());
const auto failed_realignment = std::make_tuple(-1, -1, std::vector<uint8_t>());
// No overlap was computed, so return the tuple (-1, -1) and an empty vector to indicate that no move table realignment was computed
if (!is_overlap) {
return failed_realignment;
Expand Down

0 comments on commit 52631b6

Please sign in to comment.