View source: R/RNAseqWrapper.R
DSS.DE | R Documentation |
This is the top level wrapper function for RNA-seq differential expression analysis in a two-group comparison. Users only need to provide the count matrix and a vector for design, and obtain DE test results.
DSS.DE(counts, design)
counts |
A matrix of integers with rows corresponding to genes and columns for samples. |
design |
A vector representing the treatment groups. It must be a vector of 0 and 1. The length of the vector must match the number of columns of input count matrix. |
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. |
Hao Wu <hao.wu@emory.edu>
counts = matrix(rpois(600, 10), ncol=6)
design = c(0,0,0,1,1,1)
result = DSS.DE(counts, design)
head(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.