Description Usage Arguments Value Functions control Return Value See Also Examples
Modules defined in sets
are tested for average differences in expression from the "average" gene.
By using bootstraps, the between-gene covariance of terms in the hurdle model is found, and is used to adjust for coexpression between genes.
We drop genes if the coefficient we are testing was not estimible in original model fit in zFit
or in any of the bootstrap replicates (evidenced an NA
in the bootstrap array). This might yield overly conservative inference.
Since bootstrapping is a randomized procedure, the degrees of freedom of a module (and its variance parameters) might differ from run-to-run.
You might try setting var_estimate='modelbased'
to relax this requirement by assuming independence between genes and then using the asymptotic covariance estimates, which are deterministic, but may result in overly-generous inference.
1 2 3 4 5 6 7 8 9 | gseaAfterBoot(
zFit,
boots,
sets,
hypothesis,
control = gsea_control(n_randomize = Inf, var_estimate = "bootall")
)
gsea_control(n_randomize = Inf, var_estimate = "bootall")
|
zFit |
object of class ZlmFit |
boots |
bootstraps of zFit |
sets |
list of indices of genes |
hypothesis |
a |
control |
parameters as provided by |
n_randomize |
the number of genes to sample to approximate the non-module average expression. Set to |
var_estimate |
the method used to estimate the variance of the modules, one of |
Object of class GSEATests
, containing slots tests
, 4D array and bootR
, the number of boostrap replicates.
gsea_control
: set control parameters. See Details.
control
control
is a list with elements:
n_randomize
, giving the number of genes to sample to approximate the non-module average expression. Set to Inf
to turn off the approximation (the default).
var_estimate
, giving the method used to estimate the variance of the modules. bootall
uses the bootstrapped covariance matrices. bootdiag
uses only the diagonal of the bootstrapped covariance matrix (so assuming independence across genes). modelbased
assumes independence across genes and uses the variance estimated from the model.
A 4D array is returned, with dimensions "set" (each module), "comp" ('disc'rete or 'cont'inuous), "metric" ('stat' gives the average of the coefficient, 'var' gives the variance of that average, 'dof' gives the number of genes that were actually tested in the set), "group" ('test' for the genes in test-set, "null" for all genes outside the test-set).
calcZ
summary,GSEATests-method
1 2 3 4 5 6 7 8 9 10 11 12 | data(vbetaFA)
vb1 = subset(vbetaFA, ncells==1)
vb1 = vb1[,freq(vb1)>.1][1:15,]
zf = zlm(~Stim.Condition, vb1)
boots = bootVcov1(zf, 5)
sets = list(A=1:5, B=3:10, C=15, D=1:5)
gsea = gseaAfterBoot(zf, boots, sets, CoefficientHypothesis('Stim.ConditionUnstim'))
## Use a model-based estimate of the variance/covariance.
gsea_mb = gseaAfterBoot(zf, boots, sets, CoefficientHypothesis('Stim.ConditionUnstim'),
control = gsea_control(var_estimate = 'modelbased'))
calcZ(gsea)
summary(gsea)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.