qc_read | R Documentation |
Read FastQC data into R.
qc_read(file, modules = "all", verbose = TRUE)
file |
Path to the file to be imported. Can be the path to either :
|
modules |
Character vector containing the names of FastQC modules for which you want to import/inspect the data. Default is all. Allowed values include one or the combination of:
Partial match of module names allowed. For example, you can use modules = "GC content", instead of the full names modules = "Per sequence GC content". |
verbose |
logical value. If TRUE, print filename when reading. |
Returns a list of tibbles containing the data for specified modules.
# Demo file qc.file <- system.file("fastqc_results", "S1_fastqc.zip", package = "fastqcr") qc.file # Read all modules qc_read(qc.file) # Read a specified module qc_read(qc.file,"Per base sequence quality")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.