getLineStyles | R Documentation |
Retrieve the names of the currently supported line types – values which can be used to render edges, and thus can be used in calls to 'setEdgeLineStyleRule'
getLineStyles(obj)
obj |
a CytoscapeConnectionClass object. |
A list of character strings, e.g., 'SOLID', 'DOT'
Paul Shannon
cy <- CytoscapeConnection () getLineStyles (cy) # [1] "SOLID" "LONG_DASH" "EQUAL_DASH" ...