ModifierMLranger-class: ModifierMLranger class

Description Usage Arguments Value See Also Examples

Description

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.

Usage

1
2
## S4 method for signature 'ModifierMLranger,ModifierML'
useModel(x, y)

Arguments

x

a ModifierMLranger object

y

a ModifierML object

Value

a ModifierMLranger object

See Also

ModifierMLModel

Examples

1
2
3
4
5
6
7
# example class derived from the virtual ModifierMLranger class
setClass("ModifierMLexample",
         contains = c("ModifierMLranger"))
ModifierMLexample <- function(...){
  new("ModifierMLexample")
}
mlmodel <- ModifierMLexample()

RNAmodR.ML documentation built on Nov. 8, 2020, 6:40 p.m.