| ModifierMLranger-class {RNAmodR.ML} | R Documentation |
The ModifierMLranger class extends the virtual class
ModifierMLModel and unifies the access to
ranger machine learning models used in the
detection of post-transcriptional modifications in RNA sequencing data. The
ModifierMLranger class is virtual itself and must be extended from for
each individual machine learning model.
## S4 method for signature 'ModifierMLranger,ModifierML' useModel(x, y)
x |
a |
y |
a |
a ModifierMLranger object
# example class derived from the virtual ModifierMLranger class
setClass("ModifierMLexample",
contains = c("ModifierMLranger"))
ModifierMLexample <- function(...){
new("ModifierMLexample")
}
mlmodel <- ModifierMLexample()