MCPcopy Create free account
hub / github.com/BirolLab/abyss / removePairedDBGInconsistentEdges

Function removePairedDBGInconsistentEdges

PairedDBG/PairedDBGAlgorithms.h:30–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28 */
29template <typename Graph>
30void
31removePairedDBGInconsistentEdges(Graph& g)
32{
33 assert(opt::kmerSize >= 2 * opt::singleKmerSize);
34 if (opt::kmerSize == 2 * opt::singleKmerSize) {
35 // The gap is exactly zero.
36 std::cerr << "Removed "
37 << removeEdgeIf(InconsistentPairedDBGEdge<Graph>(g), g)
38 << " inconsistent edges.\n";
39 }
40}
41
42#endif

Callers 1

assembleFunction · 0.85

Calls 1

removeEdgeIfFunction · 0.85

Tested by

no test coverage detected