I am looking for the documentation of which methods supported by a handle. Specifically how to given a handle in a graph get it's direct edges. I can find the link to the documentation at https://github.com/vgteam/libhandlegraph.
I am looking for the documentation of which methods supported by a handle. Specifically how to given a handle in a graph get it's direct edges. I can find the link to the documentation at https://github.com/vgteam/libhandlegraph.
The vg
Doxygen docs cover libhandlegraph.
Handles are opaque types with no methods of their own, but the main libhandlegraph class, HandleGraph, is documented at https://vgteam.github.io/vg/classhandlegraph_1_1HandleGraph.html
The edges of a handle are obtained from the follow_edges
method on the HandleGraph, which calls a callback with each reachable handle going either left or right: https://vgteam.github.io/vg/classhandlegraph_1_1HandleGraph.html#a4d21f30e62ad0b0c5919b2fe95e6f8aa
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.