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

Function getNumEroded

Assembly/ErodeAlgorithm.h:49–57  ·  view source on GitHub ↗

Return the number of k-mer that have been eroded. */

Source from the content-addressed store, hash-verified

47
48/** Return the number of k-mer that have been eroded. */
49static inline
50size_t getNumEroded()
51{
52 size_t numEroded = g_numEroded;
53 g_numEroded = 0;
54 tempCounter[0] += numEroded;
55 logger(0) << "Eroded " << numEroded << " tips.\n";
56 return numEroded;
57}
58
59/** Consider the specified k-mer for erosion.
60 * @return the number of k-mer eroded, zero or one

Callers 3

runMethod · 0.85
controlErodeMethod · 0.85
erodeEndsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected