GraphIO.jl icon indicating copy to clipboard operation
GraphIO.jl copied to clipboard

Graph IO functionality for various formats.

Results 27 GraphIO.jl issues
Sort by recently updated
recently updated
newest added

Looking at [issue 35](https://github.com/JuliaGraphs/GraphIO.jl/issues/35), it appears the tacit convention is to take the graph type as an argument. However EdgeList only creates directed graphs as can be seen at [line...

as mentioned in #47. This PR enables support for `MetaGraphs` in `GraphML` format. It follows the paradigm of http://graphml.graphdrawing.org/ to define attributes in the graph. The following features are supported:...

DIMACS (or, rather, some extension of the official DIMACS) seems to be a fairly standard graph specification format. I especially see it for lists of graphs for computational challenge problems...

Remove conditional dependencies. ```julia # GraphIO alone julia> @time using GraphIO 1.376940 seconds (3.12 M allocations: 221.025 MiB, 2.51% gc time, 32.49% compilation time) ``` ```julia # Remove Requires and...

I would like to be able to read a metagraph from a graphML format. This means reading in all attributes and properties that a graphML file may contain, and storing...

Hello guys, Im trying to load a gml file, but I got some issues: `using LightGraphs, ParserCombinator, GraphIO graph = loadgraph("output.gml", "digraph", GraphIO.GML.GMLFormat())` When I execute the source code I...

I was trying to read in the `manhatten.graphml` file here with `loadgraph(...)` with the second `gname` argument hidden and got the `Graph graph not found` error. But the GraphML file...

Currently the DOT format is entirely excluded if ParserCombinator is not loaded. However, just saving a simple graph out to dot format has no dependency on parsing and should not...

At the moment, `loadgraph` creates a Directed Graph. A useful feature could be to have an argument to create an Undirected Graph?