Nothing
#Knitr settings knitr::opts_chunk$set( warning=FALSE, message=FALSE, echo=TRUE, tidy=FALSE, error=FALSE, fig.show='hold', fig.width=3.5, fig.height = 3.5 ) options(width=150)
if(is.null(experiment)) experiment <- "Sequencing data"
r Sys.Date()
r qc.path
r packageDescription("fastqcr")$Version
r experiment
library(fastqcr) library(dplyr)
# Read all modules qc <- qc_read(qc.path) # Elements contained in the qc object names(qc)
Summary shows a summary of the modules which were tested, and the status of the test resuls:
Some experiments may be expected to produce libraries which are biased in particular ways. You should treat the summary evaluations therefore as pointers to where you should concentrate your attention and understand why your library may not look normal.
qc_plot(qc, "summary")
Basic statistics shows basic data metrics such as:
qc_plot(qc, "Basic statistics")
qc_plot(qc, "Per base sequence quality")
qc_plot(qc, "Per sequence quality scores")
qc_plot(qc, "Per base sequence content")
qc_plot(qc, "Per sequence GC content")
qc_plot(qc, "Per base N content")
qc_plot(qc, "Sequence length distribution")
qc_plot(qc, "Sequence duplication levels")
qc_plot(qc, "Overrepresented sequences")
qc_plot(qc, "Adapter content")
qc_plot(qc, "Kmer content")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.