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

Function getPath

MergePaths/MergePaths.cpp:313–322  ·  view source on GitHub ↗

Return the specified path. */

Source from the content-addressed store, hash-verified

311
312/** Return the specified path. */
313static ContigPath
314getPath(const ContigPathMap& paths, ContigNode u)
315{
316 ContigPathMap::const_iterator it = paths.find(u.contigIndex());
317 assert(it != paths.end());
318 ContigPath path = it->second;
319 if (u.sense())
320 reverseComplement(path.begin(), path.end());
321 return path;
322}
323
324/** Find the overlaps between paths and add edges to the graph. */
325static void

Callers 3

addMissingEdgesFunction · 0.70
removeSmallOverlapsFunction · 0.70
assemblyStatsToDbMethod · 0.50

Calls 6

contigIndexMethod · 0.80
senseMethod · 0.80
reverseComplementFunction · 0.50
findMethod · 0.45
endMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected