Uses of Interface
org.cytoscape.model.subnetwork.CySubNetwork
-
Packages that use CySubNetwork Package Description org.cytoscape.model.subnetwork This package contains rootnetwork and subnetwork extensions to the CyNetwork interface that provide a more complex meta-network data model. -
-
Uses of CySubNetwork in org.cytoscape.model.subnetwork
Methods in org.cytoscape.model.subnetwork that return CySubNetwork Modifier and Type Method Description CySubNetwork
CyRootNetwork. addSubNetwork()
Create an emptyCySubNetwork
.CySubNetwork
CyRootNetwork. addSubNetwork(Iterable<CyNode> nodes, Iterable<CyEdge> edges)
CySubNetwork
CyRootNetwork. addSubNetwork(Iterable<CyNode> nodes, Iterable<CyEdge> edges, SavePolicy policy)
CySubNetwork
CyRootNetwork. addSubNetwork(SavePolicy policy)
Create an emptyCySubNetwork
which can have a different save policy from that of this root network, as long as the root network's policy is notSavePolicy.DO_NOT_SAVE
.CySubNetwork
CyRootNetwork. getBaseNetwork()
Methods in org.cytoscape.model.subnetwork that return types with arguments of type CySubNetwork Modifier and Type Method Description List<CySubNetwork>
CyRootNetwork. getSubNetworkList()
Will return A list of allCySubNetwork
s contained in this root network.Methods in org.cytoscape.model.subnetwork with parameters of type CySubNetwork Modifier and Type Method Description void
CyRootNetwork. removeSubNetwork(CySubNetwork sub)
Removes the subnetwork from the root network, but not the nodes and edges contained in the subnetwork.
-