Description Usage Arguments Value Examples
DESeq2 method
1 | MethodDESeq2(count.table, design.matrix)
|
count.table |
count table |
design.matrix |
design matrix |
data.frame of differential gene expression quantification by Voom
1 2 3 4 5 6 7 | data("count.table")
design <- data.frame("trt" = colnames(count.table))
rownames(design) <- design$trt
design$trt <- as.integer(grepl("T",design[,1]))
design$trt <- paste0("C",design$trt)
DESeq2.DGE <- MethodDESeq2(count.table = count.table, design.matrix = design)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.