merge.RGList {limma}R Documentation

Merge RGList Data Objects

Description

Merge two microarray data sets represented by RGLists.

Usage

## S3 method for class 'RGList':
merge(x,y,...)

Arguments

x RGList-class object with list components R, G, Rb and Gb containing the foreground and background intensities for each spot on each array.
y RGList object, corresponding to the same genes as for x, possibly in a different order, but with different arrays.
... other arguments are accepted but not used at present

Details

An RGList is a list object containing numeric matrices all of the same dimensions. The RGLists are merged by merging each of the components by row names. Unlike when using cbind, row names are not required to be in the same order or to be unique. In the case of repeated row names, the order of the rows with repeated names in preserved. This means that the first occurrence of each name in x$R is matched with the first occurrence of the same name in y$R, the second with the second, and so on. The final vector of row names is the same as in x.

Value

An RGList with the same components as x. Component matrices have the same rows names as in x but columns from y as well as x.

Author(s)

Gordon Smyth

See Also

R base provides a merge method for merging data.frames.

An overview of limma commands for reading, subsetting and merging data is given in 3.ReadingData.

Examples

R <- G <- matrix(11:14,4,2)
rownames(R) <- rownames(G) <- c("a","a","b","c")
RG1 <- new("RGList",list(R=R,G=G))

R <- G <- matrix(21:24,4,2)
rownames(R) <- rownames(G) <- c("b","a","a","c")
RG2 <- new("RGList",list(R=R,G=G))

merge(RG1,RG2)
merge(RG2,RG1)

[Package Contents]