py4cytoscape.style_mappings.set_edge_target_arrow_shape_mapping

set_edge_target_arrow_shape_mapping(table_column, table_column_values=None, shapes=None, default_shape=None, style_name=None, network=None, base_url='http://127.0.0.1:1234/v1')[source]

Map table column values to colors to set the target arrow color.

Parameters
  • table_column (str) – Name of Cytoscape table column to map values from

  • table_column_values (list) – List of values from Cytoscape table to be used in mapping

  • shapes (list) – List of arrow shapes to map to table_column_values. See get_arrow_shapes()

  • default_shape (str) – Shape to set as default. See get_arrow_shapes()

  • style_name (str) – name for style

  • network (SUID or str or None) – Name or SUID of a network or view. Default is the “current” network active in Cytoscape.

  • base_url (str) – Ignore unless you need to specify a custom domain, port or version to connect to the CyREST API. Default is http://localhost:1234 and the latest version of the CyREST API supported by this version of py4cytoscape.

Returns

’’

Return type

str

Raises
  • CyError – if table column doesn’t exist, table column values doesn’t match values list, or invalid style name, network or mapping type

  • requests.exceptions.RequestException – if can’t connect to Cytoscape or Cytoscape returns an error

Examples

>>> set_edge_source_arrow_target_mapping('interaction', table_column_values=['pp','pd'], shapes=['DIAMOND', 'CIRCLE'], style_name='galFiltered Style')
''
>>> set_edge_source_arrow_target_mapping(**gen_edge_arrow_map('interaction', style_name='galFiltered Style'))
''

Note

This is the same function as set_edge_target_arrow_mapping()

See also

set_edge_arrow_mapping()

See also

Value Generators in the Concepts section in the py4cytoscape User Manual.