setEdgeLabelOpacityDirect: setEdgeLabelOpacityDirect

Description Usage Arguments Value Author(s) See Also Examples

Description

In the specified CytoscapeWindow, set the opacity of the specified edge or edges. Low numbers, near zero, are transparent. High numbers, near 255, are maximally opaque: they are fully visible.

Usage

1
setEdgeLabelOpacityDirect(obj, edge.names, new.value)

Arguments

obj

a CytoscapeWindowClass object.

edge.names

one or more String objects, cy2-style edge names.

new.value

a numeric object, ranging from 0 to 255.

Value

None.

Author(s)

Tanja Muetze, Georgi Kolishovski, Paul Shannon

See Also

setNodeLabelOpacityDirect setEdgeLabelColorDirect setEdgeLabelDirect setEdgeFontSizeDirect

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
  ## Not run: 
  # first, delete existing windows to save memory:
  deleteAllWindows(CytoscapeConnection())

  cw <- CytoscapeWindow ('setEdgeLabelOpacityDirect.test', graph=makeSimpleGraph())
  displayGraph (cw)
  layoutNetwork (cw, 'force-directed')
  edge.names = as.character (cy2.edge.names (cw@graph)) [1:2]
  setEdgeLabelDirect (cw, edge.names, 'some lable')
  # fade out
  for (i in 1:10) {
    setEdgeLabelOpacityDirect (cw, edge.names, 255 - (i * 25))
    }
  # fade in
  for (i in 1:10) {
    setEdgeLabelOpacityDirect (cw, edge.names, i * 25)
    }

## End(Not run)

tmuetze/Bioconductor_RCy3_the_new_RCytoscape documentation built on May 31, 2019, 4:39 p.m.