Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
hmusta committed Oct 12, 2024
1 parent 97bad90 commit 64c4e12
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions metagraph/src/graph/representation/hash/dbg_sshash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,8 @@ DBGSSHash::DBGSSHash(const std::string &input_filename,
auto is_breakpoint = [this,canonical=std::move(canonical)](node_index node) {
if (canonical) {
return !canonical->has_single_incoming(node) || !canonical->has_single_incoming(reverse_complement(node));
} else if (mode_ == CANONICAL) {
return !has_single_incoming(node) || !has_single_incoming(reverse_complement(node));
} else {
return !has_single_incoming(node);
}
Expand Down

0 comments on commit 64c4e12

Please sign in to comment.