ndex_group_network_get_permission {ndexr} | R Documentation |
Get Group Permission for a Specific Network
ndex_group_network_get_permission(ndexcon, groupId, networkId)
ndexcon |
object of class NDExConnection ndex_connect |
groupId |
character; unique ID (UUID) of the group |
networkId |
character; unique ID (UUID) of the network |
Network permissions of that group or empty object
GET: ndex_config$api$group$network$get
Compatible to NDEx server version 2.0
## Establish a server connection ndexcon = ndex_connect() ## Find a group groups = ndex_find_groups(ndexcon,"Ideker Lab") groupId = groups[1,"externalId"] ## List networks of the group networks = ndex_group_list_networks(ndexcon, groupId) networkId = names(networks)[1] ## Get group's permission to the network #group = ndex_group_network_get_permission(ndexcon, groupId, networkId)