R/generateExprVal.method.avgdiff.R

Defines functions generateExprVal.method.avgdiff

Documented in generateExprVal.method.avgdiff

## Currently, the input is a 2 matrices a pm and a mm

##avdiff is more like median than mean, it would be nice to actually have
##avfif
##added typical se of the mean as returned se
generateExprVal.method.avgdiff <- function(probes, ...) {
  list(exprs=apply(probes, 2, median),se.exprs=apply(probes,2,sd)/sqrt(nrow(probes)))
}
Bioconductor/affy documentation built on July 21, 2023, 5:23 p.m.