Description Usage Arguments Value Examples
EdgeR method
1 | MethodEdgeR(count.table, design.matrix)
|
count.table |
count table |
design.matrix |
design matrix |
data.frame of differntial gene expression quantification by EdgeR
1 2 3 4 5 6 7 8 9 | 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)
EdgeR <- MethodEdgeR(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.