This function calls
fastqc using
system2()
. To run in parallel, register a parallel backend, e.g., using
doParallel::registerDoParallel()
.
fastqc(filepaths, outputDir = "fastqc_output", cmd = "fastqc", args = NULL)
A vector of exit codes, invisibly.
Paths to fastq files. For single-end reads, each element should be a single filepath. For paired-end reads, each element can be two filepaths separated by ";".
Directory in which to store output. Will be created if it doesn't exist.
Name or path of the command-line interface.
Additional arguments to pass to the command-line interface.
seeker()