deleteNodeAttribute: deleteNodeAttribute

Description Usage Arguments Value Author(s) See Also Examples

Description

Node and node attributes are usually added to a Cytoscape network by defining them on the graph used to construct a CytoscapeWindow. Once Cytoscape has been passed an attribute, however, it persists until you exit the application or delete it – using the Cytoscape graphical user interface, or by calling this method.

Usage

1
deleteNodeAttribute(obj, attribute.name)

Arguments

obj

a CytoscapeConnectionClass object or CytoscapeWindow object.

attribute.name

a character string, the name of the attribute you wish to delete.

Value

nothing

Author(s)

Paul Shannon

See Also

getNodeAttributeNames addNodeAttribute

Examples

1
2
3
4
5
6
7
8
9
  window.name = 'demo.deleteNodeAttribute'
  cw = new.CytoscapeWindow (window.name, graph=makeSimpleGraph ())
  displayGraph (cw)
  redraw (cw)
  layoutNetwork(cw)

  print (paste ("before: ", getNodeAttributeNames (cw)))
  deleteNodeAttribute (cw, 'count')
  print (paste ("after: ", getNodeAttributeNames (cw)))

RCytoscape documentation built on Nov. 17, 2017, 10:52 a.m.