I'm trying to illustrate a huge graph that I created in NetworkX
in with Python
using Cytoscape
for analyzing connections. I write NetworkX
graph into .gml
format file and then open it with Cytoscape
.
However, some of the nodes are missing connections!
For example, I have an edge between node '50026'
and 'con_10_2362'
, as well as '50026'
, 'con_10_1037'
.
But when I'm looking at the Cytoscape
model, the nodes '50026'
and 'con_10_2362'
are not connected! Neither on the plot nor in in data table.
When I illustrate the graph as .htlm
file with pyvis
, nodes are connected there correctly.
I would like to use pyvis
, but in Cytoscape
I can drag nodes and follow different paths and move nodes by mouse which I cannot in .htlm
. My guess is that there is something happens during writing or reading .gml file. Has someone ever ecnountered that issue?