getLayoutNameMapping: getLayoutNameMapping

Description Usage Arguments Value Author(s) See Also Examples

Description

The Cytoscape 'Layout' menu lists many layout algorithms, but the names presented there are different from the names by which these algorithms are known to layout method. This method returns a named list in which the names are from the GUI, and the values identify the names you must use to choose an algorithms in the programmatic interface.

Usage

1

Arguments

obj

a CytoscapeConnectionClass object.

Value

A named list of strings.

Author(s)

Paul Shannon

See Also

layout getLayoutNames getLayoutPropertyNames getLayoutPropertyType getLayoutPropertyValue setLayoutProperties

Examples

1
2
3
4
5
6
  cy <- CytoscapeConnection ()
  layout.name.map <- getLayoutNameMapping (cy)
  print (head (names (layout.name.map), n=3))
    # [1] "Inverted Self-Organizing Map Layout" "Group Attributes Layout" "MOEN Layout"
  print (head (as.character (layout.name.map), n=3))
    # [1] "isom"   "attributes-layout"   "jgraph-moen"

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