Description Usage Arguments Value Examples
fastqValidator will parse the specified fastq (or fastq.gz) file looking for fastq entry compliance. A boolean value of overall file compliance will be returned. Additional summary counts describing the reason for rejection are also made available
1 | fastqValidator(fastq)
|
fastq |
A fastq format DNA/RNA sequence file |
logical defining if fastq provided is indeed valid fastq
1 2 3 4 5 | fastq <- system.file("extdata", "example.fastq.gz", package = "nanopoRe")
fastqValidator(fastq)
badFastq <- system.file("extdata", "frankenFastq.fastq.gz",
package = "nanopoRe")
fastqValidator(badFastq)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.