Description Usage Arguments Value Examples
fixFastq parses a fastq (or fastq.gz) file for compliant fastq entries and writes these to the file specified in newfastq parameter. Any non-compliant reads are dropped
1 | fixFastq(fastq, newfastq)
|
fastq |
file location of fastq source |
newfastq |
location of file to write content to |
path to new fastq file (same as newfastq provided)
1 2 3 4 5 6 | badFastq <- system.file("extdata", "frankenFastq.fastq.gz", package =
"nanopoRe")
fastqValidator(badFastq)
tempFile <- tempfile(pattern="fastq", fileext=".fq")
fixFastq(badFastq, tempFile)
fastqValidator(tempFile)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.