| 676 | } |
| 677 | |
| 678 | static bool |
| 679 | isSmallRepeat(const ContigNode& node) |
| 680 | { |
| 681 | unsigned r = g_vanillaBloom->get_k(); |
| 682 | return ( |
| 683 | !get(vertex_removed, g_contigGraph, node) && !node.sense() && |
| 684 | windowLongEnough(r, opt::minTests, getContigSize(node), MIN_MARGIN) && |
| 685 | (in_degree(node, g_contigGraph) > 0 && out_degree(node, g_contigGraph) > 0) && |
| 686 | (in_degree(node, g_contigGraph) > 1 || out_degree(node, g_contigGraph) > 1)); |
| 687 | } |
| 688 | |
| 689 | static Resolution |
| 690 | resolveRepeats() |
no test coverage detected