Description Usage Arguments Value See Also Examples
This function plots the per base sequence quality 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_sequence_quality(..., interactive = TRUE, geom = c("line"))
|
interactive |
logical, default is |
geom |
Only possible value is |
... |
The set of |
The plot object
fastqc
plot_dup_stats
plot_total_sequence_stats
plot_gc_stats
1 2 3 4 5 6 7 8 | path <- system.file("tests/fastqc-sample", package="ggfastqc")
obj <- fastqc(sample_info = file.path(path, "annotation.txt"))
# interactive = TRUE (plotly)
plot_sequence_quality(sample = obj)
# interactive = FALSE (ggplot2)
plot_sequence_quality(sample = obj, interactive = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.