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

Function copy_in_edges

Graph/ContigGraphAlgorithms.h:91–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89/** Add the incoming edges of vertex u to vertex v. */
90template<typename Graph>
91void
92copy_in_edges(Graph& g, typename Graph::vertex_descriptor u, typename Graph::vertex_descriptor v)
93{
94 copy_out_edges(g, get(vertex_complement, g, u), get(vertex_complement, g, v));
95}
96
97/** Assemble a path of unambigous out edges starting at vertex u.
98 * u itself is not copied to out.

Callers 1

mergeFunction · 0.85

Calls 2

copy_out_edgesFunction · 0.85
getFunction · 0.70

Tested by

no test coverage detected