Learn R Programming

DSS (version 2.12.0)

waldTest: Perform gene-wise Wald test for two group comparisons for sequencing count data.

Description

The counts from two groups are modeled as negative binomial random variables with means and dispersions estimated. Wald statistics will be constructed. P-values will be obtained based on Gaussian assumption.

Usage

"waldTest"(seqData, sampleA, sampleB, equal.var)

Arguments

seqData
An object of SeqCountSet class.
sampleA
The sample labels for the first sample to be compared in two-group comparison.
sampleB
The sample labels for the second sample to be compared in two-group comparison.
equal.var
A boolean to indicate whether to use the same or different means in two groups for computing variances in Wald test. Default is FALSE.

Value

A data frame with each row corresponding to a gene. Rows are sorted according to wald test statistics. The columns are:
gene Index
index for input gene orders, integers from 1 to the number of genes.
muA
sample mean (after normalization) for sample A.
muB
sample mean (after normalization) for sample B.
lfc
log fold change of expressions between two groups.
difExpr
differences in expressions between two groups.
stats
Wald test statistics.
pval
p-values.
others
input gene annotations supplied as AnnotatedDataFrame when constructed the SeqCountData object.

Details

The input seqCountData object Must have normalizationFactor and dispersion fields filled, e.g., estNormFactors and estDispersion need to be called prior to this. With group means and shrunk dispersions ready, the variances for difference in group means will be constructed based on Negative Binomial distribution. P-values will be obtained under the assumption that the Wald test statistics are normally distributed. Genes with 0 counts in both groups will be assigned 0 for test statistics and 1 for p-values.

Examples

Run this code
data(seqData)
seqData=estNormFactors(seqData)
seqData=estDispersion(seqData)
result=waldTest(seqData, 0, 1)
head(result)

Run the code above in your browser using DataLab