Description Usage Arguments Value Examples
Complete report from DESeq2 analysis
1 2 3 4 5 6 7 8 9 10 11 12 13 14  | 
res | 
 output from   | 
dds | 
 
  | 
rlogMat | 
 matrix from   | 
name | 
 string to identify results  | 
org | 
 an organism annotation object, like org.Mm.eg.db. NULL if you want to skip this step.  | 
FDR | 
 int cutoff for false discovery rate.  | 
do_go | 
 boolean if GO enrichment is done.  | 
FC | 
 int cutoff for log2 fold change.  | 
group | 
 string column name in colData(dds) that separates samples in meaninful groups.  | 
xs | 
 string column name in colData(dss) that will be used as X axes in plots (i.e time)  | 
path_results | 
 character path where files are stored. NULL if you don't want to save any file.  | 
contrast | 
 list with character vector indicating the fold change values from different comparisons to add to the output table.  | 
ggplot2 object
1 2 3 4 5 6 7 8  | data(humanGender)
library(DESeq2)
idx <- c(1:10, 75:85)
dse <- DESeqDataSetFromMatrix(assays(humanGender)[[1]][1:1000, idx],
  colData(humanGender)[idx,], design=~group)
dse <- DESeq(dse)
res <- degResults(dds = dse, name = "test", org = NULL,
  do_go = FALSE, group = "group", xs = "group", path_results = NULL)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.