Learn R Programming

RCy3 (version 1.2.0)

setNodeSizeDirect: setNodeSizeDirect

Description

In the specified CytoscapeWindow, set the size of the specified node(s). Note that the node dimensions (height and width) must be unlocked for this to work. Node height and width change together.

Usage

setNodeSizeDirect(obj, node.names, new.sizes)

Arguments

obj
a CytoscapeWindowClass object.
node.names
one or more String objects.
new.sizes
one or more integers, in pixel units.

Value

None.

See Also

lockNodeDimensions setNodeWidthDirect setNodeHeightDirect

Examples

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

  cw <- CytoscapeWindow ('setNodeSizeDirect.test', graph=makeSimpleGraph())
  displayGraph (cw)
  layoutNetwork (cw, 'grid')
  setNodeSizeDirect (cw, 'A', 32)
  setNodeSizeDirect (cw, getAllNodes(cw), 15)
  setNodeSizeDirect (cw, c('A', 'B'), c(30, 40))

Run the code above in your browser using DataLab