See: Description
Interface | Description |
---|---|
CyColumn |
This class describes a column in a CyTable.
|
CyDisposable |
An interface for objects that require an explicit clean up at the end of
their lifecycle.
|
CyEdge |
An object that represents an edge within a network of nodes (vertices)
and edges.
|
CyIdentifiable |
CyIdentifiable is an interface that indicates that the implementing
object can be considered a key into a table.
|
CyNetwork |
CyNetwork is the primary interface for representing a network (graph)
data structure in Cytoscape.
|
CyNetworkFactory |
A singleton factory object used for instantiating CyNetwork
objects.
|
CyNetworkManager |
Basic access to networks and view in an instance of Cytoscape.
|
CyNetworkTableManager |
Provides access to all network-table relationships.
|
CyNode |
An object that represents a node (vertex) within a network
of nodes and edges.
|
CyRow |
This interface represents one row in a CyTable.
|
CyTable |
A simple representation of a table object consisting of rows
and columns.
|
CyTableFactory |
An interface describing a factory used for creating
CyTable objects. |
CyTableManager |
A singleton object for managing registered
CyTable s. |
CyTableMetadata |
A snapshot of information about a relationship shared between a CyTable
instance and an associated CyNetworks.
|
VirtualColumnInfo |
Information object for columns that stores extra Virtual Column information
if applicable.
|
Class | Description |
---|---|
CyTableUtil |
A collection of state-less, static utility methods provided to
simplify querying of table objects.
|
SUIDFactory |
This singleton class returns unique, positive SUID (session unique ID) values.
|
Enum | Description |
---|---|
CyEdge.Type |
The Type enum is used by methods in
CyNetwork to restrict
the edges that match a query. |
CyTable.Mutability |
Mutability of the table specifies whether or not it is able to be deleted..
|
CyTableFactory.InitialTableSize |
A description of the initial size of the table.
|
SavePolicy |
The SavePolicy of an object specifies whether or not it will be saved.
|
CyNetwork
) and table data
(CyTable
).
For the most part, the table and network data structures are independent. However, Cytoscape can link them together by matching table rows with network object identifiers. (Network object is a phrase that means nodes, edges, or networks.) In fact, Cytoscape stores its own internal network object metadata in tables using this linkage.
CyTable
is Cytoscape's data structure for tabular data. A CyTable
consists of columns (CyColumn
) and rows (CyRow
).
Columns have unique names and are typed. A column has a single type that is only defined when it is created. A column's type cannot be changed after it has been created. A column would have the string type if it stores text. Or it could have the integer type if it stores whole numbers. Besides strings and integers, columns can have other types, like booleans, floating point numbers, and lists.
You can get cell values in a table through a
CyRow
. Each row has a primary key,
which is the row's unique identifier. No two rows in the
same table have the same primary key.
In each table, there is one column designated for storing the primary keys of each row.
The column for the primary key and its type are specified when the
table is created (see CyTableFactory
).
You can share the contents of a column in one table with another table. These are called virtual columns. If cell values change in one virtual column, all other tables with that virtual column will change too. Virtual columns are used to share data between networks.
To add a virtual column, you will have to specify a couple things:
Each CyTable
has a unique identifier (SUID).
Network objects (CyNetwork
s, CyNode
s, and
CyEdge
s)
also have SUIDs that uniquely identify them. They all inherit from the same
interface, CyIdentifiable
.
SUIDs are similar to primary keys. SUIDs refer to network objects and CyTable
s,
whereas primary keys refer only to CyRow
s. You cannot specify SUIDs, and they
always have the type long
. In contrast to SUIDs, you can control the values of
primary keys and its type.
SUIDs do not change in the same session. When the user saves the session and opens it
up again later, SUIDs will stay the same. If the user imports the same network in two different
sessions (or imports the same network twice), the SUIDs of network objects are not
guaranteed to be the same for the same network objects.
CyTable
CyTable
s yourself. Instead, use
tables created for each network object. However, you may need to create separate CyTable
s
for storing tabular data not directly related to network objects. To create a
CyTable
, use CyTableFactory
.
Before creating a CyTable
, you need a CyTableFactory
. Getting a
CyTableFactory
depends on your type of app:
AbstractCySwingApp
or AbstractCyApp
.
You use one of these classes to get CyTableFactory
with
the CyAppAdapter.getCyTableFactory()
method.
CyTableFactory
by adding this to your CyActivator
(see AbstractCyActivator
):
CyTableFactory tableFactory = getService(bc, CyTableFactory.class);
where bc
is the OSGi BundleContext
.
CyNetwork
) is a collection
of nodes (CyNode
) and edges (CyEdge
) that connect nodes together.
An edge is defined as a link between two nodes. This implies that
nodes must exist in the network for the edge to exist. CyNetwork
s support
multigraphs,
which means that two nodes can be connected together by more than one edge. CyNetwork
s do not support
hypergraphs, so edges cannot connect more than two nodes.
CyNode
s have network pointers
(see CyNode.getNetworkPointer()
), which point to the node's nested network.
However, if you want to use nested networks, use the Groups API (org.cytoscape.group
).
CyRootNetwork
). Each root network has multiple
subnetworks (CySubNetwork
).
When you are using a CyNetwork
, you're really using a
CySubNetwork
.
Accessing root networks and subnetworks is hidden, because you usually do not need
to know about the root network.
Root networks and subnetworks are defined in this subpackage: org.cytoscape.model.subnetwork
.
All nodes and edges exist in the root network.
The subnetwork merely refers to a subset of nodes and edges in the root network.
Nodes and edges are shared amongst all of the subnetworks of the same root network.
The purpose of this structure is so that you can share table data across networks.
You can set up shared tables so that data values in one subnetwork (say for a node) are shared with the
same node in another subnetwork. This is useful for importing a lot of data (e.g. large expression data sets).
You can also "save" nodes and edges for later use by keeping them in the root network and removing them
from the subnetwork. This is used extensively
in the CyGroup
implementation, which builds a hierarchical structure onto Cytoscape's model.
When the first network is created by the CyNetworkFactory
, a new
CyRootNetwork
is first created. Each root network has a base network,
which is a CySubNetwork
that contains everything in the root network. The base network is
is returned by CyNetworkFactory.createNetwork()
.
To create a new
CySubNetwork
with the same CyNetwork
's CyRootNetwork
,
cast your CyNetwork
to
CySubNetwork
and call the CySubNetwork.getRootNetwork()
method:
CyRootNetwork rootNetwork = ((CySubNetwork)network).getRootNetwork();
CyRootNetwork
also provides methods to create and add new subnetworks
(see CyRootNetwork.addSubNetwork()
).
CyNetwork
, Cytoscape has several types of CyTable
s
that store information for each type of network object.
A row in each of these tables contains data for a single network object.
Here are the types of tables:
CyRootNetwork
and is
visible to the user.
When a new column is created in the default table, it is actually created in the shared table. This makes the column available to all networks in the same root. Use the private local table to create a column local to only one network.
CyNetwork.getTable(java.lang.Class<? extends org.cytoscape.model.CyIdentifiable>, java.lang.String)
method.
This method takes two parameters:
If you want... | Pass this in as the first parameter: |
network data |
CyNetwork.class
|
node data |
CyNode.class
|
edge data |
CyEdge.class
|
If you want... | Pass this in as the second parameter: |
the shared table |
CyRootNetwork.SHARED_ATTRS
|
the local table |
CyNetwork.LOCAL_ATTRS
|
the hidden table |
CyNetwork.HIDDEN_ATTRS
|
the default table |
CyNetwork.DEFAULT_ATTRS
|
CyNetwork
has three shortcut methods for getting default tables for each type of network object:
If you want the default table of... | Call this method: | Which is equivalent to: |
network data |
CyNetwork.getDefaultNetworkTable()
|
CyNetwork.getTable(CyNetwork.class, CyNetwork.DEFAULT_ATTRS)
|
node data |
CyNetwork.getDefaultNodeTable()
|
CyNetwork.getTable(CyNode.class, CyNetwork.DEFAULT_ATTRS)
|
edge data |
CyNetwork.getDefaultEdgeTable()
|
CyNetwork.getTable(CyEdge.class, CyNetwork.DEFAULT_ATTRS)
|
There are two ways of getting node and edge data from one of the tables listed above.
CyTable.getRow(java.lang.Object)
method.
Here's an example for getting the hidden attribtues of an edge:
CyTable hiddenTable = network.getTable(CyEdge.class, CyNetwork.HIDDEN_ATTRS);
CyRow edgeRow = hiddenTable.getRow(edge.getSUID());
Here, you pass in the SUID when using CyTable.getRow(java.lang.Object)
method, not the edge itself.
CyNetwork.getRow(org.cytoscape.model.CyIdentifiable, java.lang.String)
method. Here's the same example but
with using this method:
CyRow edgeRow = cyNetwork.getRow(edge, CyNetwork.HIDDEN_ATTRS);
Instead of passing in the SUID, you just pass in the edge itself.
CyTableManager
or CyNetworkManager
,
respectively, if you want Cytoscape to be aware of the network or table and for it to
be shown to the user.
You do not have to register networks or tables. The benefit of unregistered networks
and tables is that you can use
CyNetwork
and CyTable
as flexible data structures. You can use them in your
own internal algorithms and storage for intermediary data, where you do not want the user
to see them.
The CyNetworkManager
is the repository
for the information about registered networks. It provides mechanisms to add (CyNetworkManager.addNetwork(org.cytoscape.model.CyNetwork)
)
remove (CyNetworkManager.destroyNetwork(org.cytoscape.model.CyNetwork)
) and inquire about networks
(CyNetworkManager.getNetwork(long)
, CyNetworkManager.getNetworkSet()
, and
CyNetworkManager.networkExists(long)
). Similarly, the CyTableManager
is the repository for the information about registered tables.
org.cytoscape.model.events
)
Cytoscape 3 event listeners use the OSGi service model rather than
the older "addXXXListener" used by previous versions of Cytoscape. To listen for the addition of a new network, for example,
the App writer would provide a class that implements NetworkAddedListener
. This interface
provides a single method: NetworkAddedListener.handleEvent(org.cytoscape.model.events.NetworkAddedEvent)
, which takes as an argument
the NetworkAddedEvent
, which is fired by the CyNetworkManager
when
a new network is added (using CyNetworkManager.addNetwork(org.cytoscape.model.CyNetwork)
). In order for this listener
to be called, it must be registered as an OSGi service:
CyActivator
class.
AbstractCyApp
, then
the App developer should use the following code:
ServiceRegistrar serviceRegistrar = getCyServiceRegistrar(); // This comes from CyAppAdapter
XYZListener myListener = ...;
serviceRegistrar.registerService(myListener, XYZListener.class, new Properties());
CyNetwork.SELECTED
in the CyNetwork.DEFAULT_ATTRS
table for a node or edge. To listen for selection,
you listen for changes in this column:
public class MyListener implements RowsSetListener {
// Probably want a CyNetwork or list of CyNetworks as arguments here?
public MyListener() {
}
public void handleEvent(RowsSetEvent e) {
Collection<RowSetRecord> rowsSet = e.getColumnRecords(CyNetwork.SELECTED);
for (RowSetRecord record: rowsSet) {
CyRow row = record.getRow(); // Get the row that was set
boolean selected = ((Boolean)record.getValue()).booleanValue(); // What it was set to
// Take appropriate action. For example, might want to get
// the node or edge that was selected (or unselected)
// CyNode node = network.getNode(row.get(CyIdentifiable.SUID, Long.class));
}
}
}
Now register your listener:
ServiceRegistrar serviceRegistrar = getCyServiceRegistrar(); // This comes from CyAppAdapter
NetworkAddedListener myListener = new MyListener();
serviceRegistrar.registerService(myListener, RowsSetListener.class, new Properties());
CyNetwork.LOCAL_ATTRS
table for nodes and edges. As described above, this is
also available through the CyNetwork.DEFAULT_ATTRS
table. Because getting the state of nodes and edges
is such a common equirement, Cytoscape provides some utility methods in CyTableUtil
to make this easier, like
CyTableUtil.getEdgesInState(org.cytoscape.model.CyNetwork, java.lang.String, boolean)
and
CyTableUtil.getNodesInState(org.cytoscape.model.CyNetwork, java.lang.String, boolean)
. These methods can be used to get the list of selected nodes or edges.
For example, to get the list of selected nodes:
List<CyNode> selectedNodes = CyTableUtil.getNodesInState(network, CyNetwork#SELECTED, true);
Copyright 2011-2015 Cytoscape Consortium. All rights reserved.