Description Usage Arguments Details Value Author(s) References See Also Examples
This functions performs optimised local intensity-dependent normalisation (OLIN) and optimised scaled intensity-dependent normalisation (OSLIN).
1 2 3 |
object |
object of class “marrayRaw” or “marrayNorm” corresponding to a single array or a batch of arrays. |
X |
matrix with x-coordinates of spots of the arrays in |
Y |
matrix with y-coordinates of spots. Each column includes the y-coodinates for the spots of one array.If Y=NA, rows on array are used as proxies for the location in y-direction |
alpha |
vector of alpha parameters that are tested in the GCV procedure |
iter |
number of iterations in the OLIN procedure |
scale |
vector of scale parameters that are tested in a GCV procedure for spatial regression. This define the amount of smoothing in X-direction with respect to smoothing in Y-direction. |
OSLIN |
If OSLIN=TRUE, subsequent scaling of the range of M accross the array is performed. |
weights |
matrix of (non-negative) weights for local regression (see |
genepix |
If |
bg.corr |
backcorrection method (for “marrayRaw” objects) : “none”, “subtract”, “half”, “minimum”, “movingmin”, “edwards” or “normexp”. |
... |
Further arguments for |
OLIN and OSLIN are based on iterative local regression and incorporate optimisation of model parameters.
Local regression is performed using LOCFIT, which requires the user to choose a specific smoothing parameter alpha
that controls the neighbourhood size h of local fitting. The parameter alpha
specifies the fraction of points that are included in the neighbourhood and thus has a value between 0 and 1.
Larger alpha
values lead to smoother fits.
Additionally, the setting of scale parameters controls for distinct amount of smoothing in
Y-direction compared to smoothing in X-direction.
The parameter scale
can be of arbitrary value.
The choice of model parameters alpha
and scale
for local regression is crucial for the efficiency and
quality of normalization. To optimize the model parameters, a general cross-validation procedure (GCV) is applied.
The arguments alpha
and scale
define the parameters values
which are tested in the GCV. OSLIN comprises the OLIN procedure with a
subsequent optimized scaling of the range of logged intensity ratios
across the spatial dimensions of the array. Details concerning the
background correction methods can be found in the help page for backgroundCorrect2
.
Detailed information about OLIN and OSLIN can be found in the package documentation and in the reference stated below.
The weights argument specifies the influence of the single spots on the local regression. To exclude
spots being used for the local regression (such as control spots), set their corresponding weight to zero.
Note that OLIN and OSLIN
are based on the assumptions that most genes are not differentially expressed (or up- and down-regulation
is balanced) and that genes are randomly spotted across the array. If these assumptions are not valid, local
regression can lead to an underestimation of differential expression. OSLIN is especially sensitive to violations of these assumptions. However, this
sensitivity can be decreased if the minimal alpha
-value is increased. Minimal alpha
defines the
smallest scale used for local regression. Increasing alpha
can reduce the influence of localised
artifacts as a larger fraction of data points is included. Alternative normalisation functions such
as oin
, lin
and ino
might also be used for a more conservative fit.
If the normalisation should be based on set of genes assumed to be not differentially expressed (house-keeping genes), weights can be used for local regression. In this case, all weights are set to zero except for the house-keeping genes for which weights are set to one. In order to achieve a reliable regression, it is important, however, that there is a sufficient number of house-keeping genes that are distributed over the whole expression range and spotted accross the whole array.
It is also important to note that OLIN/OSLIN is fairly efficient in removing intensity- and spatial-dependent dye bias, so that normalised data will look quite “good” after normalisation independently of the true underlying data quality. Normalisation by local regression assumes smoothness of bias. Therefore, localised artifacts such as scratches, edge effects or bubbles should be avoided. Spots of these areas should be flagged (before normalisation is applied) to ensure data integrity. To stringently detect artifacts, the OLIN functions fdr.int, fdr.spatial, p.int
and p.spatial
can be used.
Object of class “marrayNorm” with normalised logged ratios
Matthias E. Futschik (http://itb.biologie.hu-berlin.de/~futschik)
M.Futschik and T.Crompton (2004) Model selection and efficiency testing for normalization of cDNA microarray data, Genome Biology, 5:R60
M.Futschik and T.Crompton (2005) OLIN: Optimized normalization, visualization and quality testing for two-channel microarray data, Bioinformatics, 21(8):1724-6
OLIN web-page: http://itb.biologie.hu-berlin.de/~futschik/software/R/OLIN
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # LOADING DATA
data(sw)
data(sw.xy)
# OPTIMISED LOCAL INTENSITY-DEPENDENT NORMALISATION OF FIRST ARRAY
norm.olin <- olin(sw[,1],X=sw.xy$X[,1],Y=sw.xy$Y[,1])
# MA-PLOT OF NORMALISATION RESULTS OF FIRST ARRAY
plot(maA(norm.olin),maM(norm.olin),main="OLIN")
# CORRESPONDING MXY-PLOT
mxy.plot(maM(norm.olin)[,1],Ngc=maNgc(norm.olin),Ngr=maNgr(norm.olin),
Nsc=maNsc(norm.olin),Nsr=maNsr(norm.olin),main="OLIN")
# OPTIMISED SCALED LOCAL INTENSITY-DEPENDENT NORMALISATION
norm.oslin <- olin(sw[,1],X=sw.xy$X[,1],Y=sw.xy$Y[,1],OSLIN=TRUE)
# MA-PLOT
plot(maA(norm.oslin),maM(norm.oslin),main="OSLIN")
# MXY-PLOT
mxy.plot(maM(norm.oslin)[,1],Ngc=maNgc(norm.oslin),Ngr=maNgr(norm.oslin),
Nsc=maNsc(norm.oslin),Nsr=maNsr(norm.oslin),main="OSLIN")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.