ndex_group_network_get_permission {ndexr}R Documentation

Get Group Permission for a Specific Network

Description

Get Group Permission for a Specific Network

Usage

ndex_group_network_get_permission(ndexcon, groupId, networkId)

Arguments

ndexcon

object of class NDExConnection ndex_connect

groupId

character; unique ID (UUID) of the group

networkId

character; unique ID (UUID) of the network

Value

Network permissions of that group or empty object

REST query

GET: ndex_config$api$group$network$get

Note

Compatible to NDEx server version 2.0

Examples

## 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)

[Package ndexr version 1.14.1 Index]