Skip to content

Commit

Permalink
Merge pull request #4425 from vgteam/lr-giraffe-missinsert
Browse files Browse the repository at this point in the history
Lr giraffe missinsert
  • Loading branch information
xchang1 authored Oct 25, 2024
2 parents 1221a0c + 1863c9e commit de2f21c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/minimizer_mapper_from_chains.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3197,7 +3197,7 @@ Alignment MinimizerMapper::find_chain_alignment(
if (stats) {
start_time = std::chrono::high_resolution_clock::now();
}
auto nodes_and_bases = MinimizerMapper::align_sequence_between_consistently((*here).graph_end(), (*next).graph_start(), path_length, max_gap_length, &this->gbwt_graph, this->get_regular_aligner(), link_aln, &aln.name(), this->max_dp_cells, this->choose_band_padding);
auto nodes_and_bases = MinimizerMapper::align_sequence_between_consistently((*here).graph_end(), (*next).graph_start(), path_length+max_gap_length, max_gap_length, &this->gbwt_graph, this->get_regular_aligner(), link_aln, &aln.name(), this->max_dp_cells, this->choose_band_padding);
if (stats) {
stop_time = std::chrono::high_resolution_clock::now();
if (nodes_and_bases.first > 0) {
Expand Down

1 comment on commit de2f21c

@adamnovak
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch lr-giraffe. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 17500 seconds

Please sign in to comment.