ge_volcano | R Documentation |
Plots volcano plots from the outputs of the ge_annot() function.
ge_volcano(annot_res, fold_change = 2, p.adj = 0.05)
annot_res |
The output of ge_annot. List containing data frames of differential gene expression results between the different groups. |
fold_change |
An integer to define the fold change value to consider that a gene is differentially expressed. |
p.adj |
Numeric value to define the maximum adjusted p-value to consider that a gene is differentially expressed. |
Returns ggplot graphs.
results_dds <- ge_diff_exp(counts = sample_counts,
genes_id = 'ensembl_gene_id',
metadata = sample_metadata,
design = 'MSI_status',
ref_level = c('MSI_status', 'MSS'),
shrink = 'apeglm')
annot.res <- ge_annot(results_dds = results_dds, genes_id = 'ensembl_gene_id')
ge_volcano(annot_res = annot.res, fold_change = 2, p.adj = 0.05)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.