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

Function buildPairedOverlapGraph

AdjList/AdjList.cpp:309–320  ·  view source on GitHub ↗

Build contig overlap graph for paired de Bruijn graph */

Source from the content-addressed store, hash-verified

307#if PAIRED_DBG
308/** Build contig overlap graph for paired de Bruijn graph */
309void buildPairedOverlapGraph(Graph& g, int argc, char** argv)
310{
311 Kmer::setLength(opt::singleKmerSize - 1);
312 KmerPair::setLength(opt::k - 1);
313
314 vector<KmerPair> prefixes;
315 unordered_map<KmerPair, vector<ContigNode> >
316 suffixMap(prefixes.size());
317
318 loadDataStructures(g, prefixes, suffixMap, argc, argv);
319 buildOverlapGraph(g, prefixes, suffixMap);
320}
321#endif
322
323int main(int argc, char** argv)

Callers 1

mainFunction · 0.85

Calls 3

loadDataStructuresFunction · 0.85
buildOverlapGraphFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected