virtualArrayBuildSampleInfo: Build data.frame suitable as "pData" for several...

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

Description

A data.frame is created that holds the sample names and names of the ExpressionSets of the supplied list of ExpressionSets.

Usage

1
virtualArrayBuildSampleInfo(x)

Arguments

x

A list of ExpressionSets. Each entry must be represented by a character vector.

Details

This function is normally only called by "virtualArray.ExpressionSet".

Value

A data.frame is returned. It consists of the columns "Array.name", "Sample.name", "Batch" and "Covariate.1". The "Batch" column represents the name of the originating ExpressionSet. The column "Covariate.1" is only a dummy holding running numbers, one for each sample. It has to be edited and filled with meaningful information when "virtualArray" is run in supervised mode. Finally the "sample_info" data.frame can be used to fill the "pData" slot for a merged ExpressionSet derived from several ones.

Author(s)

Andreas Heider (2011)

See Also

virtualArray-package, virtualArray.ExpressionSet, virtualArrayCompile

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## first we need to load dummy data
library(affydata)
data(Dilution)
data(sample.ExpressionSet)
## we apply RMA to get an ExpressionSet
Dilution <- rma(Dilution,normalize=FALSE)
## we store the names of the ExpressionSets in a list
all_ExpressionSets <- list("Dilution","sample.ExpressionSet")
## now we generate a new data.frame suitable for "pData"
virtualArrayBuildSampleInfo(all_ExpressionSets)

virtualArray documentation built on Sept. 12, 2016, 6:10 a.m.