Description Usage Arguments Value Examples
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.
1 2 3 4 5 6 7 8 9 10 11 | 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. |
1 2 3 4 5 | addEdges(edges = c("RandomRegionOnGenome",
"OverlappedRandomRegion"),argOrder = 1)
printMap()
getPrevSteps("OverlappedRandomRegion",1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.