Description Usage Arguments Author(s) Examples
View source: R/exportCytoGML.R
Takes the igraph object edited in adjM2gml() and writes it to a GML file that is readable by Cytoscape.
1 | exportCytoGML(graph, filename)
|
graph |
igraph graph (for example from adjM2gml()). |
filename |
output filename. |
Markus Schroeder <mschroed@jimmy.harvard.edu>
Benjamin Haibe-Kains <bhaibeka@jimmy.harvard.edu>
1 2 3 4 5 6 7 8 9 10 11 12 | ## set GO ID's and color
goIDs <- c("GO:0051130","GO:0019912","GO:0005783")
color <- c("lightblue","red","yellow")
dd <- getAmigoTree(goIDs=goIDs,color=color,
filename="example",picType="dot",saveResult=FALSE)
tt <- readAmigoDot(object=dd)
## exportCytoGML is called inside adjM2gml
#adjM2gml(adjMatrix(tt),relations(tt)$color,
# annot(tt)$fillcolor,annot(tt)$GO_ID,
# annot(tt)$description,"example")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.