deseqresult2DEgenes: Generate a tidy table with the DE genes from the results of...

Description Usage Arguments Value Examples

View source: R/res2tbl.R

Description

Generate a tidy table with the DE genes from the results of DESeq

Usage

1
deseqresult2DEgenes(deseqresult, FDR = 0.05)

Arguments

deseqresult

A DESeqResults object

FDR

Numeric value, the significance level for thresholding adjusted p-values

Value

A "tidy" data.frame with only genes marked as differentially expressed

Examples

1
2
3
4
5
6
# with simulated data...
library(DESeq2)
dds <- DESeq2::makeExampleDESeqDataSet(n=100, m=8, betaSD = 2)
dds <- DESeq(dds)
res <- results(dds)
deseqresult2DEgenes(res)

ideal documentation built on Nov. 8, 2020, 5:02 p.m.