Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonBankevich committed Nov 26, 2024
1 parent f306dcf commit 96adfc3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/projects/assembly_graph/assembly_graph.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -541,10 +541,12 @@ namespace ag {
AlignmentForm right_alignment = left_sub_alignment.RC() + 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);
this->fireMergeTipsToEdge(new_edge, leftEdge, rightEdge, left_alignment, right_alignment);
if(new_edge != new_edge.rc())
this->fireMergeTipsToEdge(new_edge.rc(), rightEdge.rc(), leftEdge.rc(), right_alignment.RC(), left_alignment.RC());
new_edge.setCorporeal(true);
new_edge.rc().setCorporeal(true);
return new_edge;
}

Expand Down

0 comments on commit 96adfc3

Please sign in to comment.