Description Usage Arguments Details Value Author(s) See Also Examples
Functions for creating and manipulating AmigoDot-class objects.
1 2 3 4 5 6 7 8 9 10 |
object |
An AmigoDot S4 object |
value |
An AmigoDot S4 object |
agraph(object)
Gets the igraph object.
agraph(object) <- value
Sets the igraph object.
adjMatrix(object)
Gets the adjacency matrix.
adjMatrix(object) <- value
Sets the adjacency matrix.
annot(object)
Gets the data.frame containing the annotation of the tree with
the columns node, GO_ID, description, color, fillcolor and fontcolor.
annot(object) <- value
Sets the the data.frame containing the annotation of the tree with
the columns node, GO_ID, description, color, fillcolor and fontcolor.
relations(object)
Gets the data.frame containing the relations between the node
of the tree and also information about the edges. The columns are
parent, child, arrowhead, arrowtail, color and style.
relations(object) <- value
Sets the the data.frame containing the relations between the node
of the tree and also information about the edges. The columns are
parent, child, arrowhead, arrowtail, color and style.
leaves(object)
Gets the data.frame containing the leaves of the tree with
the columns node, GO_ID, description, color, fillcolor and fontcolor.
leaves(object) <- value
Sets the the data.frame containing the leaves of the tree with
the columns node, GO_ID, description, color, fillcolor and fontcolor.
AmigoDot |
Object of class
|
agraph |
igraph object. |
adjMatrix |
Adjacency Matrix. |
annot, leaves |
Annotation for each node. |
relations |
Meta information about the edges between nodes. |
Markus Schroeder mschroed@jimmy.harvard.edu
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## 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)
agraph(tt)
adjMatrix(tt)
annot(tt)
relations(tt)
leaves(tt)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.