GraphIO.jl
GraphIO.jl copied to clipboard
Graph IO functionality for various formats.
It would be great to extend loadgraph functionality to support reading a graph in the EdgeList format but with weights specified, i.e. [source, dest, weight] for each edge. This could...
Switches from Travis to GitHub Actions CI and updates *ParserCombinator.jl* depenency ~~(requires andrewcooke/ParserCombinator.jl#33 to be merged and the new 2.1.0 version released)~~.
Hi! I'm working on a project whereby I'm loading a GML file which includes node meta data, roughly in the following format; ``` node [ id 0 type "Person" age...
@JuliaRegistrator register
When using `GMLFormat`, the following warning is given. ``` ┌ Warning: `GraphIO.GMLFormat` has been moved to submodule `GraphIO.GML` and needs `ParserCombinator.jl` to be imported first. I.e. use │ using ParserCombinator...
Right know, `GraphIO` can only read dot-graphs. It would be good if we also could write these. The we could use the GraphViz for plotting. While the dot-format has a...
This extends the export to Metagraphs. I also add Project.tom. I would appreciate little shepherding to finish this to a PR.
Sometimes you want to build a graph from an edgelist file, but don't have 2X memory lying around. So you should mmap the edgelist and then build the graph. Here...
Do you, or would you, support reading graphs specified in a Newick format? https://en.wikipedia.org/wiki/Newick_format ? Perhaps in the context of MetaGraphs (as the Newick format contains some metadata)?
For example, it entirely unclear how to load graph6 format files by reading it now.