#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)
qc <- qc_aggregate(qc.path, progressbar = FALSE) qc
Column names:
```{block, type = "block"}
The table shows, for each sample, the names of tested FastQC modules, the status of the test, as well as, some general statistics including the number of reads, the length of reads, the percentage of GC content and the percentage of duplicate reads.
## Summary ```r summary(qc)
Column names:
```{block, type = "block"} The table shows, for each FastQC module, the number and the name of samples that failed or warned.
## General statistics ```r qc_stats(qc)
Column names:
```{block, type = "block"} The table shows, for each sample, some genral statistics such as the total number of reads, the length of reads, the percentage of GC content and the percentage of duplicate reads
## Inspecting Problems ### Failed modules in the most samples ```r qc_fails(qc, "module")
```{block, type = "block"} For each module, the number of problems (failures) and the name of samples, that failed, are shown.
### Warned module in the most samples ```r qc_warns(qc, "module")
qc_problems(qc, "sample")
qc_problems(qc, "sample", compact = FALSE)
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.