Extract results from a DESeq2 analysis and return a tidy tibble with tRNA identifiers and significance flags.
Arguments
- dds
A
DESeqDataSetobject (fromrun_deseq()).- contrast
A contrast specification: either a character vector of length 3 (e.g.,
c("condition", "mutant", "wildtype")) or a list for coefficient-based contrasts.- padj_cutoff
Adjusted p-value threshold for significance. Default
0.05.
Examples
if (FALSE) { # \dontrun{
res <- tidy_deseq_results(dds, contrast = c("condition", "mut", "wt"))
res
} # }