read_fastq | R Documentation |
Read in raw data from a fastq file.
read_fastq(x, keep_quality = TRUE)
x |
The name of the fastq file to read data from. |
keep_quality |
Boolean indicating if the Phred quality scores should be retained in the output dataframe. Default is TRUE. |
#read in an unzipped fastq file
fastq_example_file = system.file('extdata/coi_sequel_data_subset.fastq',
package = 'debar')
data = read_fastq(fastq_example_file)
#read in a gzipped fastq file and do not keep the phred scores
gz_fastq_example_file = system.file('extdata/coi_sequel_data_subset.fastq',
package = 'debar')
data2 = read_fastq(gz_fastq_example_file, keep_quality = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.