Description Usage Arguments Value See Also Examples
This function plots the duplication percent across samples. 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_dup_stats(..., interactive = TRUE, geom = c("jitter", "point", "bar"))
|
interactive |
logical, default is |
geom |
Possible values are |
... |
The set of |
The plot object
fastqc
plot_total_sequence_stats
plot_sequence_quality
plot_gc_stats
1 2 3 4 5 6 7 8 9 10 11 12 | path <- system.file("tests/fastqc-sample", package="ggfastqc")
obj <- fastqc(sample_info = file.path(path, "annotation.txt"))
# interactive = TRUE (plotly)
plot_dup_stats(sample = obj) # geom = "jitter" (default)
plot_dup_stats(sample = obj, geom = "point")
plot_dup_stats(sample = obj, geom = "bar")
# interactive = FALSE (ggplot2)
plot_dup_stats(sample = obj, interactive = FALSE) # jitter
plot_dup_stats(sample = obj, interactive = FALSE, geom = "point")
plot_dup_stats(sample = obj, interactive = FALSE, geom = "bar")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.