@@ -9,17 +9,19 @@ GraphIO provides support to [Graphs.jl](https://github.com/JuliaGraphs/Graphs.jl
9
9
10
10
Currently, the following functionality is provided:
11
11
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.
23
25
24
26
Graphs are read using either the ` loadgraph ` function or, for formats that support multiple graphs in a single file,
25
27
the ` loadgraphs ` functions. ` loadgraph ` returns a Graph object, while ` loadgraphs ` returns a dictionary of Graph objects.
0 commit comments