Skip to contents

This function traverses a gating tree structure to retrieve a node at a specified path.

Usage

getNode(gatingTreeObject, path)

Arguments

gatingTreeObject

The root object of the gating tree containing child nodes.

path

A vector of node names specifying the path to the desired node.

Value

The node object at the specified path.

Examples

if (FALSE) { # \dontrun{
gatingTreeObject <- createGatingTreeObject(...) # assuming this function exists
path <- c("rootNode", "CD4pos")
getNode(gatingTreeObject, path)
} # }