View source: R/read_fastq_list.R
read.fastq_to_list | R Documentation |
This function reads a Fastq file and stores it as a list with three columns: Header, Sequence, and QualityScore.
read.fastq_to_list(fastq_file)
fastq_file |
A character string specifying the path to the Fastq file to be read. |
This function returns a list with three columns: Header, Sequence, and QualityScore.
# Read in sequences from a FASTQ file
sample_file_path_two <- system.file("extdata", "sample_fq.fastq", package = "baseq")
read.fastq_to_list(sample_file_path_two)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.