Description Usage Arguments Details Value Author(s) References Examples
This function is intended to facilitate the meta-analysis of multiple gene expression studies. This function takes the results from a number of studies and collects together the data for each gene, in preparation for a meta-analysis.
1 2 3 | metahdep.format(ES.obj.list, newnames, min.var = 0.0001,
include.row.indices = FALSE, show.warnings = FALSE,
pd.verify = FALSE)
|
ES.obj.list |
A list object containing the results from multiple gene expression studies.
Each element of the list is an object of class |
newnames |
A |
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 |
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 |
Each element of the returned list is a metaprep
object summarizing effect size data for a single gene. This list of metaprep
gene information is passed to the metahdep()
function for meta-analysis.
A list, where each element is a gene-specific object of class metaprep
.
John R. Stevens, Gabriel Nicholas
Stevens J.R. and Nicholas G. (2009), metahdep: Meta-analysis of hierarchically dependent gene expression studies, Bioinformatics, 25(19):2619-2620.
See also the metahdep package vignette.
1 2 3 4 5 6 7 8 9 10 | ## load a pre-made list of ES.obj's and newnames data.frame. These objects hold
## data in a format suitable for use in the metahdep.format function.
data(HGU.DifExp.list)
data(HGU.newnames)
## now call the format function;
## this may take anywhere from several seconds to several minutes,
## depending on the speed of the computer and the number of genes under
## consideration
HGU.prep.list <- metahdep.format(HGU.DifExp.list, HGU.newnames)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.