Skip to content

Commit

Permalink
Fix in imperfect gap closing
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonBankevich committed Nov 27, 2024
1 parent e923824 commit 3ea919e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/projects/assembly_graph/assembly_graph.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ namespace ag {
}
}
AlignmentForm left_alignment = AlignmentForm::Equal(left_sub_alignment.queryLength()) + right_sub_alignment;
AlignmentForm right_alignment = left_sub_alignment.RC() + AlignmentForm::Equal(right_sub_alignment.targetLength());
AlignmentForm right_alignment = left_sub_alignment.Reverse() + AlignmentForm::Equal(right_sub_alignment.targetLength());
Edge &new_edge = addEdge(leftEdge.getStart(), rightEdge.getFinish(), new_seq);
new_edge.setCorporeal(false);
new_edge.rc().setCorporeal(false);
Expand Down

0 comments on commit 3ea919e

Please sign in to comment.