Learn R Programming

RCy3 (version 1.2.0)

deleteNodeAttribute: deleteNodeAttribute

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 by using the Cytoscape graphical user interface or by calling this method.

Usage

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

See Also

getNodeAttributeNames addNodeAttribute

Examples

Run this code
  # first, delete existing windows to save memory:
  deleteAllWindows(CytoscapeConnection())

  window.name = 'demo.deleteNodeAttribute'
  cw = CytoscapeWindow (window.name, graph=makeSimpleGraph ())
  displayGraph (cw)
  redraw (cw)
  layoutNetwork(cw)
  
    # before:
  print (getNodeAttributeNames (cw))
    # [1] "name"  "type"  "lfc"   "label" "count"
  deleteNodeAttribute (cw, 'count')
    # after:
  print (getNodeAttributeNames (cw))
    # [1] "name"  "type"  "lfc"   "label"

Run the code above in your browser using DataLab