Open
Description
Is there an efficient way to read a GraphML file and produce a MetaGraph?
My use case: I have a file with vertices and edges, all with metadata. I can succesfully read the graph using
g = loadgraph(“calcGraph.graphml”,“graph”, GraphMLFormat())
but that ignores the key
and data
nodes. MetaGraphNext.jl doesn’t seem to have a function to read GraphML files.
Is there a way to read the GraphML, apart from using EzXML to read the GraphML file and building the MetaGraph myself? If not, what would be the most efficient and/or most Julian way to approach this?