如何将 Cytoscape 与 JanusGraph 0.2 集成?
How to integrate Cytoscape with JanusGraph 0.2?
JanusGraph官网提供了一些图形可视化工具。 Cytoscape 就是其中之一。我想用 Cytoscape 可视化我的图形数据。我不知道如何将 Cytoscape 与 JanusGraph 集成。有人可以提供一些如何将 Cytoscape 与 JanusGraph 集成的信息吗?
GraphML is the IO format of choice when integrating with other graph oriented tools, like visualization packages. Simple export your graph to that format as described in the Apache TinkerPop documentation:
graph.io(graphml()).writeGraph("export.xml")
通过 File | Import
选项将其导入 Cytoscape 3。如果我没记错的话,使用 Cytoscape 2 你需要 GraphML Reader installed. As with any visualization tool the size of the graph you intend to visualize will be constrained by the amount of memory that you have. So, if you have a large graph, you will like wish to subgraph 它用于导出,这样你就可以只看到你关心的部分。
JanusGraph官网提供了一些图形可视化工具。 Cytoscape 就是其中之一。我想用 Cytoscape 可视化我的图形数据。我不知道如何将 Cytoscape 与 JanusGraph 集成。有人可以提供一些如何将 Cytoscape 与 JanusGraph 集成的信息吗?
GraphML is the IO format of choice when integrating with other graph oriented tools, like visualization packages. Simple export your graph to that format as described in the Apache TinkerPop documentation:
graph.io(graphml()).writeGraph("export.xml")
通过 File | Import
选项将其导入 Cytoscape 3。如果我没记错的话,使用 Cytoscape 2 你需要 GraphML Reader installed. As with any visualization tool the size of the graph you intend to visualize will be constrained by the amount of memory that you have. So, if you have a large graph, you will like wish to subgraph 它用于导出,这样你就可以只看到你关心的部分。