rpa2eset {RPA} | R Documentation |
An instance of 'rpa' class contains differential gene expression estimates in the variable 'd'. The function 'rpa2eset' coerces this into an ExpressionSet object to allow downstream analysis of the results using standard R/BioC tools for gene expression data.
rpa2eset(x)
x |
An instance of the rpa class. |
An 'ExpressionSet' object.
Leo Lahti <leo.lahti@tkk.fi>
Probabilistic Analysis of Probe Reliability in Differential Gene Expression Studies with Short Oligonucleotide Arrays. Lahti et al., TCBB/IEEE, to appear. See http://www.cis.hut.fi/projects/mi/software/RPA/
require(RPA) require(affy) require(affydata) data(Dilution) # Compute RPA for specific probesets sets = geneNames(Dilution)[1:5] rpa.results <- RPA.pointestimate(Dilution,sets) # Coerce the rpa object into an ExpressionSet eset = rpa2eset(rpa.results)