FASTQs
Overview
FASTQ is a common format for storing sequencing reads and the associated quality assessment. The Stereo-seq method is paired-end (PE) sequencing. Read 1 contains information of Coordinate ID (CID) and Molecular ID (MID) while read 2 contains captured RNA sequencing data. During multi-sample sequencing, an additional sequence (sample barcode) is added to identify samples. When sequencing data is inaccurate, a filtration process is conducted to remove low-quality MID sequences (those containing N bases in MID or having two or more bases with a quality value lower than 10) from read 1 and its paired read 2. The read ID of the filtered read 2 is then appended with CID and MID. Subsequently, the single strands in read 2, which contain RNA data, are written into the file in FASTQ format as the original sequencing data, with the exclusion of the sample barcode.
Quality records
Q40 FASTQ and Q4 FASTQ are two methods for base quality records, for the original sequencing data. Q40 adopts an evaluation system that describes the quality of sequenced bases with 41 quality values. Q4 refers to a similar evaluation system but with 4 quality values.
Storage types
Paired-FASTQ and grouped-FASTQ are two optional output formats for the original sequencing data.
You should notice that methods of quality records in FASTQs have nothing to do with storage types.
Paired FASTQs include a pair of read files, read 1 for CID, MID information and read 2 for captured RNA sequencing data respectively. An example of paired FASTQ
:
Grouped-FASTQ is an output format with only one read file split from a dataset (containing 16 or 64 parts in a group). Read ID in the file starts with "@" and includes the read name and encoded CID and MID information. The sequence part contains captured RNA sequencing data. The file storage space is greatly reduced because of the combined output format and fewer quality values. An example of grouped FASTQ
:
Expected name prefixes
The raw data generated from the sequencing platform is divided into two categories according to the storage types. Their file names have their own rules. --fastqs
requires a or several folder path(s), and all FASTQs under folders will be input into the SAW count
run. Please pay attention to your input directory.
For paired FASTQs, the file prefix indicates the sequencing slide, lane number and read index. A standard paired-FASTQ file follows the naming scheme: <slide>_<lane_number>_<read_index>.fq.gz
. Your paired-FASTQ file hierarchy looks similar to this:
For grouped FASTQs, the file prefix indicates the sequencing slide, lane number, sample barcode and split index. A standard grouped-FASTQ file follows the naming scheme:<slide>_<lane_number>_<sample_barcode>_<split_index>.fq.gz
.
Because of the split approach for data storage, grouped FASTQs need to be used in sets, which contain a set of 16 or 64 files.
Your grouped-FASTQ file hierarchy looks similar to this:
FASTQs of paired ones and grouped ones cannot be mixed for use in SAW count
run.
Last updated