Description Usage Arguments Value Examples
savePNG write current cytoscape view, at current resolution, to a PNG file.
1 2  | ## S4 method for signature 'RCyjs'
savePNG(obj, filename)
 | 
obj | 
 an RCyjs instance  | 
filename | 
 a character string  | 
no return value
1 2 3 4 5 6 7 8 9  | if(interactive()){
   rcy <- RCyjs(title="layouts", graph=createTestGraph(nodeCount=20, edgeCount=20))
   style.filename <- system.file(package="RCyjs", "extdata", "sampleStyle1.js");
   loadStyleFile(rcy, style.filename)
   layout(rcy, "cose")
   fit(rcy)
   filename <- tempfile(fileext=".png")
   savePNG(rcy, filename)
   }
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.