conditionTest | R Documentation |
Assess differential expression patterns between conditions within a lineage.
Assess differential expression patterns between conditions within a lineage.
conditionTest(models, ...)
## S4 method for signature 'SingleCellExperiment'
conditionTest(
models,
global = TRUE,
pairwise = FALSE,
lineages = FALSE,
knots = NULL,
l2fc = 0,
eigenThresh = 0.01
)
models |
The fitted GAMs, typically the output from
|
... |
parameters including: |
global |
If TRUE, test for all pairwise comparisons simultaneously, i.e. test for DE between all conditions in all lineages. |
pairwise |
If TRUE, return output for all comparisons between pairs of conditions.
Both |
lineages |
If TRUE, return output for all comparisons within each lineage.
Both |
knots |
Default to NULL. Otherwise, a vector of length 2 specifying the smallest and largest knots that are contrasted between conditions. |
l2fc |
The log2 fold change threshold to test against. Note, that this will affect both the global test and the pairwise comparisons. |
eigenThresh |
Eigenvalue threshold for inverting the variance-covariance matrix
of the coefficients to use for calculating the Wald test statistics. Lower values
are more lenient to adding more information but also decrease computational stability.
This argument should in general not be changed by the user but is provided
for back-compatability. Set to |
A matrix with the wald statistic, the number of degrees of freedom and the p-value associated with each gene for all the tests performed.
## artificial example
data(crv, package = "tradeSeq")
data("countMatrix", package = "tradeSeq")
conditions <- factor(sample(1:2, size = ncol(countMatrix), replace = TRUE))
sce <- fitGAM(as.matrix(countMatrix), sds = crv, conditions = conditions)
res <- conditionTest(sce)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.