rcx_toNGraph {ndexr}R Documentation

Create ngraph object from RCX object

Description

Create ngraph object from RCX object

Usage

rcx_toNGraph(rcx, verbose = FALSE)

Arguments

rcx

RCX object

verbose

logical; whether to print out extended feedback

Value

returns object of class ngraph if successfull, NULL otherwise

Note

Wrapper function for ngraph_fromRCX

Examples

## Establish a server connection
ndexcon = ndex_connect()
## Find one of your networks and get its UUID
networks = ndex_find_networks(ndexcon)
networkId = networks[1,"externalId"]
## Get the network data 
rcx = ndex_get_network(ndexcon, networkId) 
## Convert to nGraph
ngraph = rcx_toNGraph(rcx) 

[Package ndexr version 1.0.4 Index]