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

Function outputPathGraph

MergePaths/MergePaths.cpp:727–736  ·  view source on GitHub ↗

Output the path overlap graph. */

Source from the content-addressed store, hash-verified

725
726/** Output the path overlap graph. */
727static void
728outputPathGraph(PathGraph& pathGraph)
729{
730 if (opt::graphPath.empty())
731 return;
732 ofstream out(opt::graphPath.c_str());
733 assert_good(out, opt::graphPath);
734 write_dot(out, pathGraph);
735 assert_good(out, opt::graphPath);
736}
737
738/** Sort and output the specified paths. */
739static void

Callers 1

buildPathGraphFunction · 0.85

Calls 3

assert_goodFunction · 0.85
emptyMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected