Description Usage Arguments Value See Also Examples
View source: R/qualimap-plots.R
This function plots reads across genomic origin. If
info regarding the group
each sample
belongs to is also
available, then the generated plot will take that into account to colour /
facet accordingly.
1 | plot_genomic_origin(..., interactive = TRUE, geom = c("jitter", "bar"))
|
interactive |
logical, default is |
geom |
Possible values are |
... |
The set of |
The plot object
qualimap
plot_bias_profile
plot_coverage_profile
plot_junction_analysis
plot_read_alignment
1 2 3 4 5 6 7 8 9 10 11 | path = system.file("tests/qualimap-sample", package="ggqualimap")
obj = qualimap(sample_info = file.path(path, "annotation.txt"))
# interactive jitter
plot_genomic_origin(sample = obj)
# interactive bar plot
plot_genomic_origin(sample = obj, geom="bar")
# non-interactive bar plot
plot_genomic_origin(sample = obj, geom="bar", interactive=FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.