Description Usage Arguments Value Author(s) Examples
Creates an allelic counts plot, ie, counts of the alternative vs counts of the reference on the log10 scale. If significant and minor allele frequency columns present, dots will be highlighted accordingly.
1 2 3 4 5 6 7 | plotAllelicCounts(
data,
title = NULL,
padjCutoff = 0.05,
allelicRatioCutoff = 0.8,
rare_column = NULL
)
|
data |
A data.frame containing the counts or results table from |
title |
The plot's title |
padjCutoff |
The significance level |
allelicRatioCutoff |
The minimum allelic ratio ALT/(ALT+REF) to be considered signficant |
rare_column |
The name of the column that indicates if a variant is rare or not.
Default is |
A ggplot object containing the MA plot.
Vicente Yepez
1 2 3 4 5 | file <- system.file("extdata", "allelic_counts_HG00187.csv",
package = "tMAE", mustWork = TRUE)
maeCounts <- fread(file)
res <- DESeq4MAE(maeCounts)
plotAllelicCounts(res)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.