fromDatatoMzQCobj {rmzqc} | R Documentation |
Allow conversion of a plain R object (obtained from jSON) to an mzQC object
Description
If you have a list of elements, call fromDatatoMzQC.
Usage
fromDatatoMzQCobj(mzqc_class, data, context = NULL)
Arguments
mzqc_class |
Prototype of the class to convert 'data' into |
data |
A datastructure of R lists/arrays as obtained by 'jsonlite::fromJSON()' |
context |
A trace through the mzQC object tree to aid users in case of errors |
Examples
data = MzQCcvParameter$new("acc", "myName", "value")
data_recovered = fromDatatoMzQCobj(MzQCcvParameter, jsonlite::fromJSON(jsonlite::toJSON(data)))
data_recovered
[Package rmzqc version 0.7.0 Index]