Performs differential expression analysis using DESeq2 on a given count matrix and sample information.
Arguments
- countData
A matrix or data frame of raw count data. Rows represent genes, and columns represent samples.
- sampleInfo
A data frame containing sample metadata. Must include a `condition` column specifying the experimental conditions.
- method
A string specifying the method for differential expression analysis. Currently supports only `"DESeq2"`. Default is `"DESeq2"`.
- cutoff
An integer specifying the minimum number of counts required across all samples for a gene to be included in the analysis. Default is `10`.
- annotation
ee