ndex_group_network_get_permission: Get Group Permission for a Specific Network

Description Usage Arguments Value REST query Note Examples

View source: R/ndex_groups.R

Description

Get Group Permission for a Specific Network

Usage

1
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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## 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)

ndexr documentation built on March 13, 2021, 2 a.m.