Run FastQC Tool
fastqc(
fq.dir = getwd(),
qc.dir = NULL,
threads = 4,
fastqc.path = "~/bin/FastQC/fastqc"
)
path to the directory containing fastq files. Default is the current working directory.
path to the FastQC result directory. If NULL, a directory named fastqc_results is created in the current working directory.
the number of threads to be used. Default is 4.
path to fastqc program
Create a directory containing the reports
if (FALSE) {
# Run FastQC: generates a QC directory
fastqc(fq.dir)
}