Cytoscape.getRootGraph().removeEdge((Edge) edge);
}
// Destroy the network attributes
CyAttributes nodeAttributes = Cytoscape.getNodeAttributes();
for (String name: nodeAttributes.getAttributeNames()){
nodeAttributes.deleteAttribute(name);
}
CyAttributes edgeAttributes = Cytoscape.getEdgeAttributes();
for (String name: edgeAttributes.getAttributeNames()){
edgeAttributes.deleteAttribute(name);
}