mergeCMAPs: This function merged two eSets.

Description Usage Arguments Value Author(s) Examples

View source: R/utility-functions.R

Description

This function merges two eSet objects, if all of the following conditions are met:

Usage

1
mergeCMAPs(x, y)

Arguments

x

An eSet.

y

An eSet of the same class as 'x'

Value

An eSet of the same class as 'x' and 'y'.

Author(s)

Thomas Sandmann, sandmann.thomas@gene.com

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
library(Biobase)
data( sample.ExpressionSet)

## Not run: 
## this doesn't work, because 'x' and 'y' have identical sampleNames
mergeCMAPs( sample.ExpressionSet, sample.ExpressionSet)

## End(Not run)

y <- sample.ExpressionSet
sampleNames( y ) <- paste( sampleNames( y ), "y", sep=".")
mergeCMAPs( sample.ExpressionSet, y )

gCMAP documentation built on April 29, 2020, 3:54 a.m.