Description Usage Arguments Value See Also Examples
View source: R/PipelineDefinition.R
Creates on object of class 'PipelineDefinition' containing step functions, as well as optionally step evaluation and aggregation functions.
1 2 3 4 5 6 7 8 9 10 | PipelineDefinition(
functions,
descriptions = NULL,
evaluation = NULL,
aggregation = NULL,
initiation = identity,
defaultArguments = list(),
misc = list(),
verbose = TRUE
)
|
functions |
A list of functions for each step |
descriptions |
A list of descriptions for each step |
evaluation |
A list of optional evaluation functions for each step |
aggregation |
A list of optional aggregation functions for each step |
initiation |
A function ran when initiating a dataset |
defaultArguments |
A lsit of optional default arguments |
misc |
A list of whatever. |
verbose |
Whether to output additional warnings (default TRUE). |
An object of class 'PipelineDefinition', with the slots functions, descriptions, evaluation, aggregation, defaultArguments, and misc.
PipelineDefinition-methods
,
addPipelineStep
. For an example pipeline, see
scrna_pipeline
.
1 2 3 4 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.