Implementing this method would be a huge help to me.
Right now I see:
selectMethod("addGraphToGraph", "CytoscapeWindowClass")
Method Definition:
function (obj, other.graph) {}
Perhaps a good start would be to add
message("not yet implemented")
followed by a real implementation when you can.
For background: this method is really valuable because the Bioc graph class does not support multiple edges between two nodes. In that sense, the graph class (and the graphNEL derived class) are true to the formal definition of a mathematical graph. But practically, this restriction makes it difficult to represent biological networks. The cytoscape network data structure -does- support multiple edges between nodes. Thus "addGraphToGraph" allows us to create multiple true graphs (just one edge between nodes) and then combine them in Cytoscape.
Implementing this method would be a huge help to me.
Right now I see:
selectMethod("addGraphToGraph", "CytoscapeWindowClass") Method Definition: function (obj, other.graph) {}
Perhaps a good start would be to add message("not yet implemented") followed by a real implementation when you can.
For background: this method is really valuable because the Bioc graph class does not support multiple edges between two nodes. In that sense, the graph class (and the graphNEL derived class) are true to the formal definition of a mathematical graph. But practically, this restriction makes it difficult to represent biological networks. The cytoscape network data structure -does- support multiple edges between nodes. Thus "addGraphToGraph" allows us to create multiple true graphs (just one edge between nodes) and then combine them in Cytoscape.
Thanks!