normLoc: Normalise a cDNA Microarray Object

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/normLoc.R

Description

This function loads a maigesRaw object and corrects for location bias.

Usage

1

Arguments

obj

object of type maigesRaw to be normalised.

...

additional parameters for function normalizeWithinArrays from limma package.

Details

This function for normalisation is entirely based on the function normalizeWithinArrays from limma package. See their help page to known how to setup the parameters correctly. The parameters layout and weights, are automatically specified by the object obj and must not be specified.

Value

This function returns a maiges object.

Author(s)

Gustavo H. Esteves <gesteves@vision.ime.usp.br>

See Also

normalizeWithinArrays from limma package.

Examples

1
2
3
4
5
6
7
8
## Loading the dataset
data(gastro)

## Do the normalization by loess method and span 0.4
gastro.norm = normLoc(gastro.raw2, span=0.4, method="loess")

## Do the same normalization without background subtraction
gastro.norm = normLoc(gastro.raw2, span=0.4, method="loess", bc.method="none")

maigesPack documentation built on Nov. 8, 2020, 6:23 p.m.