%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Do not modify this file since it was automatically generated from: % % normalizeAffine.matrix.R % % by the Rdoc compiler part of the R.oo package. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \name{normalizeAffine.matrix} \alias{normalizeAffine.matrix} \alias{normalizeAffine.matrix} \encoding{latin1} \title{Weighted affine normalization between channels and arrays} \description{ Weighted affine normalization between channels and arrays. This method will both remove curvature in the M vs A plots that are due to an affine transformation of the data. In other words, if there are (small or large) biases in the different (red or green) channels, biases that can be equal too, you will get curvature in the M vs A plots and this type of curvature will be removed by this normalization method. Moreover, if you normalize all slides at once, this method will also bring the signals on the same scale such that the log-ratios for different slides are comparable. Thus, do not normalize the scale of the log-ratios between slides afterward. It is recommended to normalize as many slides as possible in one run. The result is that if creating log-ratios between any channels and any slides, they will contain as little curvature as possible. Furthermore, since the relative scale between any two channels on any two slides will be one if one normalizes all slides (and channels) at once it is possible to add or multiply with the \emph{same} constant to all channels/arrays without introducing curvature. Thus, it is easy to rescale the data afterwards as demonstrated in the example. } \usage{\method{normalizeAffine}{matrix}(X, weights=NULL, typeOfWeights=c("datapoint"), method="L1", constraint=0.05, satSignal=2^16 - 1, ..., .fitOnly=FALSE)} \arguments{ \item{X}{An NxK \code{\link[base]{matrix}} (K>=2) where the columns represent the channels, to be normalized.} \item{weights}{If \code{\link[base]{NULL}}, non-weighted normalization is done. If data-point weights are used, this should be a \code{\link[base]{vector}} of length N of data point weights used when estimating the normalization function. } \item{typeOfWeights}{A \code{\link[base]{character}} string specifying the type of weights given in argument \code{weights}. } \item{method}{A \code{\link[base]{character}} string specifying how the estimates are robustified. See \code{\link{iwpca}}() for all accepted values.} \item{constraint}{Constraint making the bias parameters identifiable. See \code{\link[aroma.light:fitIWPCA.matrix]{*fitIWPCA}()} for more details.} \item{satSignal}{Signals equal to or above this threshold will not be used in the fitting.} \item{...}{Other arguments passed to \code{\link[aroma.light:fitIWPCA.matrix]{*fitIWPCA}()} and in turn \code{\link{iwpca}}(). For example, the weight argument of \code{\link{iwpca}}(). See also below.} \item{.fitOnly}{If \code{\link[base:logical]{TRUE}}, the data will not be back-transform.} } \value{ A NxK \code{\link[base]{matrix}} of the normalized channels. The fitted model is returned as attribute \code{modelFit}. } \section{Negative, non-positive, and saturated values}{ Affine normalization applies equally well to negative values. Thus, contrary to normalization methods applied to log-ratios, such as curve-fit normalization methods, affine normalization, will not set these to \code{\link[base]{NA}}. Data points that are saturated in one or more channels are not used to estimate the normalization function, but they are normalized. } \section{Missing values}{ The estimation of the affine normalization function will only be made based on complete non-saturated observations, i.e. observations that contains no \code{\link[base]{NA}} values nor saturated values as defined by \code{satSignal}. } \section{Weighted normalization}{ Each data point/observation, that is, each row in \code{X}, which is a vector of length K, can be assigned a weight in [0,1] specifying how much it should \emph{affect the fitting of the affine normalization function}. Weights are given by argument \code{weights}, which should be a \code{\link[base]{numeric}} \code{\link[base]{vector}} of length N. Regardless of weights, all data points are \emph{normalized} based on the fitted normalization function. } \section{Robustness}{ By default, the model fit of affine normalization is done in \eqn{L_1} (\code{method="L1"}). This way, outliers affect the parameter estimates less than ordinary least-square methods. For further robustness, downweight outliers such as saturated signals, if possible. We do not use Tukey's biweight function for reasons similar to those outlined in \code{\link[aroma.light:calibrateMultiscan.matrix]{*calibrateMultiscan}()}. } \details{ A line is fitted robustly throught the \eqn{(y_R,y_G)} observations using an iterated re-weighted principal component analysis (IWPCA), which minimized the residuals that are orthogonal to the fitted line. Each observation is down-weighted by the inverse of the absolute residuals, i.e. the fit is done in \eqn{L_1}. } \author{Henrik Bengtsson (\url{http://www.braju.com/R/})} \references{ [1] Henrik Bengtsson and Ola \enc{Hössjer}{Hossjer}, \emph{Methodological Study of Affine Transformations of Gene Expression Data}, Methodological study of affine transformations of gene expression data with proposed robust non-parametric multi-dimensional normalization method, BMC Bioinformatics, 2006, 7:100. \cr } \examples{ pathname <- system.file("data-ex", "PMT-RGData.dat", package="aroma.light") rg <- read.table(pathname, header=TRUE, sep="\t") nbrOfScans <- max(rg$slide) rg <- as.list(rg) for (field in c("R", "G")) rg[[field]] <- matrix(as.double(rg[[field]]), ncol=nbrOfScans) rg$slide <- rg$spot <- NULL rg <- as.matrix(as.data.frame(rg)) colnames(rg) <- rep(c("R", "G"), each=nbrOfScans) layout(matrix(c(1,2,0,3,4,0,5,6,7), ncol=3, byrow=TRUE)) rgC <- rg for (channel in c("R", "G")) { sidx <- which(colnames(rg) == channel) channelColor <- switch(channel, R="red", G="green"); # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # The raw data # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - plotMvsAPairs(rg[,sidx]) title(main=paste("Observed", channel)) box(col=channelColor) # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # The calibrated data # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - rgC[,sidx] <- calibrateMultiscan(rg[,sidx], average=NULL) plotMvsAPairs(rgC[,sidx]) title(main=paste("Calibrated", channel)) box(col=channelColor) } # for (channel ...) # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # The average calibrated data # # Note how the red signals are weaker than the green. The reason # for this can be that the scale factor in the green channel is # greater than in the red channel, but it can also be that there # is a remaining relative difference in bias between the green # and the red channel, a bias that precedes the scanning. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - rgCA <- rg for (channel in c("R", "G")) { sidx <- which(colnames(rg) == channel) rgCA[,sidx] <- calibrateMultiscan(rg[,sidx]) } rgCAavg <- matrix(NA, nrow=nrow(rgCA), ncol=2) colnames(rgCAavg) <- c("R", "G"); for (channel in c("R", "G")) { sidx <- which(colnames(rg) == channel) rgCAavg[,channel] <- apply(rgCA[,sidx], MARGIN=1, FUN=median, na.rm=TRUE); } # Add some "fake" outliers outliers <- 1:600 rgCAavg[outliers,"G"] <- 50000; plotMvsA(rgCAavg) title(main="Average calibrated (AC)") # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # Normalize data # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # Weight-down outliers when normalizing weights <- rep(1, nrow(rgCAavg)); weights[outliers] <- 0.001; # Affine normalization of channels rgCANa <- normalizeAffine(rgCAavg, weights=weights) # It is always ok to rescale the affine normalized data if its # done on (R,G); not on (A,M)! However, this is only needed for # esthetic purposes. rgCANa <- rgCANa *2^1.4 plotMvsA(rgCANa) title(main="Normalized AC") # Curve-fit (lowess) normalization rgCANlw <- normalizeLowess(rgCAavg, weights=weights) plotMvsA(rgCANlw, col="orange", add=TRUE) # Curve-fit (loess) normalization rgCANl <- normalizeLoess(rgCAavg, weights=weights) plotMvsA(rgCANl, col="red", add=TRUE) # Curve-fit (robust spline) normalization rgCANrs <- normalizeRobustSpline(rgCAavg, weights=weights) plotMvsA(rgCANrs, col="blue", add=TRUE) legend(x=0,y=16, legend=c("affine", "lowess", "loess", "r. spline"), pch=19, col=c("black", "orange", "red", "blue"), ncol=2, x.intersp=0.3, bty="n") plotMvsMPairs(cbind(rgCANa, rgCANlw), col="orange", xlab=expression(M[affine])) title(main="Normalized AC") plotMvsMPairs(cbind(rgCANa, rgCANl), col="red", add=TRUE) plotMvsMPairs(cbind(rgCANa, rgCANrs), col="blue", add=TRUE) abline(a=0, b=1, lty=2) legend(x=-6,y=6, legend=c("lowess", "loess", "r. spline"), pch=19, col=c("orange", "red", "blue"), ncol=2, x.intersp=0.3, bty="n") } \seealso{ \code{\link[aroma.light:calibrateMultiscan.matrix]{*calibrateMultiscan}()}. } \keyword{methods}