View source: R/batch_management.R
checkArgsAgainstBatchParams | R Documentation |
If a processing batch is currently set, inserting this function into another function from neonMicrobe will check the parent function's arguments against the parameters associated with the current processing batch. If priority = "batch", the current batch's parameters would take precedence.
checkArgsAgainstBatchParams(
priority = c("batch", "arguments"),
...,
verbose = TRUE,
warn_no_batch = FALSE
)
priority |
Must be "batch" or "arguments". Whether to defer to batch-specific processing parameters or function arguments when they conflict. |
... |
Format function argument (string or name) = batch parameter (string). Arguments with a corresponding batch parameter, set to whatever the name of that batch parameter is, e.g. |
verbose |
Default TRUE. Whether to print a warning if the function argument and batch parameter do not match. |
warn_no_batch |
Default FALSE. Whether to print a warning if there is no current processing batch. |
If priority = "batch", then rather than using quality filtering parameters defined on-the-fly as function arguments, the parent function would instead use the quality filtering parameters associated with the current batch. If priority = "batch", then rather than using the default output directory, the parent function would instead use the batch-specific outputs.
No value is returned
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.