Description Usage Arguments Value Examples
Run the FastQC tool
| 1 2 | run_fastqc(fq.files = NULL, out.dir = NULL, threads = 1,
  fastqc = "fastqc")
 | 
| fq.files | Vector of the full names and paths of the fastq files. | 
| out.dir | Path to the directory to which to write the results. If NULL, which is the default, a directory named "FASTQC" is created in the current working directory. | 
| threads | The number of threads to use. The default is 1. | 
| fastqc | The path to the fastqc executable. On Unix systems, if the executable is in $PATH, then it may be left as the default ("fastqc"). If it is not in $PATH, then the absolute path should be given. If using the WSL on Windows 10, then the path must be the absolute path in WSL. | 
A directory containing the QC reports
| 1 2 3 4 5 | ## Not run: 
fq.files <- list.files(path = "data-raw", pattern = "*.fastq$")
fastqc(fq.files, out.dir = "FASTQ", threads = 2, fastqc = "~/bin/fastqc")
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.