本文整理了Java中giny.model.Node.getIdentifier()
方法的一些代码示例,展示了Node.getIdentifier()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.getIdentifier()
方法的具体详情如下:
包路径:giny.model.Node
类名称:Node
方法名:getIdentifier
暂无
代码示例来源:origin: cytoscape.coreplugins/psi-mi
/**
* Create Hashkey for Edges.
*
* @param node1 First node.
* @param node2 Second node.
* @return HashKey.
*/
private String createEdgeKey(Node node1, Node node2, Interaction interaction) {
String node1Ident = node1.getIdentifier();
String node2Ident = node2.getIdentifier();
String interactionType = getInteractionTypeId(interaction);
return new String(node1Ident + interactionType + node2Ident);
}
代码示例来源:origin: cytoscape/application
private String buildStringQuery() {
final StringBuilder builder = new StringBuilder();
final Set<Node> selectedNodes = Cytoscape.getCurrentNetwork().getSelectedNodes();
for (Node node : selectedNodes) {
builder.append(node.getIdentifier() + " ");
}
return builder.toString();
}
代码示例来源:origin: cytoscape/application
/**
* Return all the terms in this ontology.<br>
*
* @return All ontology terms as Set object.
*/
public Set getTerms() {
Set<Term> terms = new HashSet<Term>();
Iterator nodeIt = ontologyGraph.nodesIterator();
while (nodeIt.hasNext()) {
final Node node = (Node) nodeIt.next();
final String id = node.getIdentifier();
final Term term = new OntologyTerm(node.getIdentifier(), this.name,
termAttr.getStringAttribute(id,
OBOTags.DEF.toString()));
terms.add(term);
}
return terms;
}
代码示例来源:origin: cytoscape/application
public SetNestedNetworkDialog(JFrame parent, boolean modal, NodeView nodeView) {
super(parent, "Set Nested Network for " + nodeView.getNode().getIdentifier(), modal);
init(nodeView);
}
代码示例来源:origin: cytoscape/application
private static final List<Object> getByPassedVisProps(final NodeView nv,
final List<VisualPropertyType> bypassedVPs)
{
final List<Object> bypassedProps = new ArrayList<Object>();
final CyAttributes nodeAttrs = Cytoscape.getNodeAttributes();
final String id = nv.getNode().getIdentifier();
for (final VisualPropertyType propType : bypassedVPs) {
final Object bypass = Appearance.getBypass(nodeAttrs, id, propType);
if (bypass != null)
bypassedProps.add(bypass);
}
return bypassedProps;
}
代码示例来源:origin: cytoscape/application
/**
* @param nodeView The clicked NodeView
* @param menu popup menu to add the Bypass menu
*/
public void addNodeContextMenuItems(NodeView nodeView, JPopupMenu menu) {
NodeBypass nb = new NodeBypass();
if (menu == null)
menu = new JPopupMenu();
/*
* Add Node ID as label.
*/
final String nodeID = nodeView.getNode().getIdentifier();
final JLabel nodeLabel = new JLabel(nodeID);
nodeLabel.setForeground(new Color(10, 50, 250, 150));
nodeLabel.setFont(new Font("SansSerif", Font.BOLD, 18));
nodeLabel.setBorder(new EmptyBorder(5, 10, 5, 5));
menu.add(nodeLabel);
menu.add(nb.addMenu(nodeView.getNode()));
}
}
代码示例来源:origin: cytoscape.coreplugins/equation-functions
/**
* @param args the function arguments which must be either one object of type Double or Long
* @return the result of the function evaluation which is the natural logarithm of the first argument
*/
public Object evaluateFunction(final Object[] args) {
final String edgeID = (String)args[0];
final CyEdge edge = Cytoscape.getRootGraph().getEdge(edgeID);
if (edge == null)
throw new IllegalArgumentException("\"" + edgeID + "\" is not a valid edge identifier!");
return edge.getTarget().getIdentifier();
}
}
代码示例来源:origin: cytoscape.coreplugins/equation-functions
/**
* @param args the function arguments which must be either one object of type Double or Long
* @return the result of the function evaluation which is the natural logarithm of the first argument
*/
public Object evaluateFunction(final Object[] args) {
final String edgeID = (String)args[0];
final CyEdge edge = Cytoscape.getRootGraph().getEdge(edgeID);
if (edge == null)
throw new IllegalArgumentException("\"" + edgeID + "\" is not a valid edge identifier!");
return edge.getSource().getIdentifier();
}
}
代码示例来源:origin: cytoscape.coreplugins/advanced-network-merge
private void prepare() {
CyAttributes cyAttributes = Cytoscape.getNodeAttributes();
if (!Arrays.asList(cyAttributes.getAttributeNames()).contains(
Semantics.CANONICAL_NAME)) {
List<Node> nodeList = Cytoscape.getCyNodesList();
int n = nodeList.size();
for (int i = 0; i < n; i++) {
String nodeID = nodeList.get(i).getIdentifier();
cyAttributes.setAttribute(nodeID, Semantics.CANONICAL_NAME,
nodeID);
}
}
cyAttributes = Cytoscape.getEdgeAttributes();
if (!Arrays.asList(cyAttributes.getAttributeNames()).contains(
Semantics.CANONICAL_NAME)) {
List<Node> edgeList = Cytoscape.getCyEdgesList();
int n = edgeList.size();
for (int i = 0; i < n; i++) {
String edgeID = edgeList.get(i).getIdentifier();
cyAttributes.setAttribute(edgeID, Semantics.CANONICAL_NAME,
edgeID);
}
}
}// TODO: remove in Cytoscape3
}
代码示例来源:origin: cytoscape/application
String canonicalName = node.getIdentifier();
List edges = network.getAdjacentEdgesList(node, true, true, true);
String canonicalTargetName = target.getIdentifier();
代码示例来源:origin: cytoscape.coreplugins/biomart-client
builder.append(n.getIdentifier());
builder.append(",");
代码示例来源:origin: cytoscape.coreplugins/advanced-network-merge
final String id1 = n1.getIdentifier();
final String id2 = n2.getIdentifier();
代码示例来源:origin: cytoscape.coreplugins/attribute-browser
public void actionPerformed(final ActionEvent e) {
final int idLocation = getIdColumn();
final Map<String, GraphObject> selectedMap = paintNodesAndEdges(idLocation);
final CyNetwork curNet = Cytoscape.getCurrentNetwork();
final List<GraphObject> nonSelectedObjects = new ArrayList<GraphObject>();
GraphObject fromMap;
if (objectType == NODES) {
for (Object curNode : curNet.getSelectedNodes()) {
fromMap = selectedMap.get(((Node) curNode).getIdentifier());
if (fromMap == null) {
nonSelectedObjects.add((GraphObject) curNode);
}
}
resetObjectColor(idLocation);
curNet.setSelectedNodeState(nonSelectedObjects, false);
} else {
for (Object curEdge : curNet.getSelectedEdges()) {
fromMap = selectedMap.get(((Edge) curEdge).getIdentifier());
if (fromMap == null) {
nonSelectedObjects.add((GraphObject) curEdge);
}
}
resetObjectColor(idLocation);
curNet.setSelectedEdgeState(nonSelectedObjects, false);
}
if (Cytoscape.getCurrentNetworkView() != Cytoscape.getNullNetworkView()) {
Cytoscape.getCurrentNetworkView().updateView();
}
}
});
代码示例来源:origin: cytoscape/application
/**
* Add a new ontology term to the DAG.<br>
*
* @param newTerm
*/
public void add(OntologyTerm newTerm) {
Node newOntologyTerm = Cytoscape.getCyNode(newTerm.getName(), true);
ontologyGraph.addNode(newOntologyTerm);
termAttr.setAttribute(newOntologyTerm.getIdentifier(), OBOTags.DEF.toString(),
newTerm.getDescription());
}
代码示例来源:origin: cytoscape.coreplugins/biopax
@SuppressWarnings("unchecked")
public static void setNodeToolTips(CyNetworkView networkView) {
// grab node attributes
CyAttributes nodeAttributes = Cytoscape.getNodeAttributes();
// iterate through the nodes
Iterator<NodeView> nodesIt = networkView.getNodeViewsIterator();
while (nodesIt.hasNext()) {
NodeView nodeView = nodesIt.next();
String id = nodeView.getNode().getIdentifier();
String tip =
nodeAttributes.getStringAttribute(id, MapBioPaxToCytoscape.BIOPAX_ENTITY_TYPE)
+ "\n" +
nodeAttributes.getListAttribute(id, MapBioPaxToCytoscape.BIOPAX_CELLULAR_LOCATIONS);
nodeView.setToolTip(tip);
if(log.isDebugging())
log.debug("tooltip set "+ tip + " for node " + id);
}
networkView.updateView();
}
}
代码示例来源:origin: cytoscape/application
cytoscape.generated.Edge tempEdge = factory.createEdge();
tempEdge.setId(curEdgeName);
tempEdge.setSource(targetEdge.getSource().getIdentifier());
tempEdge.setTarget(targetEdge.getTarget().getIdentifier());
tempEdge.setInteraction(Cytoscape.getEdgeAttributes()
.getStringAttribute(targetEdge.getIdentifier(),
代码示例来源:origin: cytoscape.coreplugins/biopax
@Override
public void actionPerformed(ActionEvent event) {
String nodeId = nodeView.getNode().getIdentifier();
String biopaxId = Cytoscape.getNodeAttributes()
.getStringAttribute(nodeId, MapBioPaxToCytoscape.BIOPAX_RDF_ID);
代码示例来源:origin: cytoscape/application
/**
* Return the requested Attribute for the given Node
*/
public boolean setNodeAttributeValue(int node, String attribute, Object value) {
final String canonName = getNode(node).getIdentifier();
final CyAttributes attrs = Cytoscape.getNodeAttributes();
if (value instanceof Boolean) {
attrs.setAttribute(canonName, attribute, (Boolean) value);
return true;
} else if (value instanceof Integer) {
attrs.setAttribute(canonName, attribute, (Integer) value);
return true;
} else if (value instanceof Double) {
attrs.setAttribute(canonName, attribute, (Double) value);
return true;
} else if (value instanceof String) {
attrs.setAttribute(canonName, attribute, (String) value);
return true;
} else if (value instanceof List) {
attrs.setListAttribute(canonName, attribute, (List) value);
return true;
} else if (value instanceof Map) {
attrs.setMapAttribute(canonName, attribute, (Map) value);
return true;
} else {
return false;
}
}
代码示例来源:origin: cytoscape/application
/**
* Return the requested Attribute for the given Node
*/
public Object getNodeAttributeValue(int node, String attribute) {
final String canonName = getNode(node).getIdentifier();
final CyAttributes attrs = Cytoscape.getNodeAttributes();
final byte cyType = attrs.getType(attribute);
if (cyType == CyAttributes.TYPE_BOOLEAN) {
return attrs.getBooleanAttribute(canonName, attribute);
} else if (cyType == CyAttributes.TYPE_FLOATING) {
return attrs.getDoubleAttribute(canonName, attribute);
} else if (cyType == CyAttributes.TYPE_INTEGER) {
return attrs.getIntegerAttribute(canonName, attribute);
} else if (cyType == CyAttributes.TYPE_STRING) {
return attrs.getStringAttribute(canonName, attribute);
} else if (cyType == CyAttributes.TYPE_SIMPLE_LIST) {
return attrs.getListAttribute(canonName, attribute);
} else if (cyType == CyAttributes.TYPE_SIMPLE_MAP) {
return attrs.getMapAttribute(canonName, attribute);
} else {
return null;
}
}
代码示例来源:origin: cytoscape/application
int[] nodeIndices = Cytoscape.getCurrentNetwork().getNodeIndicesArray();
for (int i=0; i<nodeIndices.length; i++){
String nodeID = Cytoscape.getRootGraph().getNode(nodeIndices[i]).getIdentifier();
Object valueObj = attributes.getAttribute(nodeID, attributeName);
if (valueObj != null){
内容来源于网络,如有侵权,请联系作者删除!