Arguments
ES.obj.list
A list object containing the results from multiple gene expression studies.
Each element of the list is an object of class ES.obj
.
newnames
A data.frame
object that describes how to merge the results from different studies. It must have 3 columns, and a row for each probeset to be considered. The first column must be named "chip" and contain a name of a chip version used in one of the studies, corresponding to the "chip" slots of the ES.obj.list
argument. The second column must be named "old.name" and must hold the chip-specific name for each probeset. The third column must be named "new.name" and should hold the general name (Entrez ID, for example) that can be used to identify common probesets on the different chip versions. See the HGU.newnames
object in the given example code (and its creation in the vignette) for guidance on how to build this object.
min.var
(optional) A positive real number that acts as a lower bound on the allowed variances for any measure of differential expression. This might be used to guard against specious claims of significance due to naturally low variance.
include.row.indices
(optional) A logical value to determine whether or not to include the study and row indices for the data for each gene in the returned list of metaprep
objects. Only used for debugging purposes, and so defaults to FALSE.
show.warnings
(optional) A logical value to determine whether or not to display warnings in certain situations, like if a gene is expected in a particular study but not found, or if a gene is not found in any study, or on some other instances. This may sometimes cause a large number of uninteresting warnings to be displayed, and so defaults to FALSE.
pd.verify
(optional) A logical value to determine whether or not to check the generated variance/covariance matrix for positive-definiteness. Since this should always be the case, this would indicate a problem somewhere in the data -- more specifically, in the covariance values of one of the studies in the ES.obj.list
argument. Used primarily for debugging, and so defaults to FALSE.