Description Usage Arguments Details Value Author(s) References See Also Examples
This function converts a DataTreeSet
into an ExprTreeSet
using the transposed robust multi-array average (RMA) expression measure.
1 2 3 4 5 6 7 8 9 10 11 12 |
xps.data |
object of class |
filename |
file name of ROOT data file. |
filedir |
system directory where ROOT data file should be stored. |
tmpdir |
optional temporary directory where temporary ROOT files should be stored. |
background |
probes used to compute background, one of ‘pmonly’, ‘mmonly’, ‘both’; for genome/exon arrays one of ‘genomic’, ‘antigenomic’ |
normalize |
logical. If |
option |
option determining the grouping of probes for summarization, one of ‘transcript’, ‘exon’, ‘probeset’; exon arrays only. |
exonlevel |
exon annotation level determining which probes should be used for summarization; exon/genome arrays only. |
params |
list of (default) parameters for |
xps.scheme |
optional alternative |
add.data |
logical. If |
verbose |
logical, if |
This function computes the tRMA (transposed Robust Multichip Average) expression measure described in Giorgi et al. for both expression arrays and exon arrays.
To use method xpsRMA
or function express
to compute trma
you need
to set params = list(16384, 0.0, 1.0, 10, 0.01, 2)
.
For further details please see rma
An ExprTreeSet
Christian Stratowa
Federico M. Giorgi, Anthony M. Bolger, Marc Lohse and Bjoern Usadel (2010), Algorithm-driven Artifacts in median polish summarization of Microarray data. BMC Bioinformatics 11:553
1 2 3 4 5 6 7 8 9 10 11 12 | ## first, load ROOT scheme file and ROOT data file
scheme.test3 <- root.scheme(paste(path.package("xps"),"schemes/SchemeTest3.root",sep="/"))
data.test3 <- root.data(scheme.test3, paste(path.package("xps"),"rootdata/DataTest3_cel.root",sep="/"))
data.trma <- trma(data.test3,"tmp_Test3tRMA",tmpdir="",background="pmonly",normalize=TRUE,verbose=FALSE)
## get data.frame
expr.trma <- validData(data.trma)
head(expr.trma)
rm(scheme.test3, data.test3)
gc()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.