Skip to content

Latest commit

 

History

History
520 lines (342 loc) · 20.5 KB

README.md

File metadata and controls

520 lines (342 loc) · 20.5 KB

NDEx Python Client v3.1

Overview

NDEx Python Client v3.1 has been superseded by the NDEx2 Client. This is the last version of the NDEx Python Client. It will be maintained as a pip installable module to support current users, but we recommend migration to NDEx2.

The NDEx Python Client module provides methods to access NDEx via the NDEx Server API. It also provides methods for common operations on networks. It includes the NetworkN module and its NdexGraph network object class for convenient NDEx access and a data model for applications.

Note that the NDEx2 client does not support NetworkN, replacing it with the NiceCX object class.

Tutorial

A Jupyter Notebook tutorial on the basic use of the NDEx Python Client is at NDEx Client v3.1 Tutorial

To use this tutorial, clone the ndex-jupyter-notebooks repository to your local machine and start Jupyter Notebooks in the project directory.

For information on installing and using Jupyter Notebooks, go to jupyter.org

Requirements

The NDEx Python Client 3.1 requires Python 2.7.9 and the latest version of the PIP Python package manager for installation. Click here to download the PIP Python package.

Installing the NDEx Python Client Module

The Python NDEx 3.1 module can be installed from the Python Package Index (PyPI) repository using PIP:

pip install ndex

If you already have an older version of the ndex module installed, you can use this command instead:

pip install --upgrade ndex

NDEx Python Client Objects

The NDEx Python Client provides an interface to an NDEx server that is managed via a client object class. An NDEx Client object can be used to access an NDEx server either anonymously or using a specific user account. For each NDEx server and user account that you want to use in your script or application, you create an NDEx Client instance. In this example, a client object is created to access the public NDEx server.

import ndex.client
anon_ndex=ndex.client.Ndex("http://public.ndexbio.org")

A client object using a specific user account can perform operations requiring authentication, such as saving networks to that account.

my_account="your account"
my_password="your password"
my_ndex=ndex.client.Ndex("http://public.ndexbio.org", my_account, my_password)

NDEx Client Object Methods:

Status

update_status()
  • Updates the client object status attribute with the status of the NDEx Server.

Users

get_user_by_username(username)
  • Returns a user object corresponding to the provided username

  • Error if this account is not found

  • If the user account has not been verified by the user yet, the returned object will contain no user UUID and the isVerified field will be false.

Network

save_new_network(cx)
  • Creates a new network from cx, a python dict in CX format.
save_cx_stream_as_new_network(cx_stream)
  • Creates a network from the byte stream cx_stream.
update_cx_network(cx_stream, network_id)
  • Updates network specified by network_id with the new content from the byte stream cx_stream.

  • Errors if the network_id does not correspond to an existing network on the NDEx Server which the authenticated user either owns or has WRITE permission.

  • Errors if the cx_stream data is larger than the maximum size allowed by the NDEx server.

delete_network(network_id)
  • Deletes the network specified by network_id.

  • There is no method to undo a deletion, so care should be exercised.

  • The specified network must be owned by the authenticated user.

get_network_summary(network_id)
  • Retrieves a NetworkSummary JSON object from the network specified by network_id and returns it as a Python dict.

  • A NetworkSummary object provides useful information about the network, a mixture of network profile information (properties expressed in special aspects of the network CX), network properties (properties expressed in the networkAttributes aspect of the network CX) and network system properties (properties expressing how the network is stored on the server, not part of the network CX).

Attribute Description Type
creationTme Time at which the network was created timeStamp
description Text description of the network, same meaning as dc:description string
edgeCount The number of edge objects in the network integer
errorMessage If this network is not a valid CX network, this field holds the error message produced by the CX network validator. string
externalId UUID of the network string
isDeleted True if the network is marked as deleted boolean
isReadOnly True if the network is marked as readonly boolean
isShowCase True if the network is showcased boolean
isValid True if the network is a valid CX network boolean
modificationTime Time at which the network was last modified timeStamp
name Name or title of the network, not unique, same meaning as dc:title string
nodeCount The number of node objects in the network integer
owner The userName of the network owner string
ownerUUID The UUID of the networks owner string
properties List of NDExPropertyValuePair objects: describes properties of the networ list
subnetworkIds List of integers which are identifiers of subnetworks list
uri URI of the current network string
version Format is not controlled but best practice is to use a string conforming to Semantic Versioning string
visibility PUBLIC or PRIVATE. PUBLIC means it can be found or read by anyone, including anonymous users. PRIVATE is the default, means that it can only be found or read by users according to their permissions string
warnings List of warning messages produced by the CX network validator list

  • The properties attribute in the above table represents a list of attributes where each attribute is a dictionary with the following fields:
Property Object Field Description Type
dataType Type of the attribute string
predicateString Name of the attribute. string
value Value of the attribute string
subNetworkId Subnetwork Id of the attribute string

  • Errors if the network is not found or if the authenticated user does not have READ permission for the network.

  • Anonymous users can only access networks with visibility = PUBLIC.

get_network_as_cx_stream(network_id)
  • Returns the network specified by network_id as a CX byte stream.

  • This is performed as a monolithic operation, so it is typically advisable for applications to first use the getNetworkSummary method to check the node and edge counts for a network before retrieving the network.

set_network_system_properties(network_id, network_system_properties)
  • Sets the system properties specified in network_system_properties data for the network specified by network_id.

  • Network System properties describe the network’s status on the NDEx server but are not part of the corresponding CX network object.

  • As of NDEx V2.0 the supported system properties are:

    • readOnly: boolean

    • visibility: PUBLIC or PRIVATE.

    • showcase: boolean. Controls whether the network will display on the homepage of the authenticated user. Returns an error if the user does not have explicit permission to the network.

    • network_system_properties format: {property: value, ...}, such as:

      • {"readOnly": True}

      • {"visibility": “PUBLIC”}

      • {"showcase": True}

      • {"readOnly": True, “visibility”: “PRIVATE”, “showcase”: False}.

make_network_private(network_id)
  • Sets visibility of the network specified by network_id to private.

  • This is a shortcut for setting the visibility of the network to PRIVATE with the set_network_system_properties method:

    • set_network_system_properties(network_id, {"visibility": “PRIVATE”}).
make_network_public(network_id)
  • Sets visibility of the network specified by network_id to public

  • This is a shortcut for setting the visibility of the network to PUBLIC with the set_network_system_properties method:

    • set_network_system_properties(network_id, {"visibility": “PUBLIC”}).
set_read_only(network_id, value)
  • Sets the read-only flag of the network specified by network_id to value.

  • The type of value is boolean (True or False).

  • This is a shortcut for setting readOnly for the network by the set_network_system_properties method:

    • set_network_system_properties(network_id, {"readOnly": True})

    • set_network_system_properties(network_id, {"readOnly": False}).

update_network_group_permission(group_id, network_id, permission)
  • Updates the permission of a group specified by group_id for the network specified by network_id.

  • The permission is updated to the value specified in the permission parameter, either READ, WRITE, or ADMIN.

  • Errors if the authenticated user making the request does not have WRITE or ADMIN permissions to the specified network.

  • Errors if network_id does not correspond to an existing network.

  • Errors if the operation would leave the network without any user having ADMIN permissions: NDEx does not permit networks to become 'orphans' without any owner.

grant_networks_to_group(group_id, network_ids, permission="READ”)
  • Updates the permission of a group specified by group_id for all the networks specified in network_ids list

  • For each network, the permission is updated to the value specified in the permission parameter. permission parameter is READ, WRITE, or ADMIN; default value is READ.

  • Errors if the authenticated user making the request does not have WRITE or ADMIN permissions to each network.

  • Errors if any of the network_ids does not correspond to an existing network.

  • Errors if it would leave any network without any user having ADMIN permissions: NDEx does not permit networks to become 'orphans' without any owner.

update_network_user_permission(user_id, network_id, permission)
  • Updates the permission of the user specified by user_id for the network specified by network_id.

  • The permission is updated to the value specified in the permission parameter. permission parameter is READ, WRITE, or ADMIN.

  • Errors if the authenticated user making the request does not have WRITE or ADMIN permissions to the specified network.

  • Errors if network_id does not correspond to an existing network.

  • Errors if it would leave the network without any user having ADMIN permissions: NDEx does not permit networks to become 'orphans' without any owner.

grant_network_to_user_by_username(username, network_id, permission)
  • Updates the permission of a user specified by username for the network specified by network_id.

  • This method is equivalent to getting the user_id via get_user_by_name(username), and then calling update_network_user_permission with that user_id.

grant_networks_to_user(user_id, network_ids, permission="READ”)
  • Updates the permission of a user specified by user_id for all the networks specified in network_ids list.
update_network_profile(network_id, network_profile)
  • Updates the profile information of the network specified by network_id based on a network_profile object specifying the attributes to update.

  • Any profile attributes specified will be updated but attributes that are not specified will have no effect - omission of an attribute does not mean deletion of that attribute.

  • The network profile attributes that can be updated by this method are 'name', 'description' and 'version'.

set_network_properties(network_id, network_properties)
  • Updates the NetworkAttributes aspect the network specified by network_id based on the list of NdexPropertyValuePair objects specified in network_properties.

  • This method requires careful use:

    • Many networks in NDEx have no subnetworks and in those cases the subNetworkId attribute of every NdexPropertyValuePair should not be set.

    • Some networks, including some saved from Cytoscape have one subnetwork. In those cases, every NdexPropertyValuePair should have the subNetworkId attribute set to the id of that subNetwork.

    • Other networks originating in Cytoscape Desktop correspond to Cytoscape "collections" and may have multiple subnetworks. Each subnetwork may have NdexPropertyValuePairs associated with it and these will be visible in the Cytoscape network viewer. The collection itself may have NdexPropertyValuePairs associated with it and these are not visible in the Cytoscape network viewer but may be set or read by specific Cytoscape Apps. In these cases, we strongly recommend that you edit these network attributes in Cytoscape rather than via this API unless you are very familiar with the Cytoscape data model.

  • NdexPropertyValuePair object has these attributes:

Attribute Description Type
subNetworkId Optional identifier of the subnetwork to which the property applies. string
predicateString Name of the attribute. string
dataType Data type of this property. Its value has to be one of the attribute data types that CX supports. string
value A string representation of the property value. string

  • Errors if the authenticated user does not have ADMIN permissions to the specified network.

  • Errors if network_id does not correspond to an existing network.

get_provenance(network_id)
  • Returns the Provenance aspect of the network specified by network_id.

  • See the document NDEx Provenance History for a detailed description of this structure and best practices for its use.

  • Errors if network_id does not correspond to an existing network.

  • The returned value is a Python dict corresponding to a JSON ProvenanceEntity object:

    • A provenance history is a tree structure containing ProvenanceEntity and ProvenanceEvent objects. It is serialized as a JSON structure by the NDEx API.

    • The root of the tree structure is a ProvenanceEntity object representing the current state of the network.

    • Each ProvenanceEntity may have a single ProvenanceEvent object that represents the immediately prior event that produced the ProvenanceEntity. In turn, linked to network of ProvenanceEvent and ProvenanceEntity objects representing the workflow history that produced the current state of the Network.

    • The provenance history records significant events as Networks are copied, modified, or created, incorporating snapshots of information about "ancestor" networks.

    • Attributes in ProvenanceEntity:

      • uri : URI of the resource described by the ProvenanceEntity. This field will not be set in some cases, such as a file upload or an algorithmic event that generates a network without a prior network as input

      • creationEvent : ProvenanceEvent. has semantics of PROV:wasGeneratedBy properties: array of SimplePropertyValuePair objects

    • Attributes in ProvenanceEvent:

      • endedAtTime : timestamp. Has semantics of PROV:endedAtTime

      • startedAtTime : timestamp. Has semantics of PROV:endedAtTime

      • inputs : array of ProvenanceEntity objects. Has semantics of PROV:used.

      • *properties *: array of SimplePropertyValuePair.

set_provenance(network_id, provenance)
  • Updates the Provenance aspect of the network specified by network_id to be the ProvenanceEntity object specified by provenance argument.

  • The provenance argument is intended to represent the current state and history of the network and to contain a tree-structure of ProvenanceEvent and ProvenanceEntity objects that describe the networks provenance history.

  • Errors if the authenticated user does not have ADMIN permissions to the specified network.

  • Errors if network_id does not correspond to an existing network.

Search

search_networks(search_string="", account_name=None, start=0, size=100, include_groups=False)
  • Returns a SearchResult object which contains:

    • Array of NetworkSummary objects (networks)

    • the total hit count of the search (numFound)

    • Position of the returned elements (start)

  • Search_string parameter specifies the search string.

  • DEPRECATED: the account_name is optional, but has been superseded by the search string field userAdmin:account_name If it is provided, the the search will be constrained to networks owned by that account.

  • The start and size parameter are optional. The default values are start = 0 and size = 100.

  • The optional include_groups argument defaults to false. It enables search to return a network where a group has permission to access the network and the user is a member of the group. if include_groups is true, the search will also return networks based on permissions from the authenticated user’s group memberships.

  • The method find_networks is a deprecated alternate name for search_networks.

find_networks(search_string="", account_name=None, start=0, size=100)
  • This method is deprecated; search_networks should be used instead.
get_network_summaries_for_user(account_name)
  • Returns a SearchResult object which contains:

    • Array of NetworkSummary objects (networks)

    • The total hit count of the search (numFound)

    • Position of the returned elements (start) for user specified by acount_name argument.

  • The number of found NetworkSummary objects is limited to (will not exceed) 1000.

  • This function will not return networks where a group has permission to access the network and account_name is a member of the group.

  • This function is equivalent to calling search_networks("", account_name, size=1000).

get_network_ids_for_user(account_name)
  • Returns a list of network Ids for the user specified by acount_name argument. The number of found network Ids is limited to (will not exceed) 1000.

  • This function is equivalent to calling get_network_summaries_for_user("", account_name, size=1000), and then building a list of network Ids returned by the call to get_network_summaries_for_user.

get_neighborhood_as_cx_stream(network_id, search_string, search_depth=1, edge_limit=2500)
  • Returns a network CX byte stream that is a subset (neighborhood) of the network specified by network_id.

  • The subset is determined by a traversal search from nodes identified by search_string to a depth specified by search_depth.

  • edge_limit specifies the maximum number of edges that this query can return.

  • Server will return an error if the number of edges in the result is larger than the edge_limit parameter.

get_neighborhood(network_id, search_string, search_depth=1, edge_limit=2500)
  • The arguments and behavior are the same as get_neighborhood_as_cx_stream but returns a Python dict corresponding to a network CX JSON object.

Task

get_task_by_id(task_id)
  • Returns a JSON task object for the task specified by task_id.

  • Errors if no task found or if the authenticated user does not own the specified task.