Description Usage Arguments Value Author(s) See Also Examples
Function to update or check status of SummarizedBenchmark
results.
If only a SummarizedBenchmark
object is specified,
the function will check whether 'func', 'param', 'meta', 'post' or the 'pkg_vers' of the
methods in the BenchDesign
stored with the
SummarizedBenchmark
do not match values stored in the
colData
. By default, no methods will be executed to update results. To actually execute updates,
set dryrun = FALSE
.
If a BenchDesign
object is specified in addition to a
SummarizedBenchmark
object, the function will check which
methods in the new BenchDesign
need to be executed to update the
SummarizedBenchmark
results. Again, by default, no methods
will be executed unless dryrun = FLASE
is specified.
Unless reuseParams = FALSE
is specified, the parameters of the last execution session stored
in the the colData
of the SummarizedBenchmark
object
will be used.
1 2 |
sb |
a |
bd |
a |
dryrun |
logical whether to just print description of what would be updated rather than actually running any methods. (default = TRUE) |
version |
logical whether to re-run methods with only package version differences. (default = FALSE) |
keepAll |
logical whether to keep methods run in original |
reuseParams |
logical whether to reuse parameters from |
... |
optional parameters to pass to |
SumamrizedBenchmark object.
Patrick Kimes
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## load example SummarizedBenchmark object
data(allSB)
sb <- allSB[[1]]
## check if results are out of date
updateBench(sb)
## modify BenchDesign
bd <- BenchDesign(sb)
bd <- dropMethod(bd, "kallisto-default")
## check if results need to be updated with new BenchDesign
updateBench(sb, bd)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.