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)
}
|
Loading required package: BrowserViz
Loading required package: jsonlite
Loading required package: httpuv
Attaching package: ‘BrowserViz’
The following objects are masked from ‘package:jsonlite’:
fromJSON, toJSON
Loading required package: graph
Loading required package: BiocGenerics
Loading required package: parallel
Attaching package: ‘BiocGenerics’
The following objects are masked from ‘package:parallel’:
clusterApply, clusterApplyLB, clusterCall, clusterEvalQ,
clusterExport, clusterMap, parApply, parCapply, parLapply,
parLapplyLB, parRapply, parSapply, parSapplyLB
The following objects are masked from ‘package:stats’:
IQR, mad, sd, var, xtabs
The following objects are masked from ‘package:base’:
anyDuplicated, append, as.data.frame, basename, cbind, colnames,
dirname, do.call, duplicated, eval, evalq, Filter, Find, get, grep,
grepl, intersect, is.unsorted, lapply, Map, mapply, match, mget,
order, paste, pmax, pmax.int, pmin, pmin.int, Position, rank,
rbind, Reduce, rownames, sapply, setdiff, sort, table, tapply,
union, unique, unsplit, which.max, which.min
Attaching package: ‘RCyjs’
The following object is masked from ‘package:graphics’:
layout
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.