View source: R/GeneTonic-extras.R
deseqresult2df | R Documentation |
DESeq2
resultsGenerate a tidy table with the results of DESeq2
deseqresult2df(res_de, FDR = NULL)
res_de |
A |
FDR |
Numeric value, specifying the significance level for thresholding adjusted p-values. Defaults to NULL, which would return the full set of results without performing any subsetting based on FDR. |
A tidy data.frame
with the results from differential expression,
sorted by adjusted p-value. If FDR is specified, the table contains only genes
with adjusted p-value smaller than the value.
data(res_de_macrophage, package = "GeneTonic")
head(res_macrophage_IFNg_vs_naive)
res_df <- mosdef::deresult_to_df(res_macrophage_IFNg_vs_naive)
head(res_df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.