graphMng {pipeFrame} | R Documentation |
The step relations are managed and restricted to directed acyclic graph. The direction of data flow is from upstream to downstream. So when users create a new step object, restricting its relation with existing steps is necessary.
addEdges(edges, argOrder) getPrevSteps(stepType, argOrder) getAttachedStep(stepType) regAttachedStep(newStepType, stepType) getNextSteps(stepType, argOrder) printMap(stepType = NULL, display = TRUE, ...)
edges |
|
argOrder |
|
stepType |
|
newStepType |
|
display |
|
... |
Additional arguments, currently used. |
addEdges |
No value will be returned. |
getPrevSteps |
Names of previous steps |
getAttachedStep |
get the step that is generated from |
regAttachedStep |
Add different step type for exist step |
getNextSteps |
Names of next steps |
printMap |
Print the flow map for the pipeline. |
addEdges(edges = c("RandomRegionOnGenome", "OverlappedRandomRegion"),argOrder = 1) printMap() getPrevSteps("OverlappedRandomRegion",1)