Description Usage Arguments Details Value Author(s) See Also Examples
Converts an ExpressionSet
or AffyBatch
object with one row of expression data per probeset into an ExpressionSet
or AffyBatch
object with one row per probe.
1 | psmeans(eS, ind)
|
eS |
An |
ind |
A vector used to indicate which probes go into which probesets. |
Each entry of ind
corresponds to one probe and tells the number of the probeset it belongs to. See tranestAffyProbeLevel
and sample.ind
for examples.
Returns an ExpressionSet
or AffyBatch
object with the expression matrix rows corresponding to probesets instead of individual
probes. Elements of the returned ExpressionSet
or AffyBatch
object are means over each probeset.
John Tillinghast
tranestAffyProbeLevel
, sample.ind
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | library(LMGene)
library(Biobase)
data(sample.eS)
data(sample.ind)
# glog transform data
trs.eS <- transeS (sample.eS, 667, 65)
# lowess normalize
ntrs.eS <- lnormeS(trs.eS)
# take means over probesets
genesample.eS<- psmeans (ntrs.eS, sample.ind)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.