Description Usage Arguments Value Examples
limma voom method
1 | MethodVoom(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")
ss <- data.frame("trt" = colnames(count.table))
rownames(ss) <- ss$trt
ss$trt <- as.integer(grepl("T",ss[,1]))
design <- model.matrix(~ss$trt)
VoomDGE <- MethodVoom(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.