ndex_network_aspect_get_metadata {ndexr} | R Documentation |
This function retrieves the metadata associated with the supplied network UUID.
ndex_network_aspect_get_metadata(ndexcon, networkId, aspect)
ndexcon |
object of class NDExConnection linkndex_connect |
networkId |
character; unique ID (UUID) of the network |
aspect |
character; aspect name |
metadata for an aspect as list: consistencyGroup, elementCount, lastUpdate, data, name, properties, version and idCounter
GET: ndex_config$api$network$aspect$getMetaDataByName
Compatible to NDEx server version 2.0
Server error (version 2.0) since March 13th 2017
## Establish a server connection ndexcon = ndex_connect() ## Find a network and get its UUID networks = ndex_find_networks(ndexcon,"p53") networkId = networks[1,"externalId"] ## Get the meta-data of an aspect of a network ndex_network_aspect_get_metadata(ndexcon, networkId, 'nodeAttributes')