| deseq2_analysis | R Documentation | 
DESeq2 analysis
deseq2_analysis(txi, design, formula, filter = 2, count_matrix = NULL, ...)
| txi | The txi object returned by the import_kallisto function. | 
| design | The experimental design (see ?DESeqDataSetFromTximport). | 
| formula | The design formula in data.frame format (see ?DESeqDataSetFromTximport). | 
| filter | The minimum number of reads detected for a feature across all samples. Default: 2 | 
| count_matrix | Use an alternative count matrix to use for the
differential analysis instead of  | 
| ... | Extra param for the DESeq2::DESeq function | 
A DESeqDataSet object.
txi <- get_demo_txi()
design <- get_demo_design()
dds <- deseq2_analysis(txi, design, ~ group)
de <- DESeq2::results(dds, contrast = c("group", "A", "B"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.