Takes a BenchDesign
object, the name of an
existing method, and new parameter specifications,
and returns a modified BenchDesign
object with
the specified changes.
modifyMethod(bd, label, params, .overwrite = FALSE)
bd |
|
---|---|
label | Character name of method to be modified. |
params | Named quosure list created using |
.overwrite | Logical whether to overwrite the complete existing list of
parameters to be passed to |
Modified BenchDesign
object with single method
parameters modified.
## empty BenchDesign bench <- BenchDesign() ## add method bench <- addMethod(bench, label = "qv", func = qvalue::qvalue, post = function(x) { x$qvalue }, meta = list(note = "storey's q-value"), params = rlang::quos(p = pval)) ## modify method 'meta' property of 'qv' method bench <- modifyMethod(bench, label = "qv", params = rlang::quos(bd.meta = list(note = "Storey's q-value"))) ## verify that method has been updated printMethod(bench, "qv")#> qv --------------------------------------------------------- #> BenchDesign Method (BDMethod) ------------------------------ #> method: qvalue::qvalue #> function (p, fdr.level = NULL, pfdr = FALSE, lfdr.out... #> parameters: #> p : pval #> post: #> default : function (x) { ... #> meta: #> note : "Storey's q-value"