py4cytoscape.style_values.get_edge_line_style¶
-
get_edge_line_style(edge_names=None, network=None, base_url='http://127.0.0.1:1234/v1')[source]¶ Retrieve the actual line style of specified edges.
- Parameters
edge_names (str or list or int or None) – List of edges or None. If edge list:
listof edge names or SUIDs, comma-separated string of edge names or SUIDs, or scalar node edge or SUID. Edge names should be found in thenamecolumn of theedge table. If list is None, default is all edges.network (SUID or str or None) – Name or SUID of a network. 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://127.0.0.1:1234 and the latest version of the CyREST API supported by this version of py4cytoscape.
- Returns
as a collection of {edge-name: line-style} for each edge in edge_names parameter
- Return type
dict
- Raises
CyError – if network name or edge doesn’t exist
requests.exceptions.RequestException – if can’t connect to Cytoscape or Cytoscape returns an error
Examples
>>> get_edge_line_style() {'YMR117C (pp) YCL032W': 'SOLID', 'YMR255W (pp) YGL122C': 'SOLID', 'YNL214W (pp) YGL153W': 'SOLID', ...} >>> get_edge_line_style(['YHR084W (pd) YFL026W', 'YHR084W (pd) YDR461W', 'YMR255W (pp) YGL122C']) {'YHR084W (pd) YFL026W': 'SOLID', 'YHR084W (pd) YDR461W': 'SOLID', 'YMR255W (pp) YGL122C': 'SOLID'} >>> get_edge_line_style('YHR084W (pd) YFL026W, YHR084W (pd) YDR461W, YMR255W (pp) YGL122C') {'YHR084W (pd) YFL026W': 'SOLID', 'YHR084W (pd) YDR461W': 'SOLID', 'YMR255W (pp) YGL122C': 'SOLID'} >>> get_edge_line_style([421382, 421383, 421380]) {421382: 'SOLID', 421383: 'SOLID', 421380: 'SOLID'} >>> get_edge_line_style('421382, 421383, 421380') {421382: 'SOLID', 421383: 'SOLID', 421380: 'SOLID'} >>> get_edge_line_style(421382) {421382: 'SOLID'} >>> get_edge_line_style(edge_names='YOR355W (pp) YNL091W', network='galFiltered.sif') {'YOR355W (pp) YNL091W': 'SOLID'}