Description Usage Arguments Value REST query Note Examples
Get a Group
1 | ndex_get_group(ndexcon, groupId)
|
ndexcon |
object of class NDExConnection linkndex_connect |
groupId |
character; unique ID (UUID) of the group |
list of properties describing the group (externalId, emailAddress, website, etc.). Throws error (404) if group isn't found!
GET: ndex_config$api$group$get
Compatible to NDEx server version 2.0
1 2 3 4 5 6 7 | ## Establish a server connection
ndexcon = ndex_connect()
## Find a group
groups = ndex_find_groups(ndexcon,"Ideker Lab")
groupId = groups[1,"externalId"]
## Get group information
group = ndex_get_group(ndexcon, groupId)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.