Description Usage Arguments Value Author(s) Examples
View source: R/transomics2cytoscape.R
Import multiple KEGG pathways and integrate the pathways into Cy3D renderer
1 | create3Dnetwork(networkDataDir, networkLayers, transomicEdges, stylexml)
|
networkDataDir |
Path of a directory to put the network files of the second column of networkLayers TSV. |
networkLayers |
Path of a TSV file with the 3 columns (layer index, the network file name in networkDataDir, Z-height of the network). |
transomicEdges |
Path of a TSV file with the 5 columns (layer index of a source node, name or KEGG object ID that the source node should have, layer index of a target node, name or KEGG object ID that the target node should have, interaction type). |
stylexml |
Path of a XML file for Cytoscape style |
A SUID of the 3D network.
Kozo Nishida
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
networkDataDir <- tempfile(); dir.create(networkDataDir)
sif <- system.file("extdata","galFiltered.sif",package="RCy3")
file.copy(sif, networkDataDir)
networkLayers <- system.file("extdata", "networkLayers.tsv",
package = "transomics2cytoscape")
transomicEdges <- system.file("extdata", "transomicEdges.tsv",
package = "transomics2cytoscape")
stylexml <- system.file("extdata", "transomics.xml",
package = "transomics2cytoscape")
create3Dnetwork(networkDataDir, networkLayers, transomicEdges, stylexml)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.