rcx_toNGraph {ndexr} | R Documentation |
Create ngraph object from RCX object
rcx_toNGraph(rcx, verbose = FALSE)
rcx |
RCX object |
verbose |
logical; whether to print out extended feedback |
returns object of class ngraph if successfull, NULL otherwise
Wrapper function for ngraph_fromRCX
## 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)