dDAGtip {dnet} | R Documentation |
dDAGtip
is supposed to find the tip node(s) of a direct acyclic
graph (DAG; an ontology). It return the name (i.e Term ID) of the tip
node(s).
dDAGtip(g)
g |
an object of class "igraph" or "graphNEL" |
tip
: the tip name (i.e. Term ID)
none
## Not run: # 1) load HPPA as igraph object ig.HPPA <-dRDataLoader(RData='ig.HPPA') g <- ig.HPPA # 2) find tips tips <- dDAGtip(g) tips ## End(Not run)