1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,22 @@ |
1 |
+% Generated by roxygen2 (4.1.0): do not edit by hand |
|
2 |
+% Please edit documentation in R/read.gatingML.cytobank.R |
|
3 |
+\name{matchPath} |
|
4 |
+\alias{matchPath} |
|
5 |
+\title{Given the leaf node, try to find out if a collection of nodes can be matched to a path in a graph(tree) by the bottom-up searching} |
|
6 |
+\usage{ |
|
7 |
+matchPath(g, leaf, nodeSet) |
|
8 |
+} |
|
9 |
+\arguments{ |
|
10 |
+\item{g}{graphNEL} |
|
11 |
+ |
|
12 |
+\item{leaf}{the name of leaf(terminal) node} |
|
13 |
+ |
|
14 |
+\item{nodeSet}{a set of node names} |
|
15 |
+} |
|
16 |
+\value{ |
|
17 |
+TRUE if path is found, FALSE if not path is matched. |
|
18 |
+} |
|
19 |
+\description{ |
|
20 |
+Given the leaf node, try to find out if a collection of nodes can be matched to a path in a graph(tree) by the bottom-up searching |
|
21 |
+} |
|
22 |
+ |