@@ -9,17 +9,19 @@ GraphIO provides support to [Graphs.jl](https://github.com/JuliaGraphs/Graphs.jl
99
1010Currently, the following functionality is provided:
1111
12- | Format | Read | Write | Multiple Graphs | Format Name | Comment |
13- | ----------- | ---- | ----- | --------------- | -------------- | ------------------------------------------------------------------------------------------- |
14- | EdgeList | ✓ | ✓ | | EdgeListFormat | a simple list of sources and dests separated by whitespace and/or comma, one pair per line. |
15- | [ GML] | ✓ | ✓ | ✓ | GMLFormat | |
16- | [ Graph6] | ✓ | ✓ | ✓ | Graph6Format | |
17- | [ GraphML] | ✓ | ✓ | ✓ | GraphMLFormat | |
18- | [ Pajek NET] | ✓ | ✓ | | NETFormat | |
19- | [ GEXF] | | ✓ | | GEXFFormat | |
20- | [ DOT] | ✓ | | ✓ | DOTFormat | |
21- | [ CDF] | ✓ | | | CDFFormat | |
22-
12+ | Format | Read | Write | Multiple Graphs | Format Name | Simple(Di)Graph | MetaGraphs.jl |
13+ | ----------- | ---- | ----- | --------------- | -------------- | --------------- | ------------- |
14+ | EdgeList [ ^ 1 ] | ✓ | ✓ | | EdgeListFormat | ✓ | |
15+ | [ GML] | ✓ | ✓ | ✓ | GMLFormat | ✓ | |
16+ | [ Graph6] | ✓ | ✓ | ✓ | Graph6Format | ✓ | |
17+ | [ GraphML] | ✓ | ✓ | ✓ | GraphMLFormat | ✓ | ✓ |
18+ | [ Pajek NET] | ✓ | ✓ | | NETFormat | ✓ | |
19+ | [ GEXF] | | ✓ | | GEXFFormat | ✓ | |
20+ | [ DOT] | ✓ | | ✓ | DOTFormat | ✓ | |
21+ | [ CDF] | ✓ | | | CDFFormat | ✓ | |
22+
23+
24+ [ ^ 1 ] : a simple list of sources and dests separated by whitespace and/or comma, one pair per line.
2325
2426Graphs are read using either the ` loadgraph ` function or, for formats that support multiple graphs in a single file,
2527the ` loadgraphs ` functions. ` loadgraph ` returns a Graph object, while ` loadgraphs ` returns a dictionary of Graph objects.
0 commit comments