EzResult-class: The object that represents a result of an expression analysis

EzResult-classR Documentation

The object that represents a result of an expression analysis

Description

The object that represents a result of an expression analysis

Fields

param

EzParam object that was used during the result generation

rawData

list with the rawData that was used during the result generation

result

list holding the actual results, in particular, the log2 ration and the p-value

Functions

  • saveToFile(file): Saves the object to the given filepath. Saved files can be loaded with EzResult$new(file="mystoredResult.RData"

Author(s)

Rehrauer, Hubert

Schmid, Peter

Examples

deResult = EzResult$new()
deResult = EzResult$new(param=list(p1="p1", p2="p2"), rawData=list(a=0, b=1), result=list(u=0, v=1))
rdFile = tempfile(fileext = ".RData")
deResult$saveToFile(file = rdFile)
deResult2 = EzResult$new(file=rdFile)

uzh/ezRun documentation built on April 19, 2024, 8:25 a.m.