Fastq Qualities For Solexa/Illumina
3
10
Entering edit mode
14.0 years ago

The FASTQ Format Specification says:

Although Solexa/Illumina read file looks pretty much like FASTQ, they are different in that the qualities are scaled differently. In the quality string, if you can see a character with its ASCII code higher than 90, probably your file is in the Solexa/Illumina format.

Should I care about this when I use some tools such as MAQ, SAMTOOLS, GATK, etc... ?

sequencing-quality next-gen-sequencing fastq • 9.4k views
ADD COMMENT
15
Entering edit mode
14.0 years ago

Absolutely. There are, annoyingly, 3 different fastq quality encodings. The wikipedia page is a very good resource: http://en.wikipedia.org/wiki/FASTQ_format and this paper from several OpenBio folks: http://nar.oxfordjournals.org/cgi/content/abstract/38/6/1767

All aligners that use quality scores will have a flag to specify which encoding your fastq file is in. The approach Galaxy takes is to use a groomer to convert everything to Sanger format, and then work from there: http://main.g2.bx.psu.edu/u/dan/p/fastq

ADD COMMENT
1
Entering edit mode

Actually BWA doesn't really, but samtools expects phred+33 quals, if that's not what it gets, the pileup caller and varfilter will not give good results (they'll be over confident)

ADD REPLY
3
Entering edit mode
14.0 years ago

Usually you will need to pass a flag to specify the encoding type. When using the bowtie aligner for example you will have to pass the flag:

--phred64-quals

For some tools you may need to convert them yourself.

PS. The Illumina software with version prior to 1.3 uses a different formula for producing the quality measures

ADD COMMENT
3
Entering edit mode
13.6 years ago

The FASTX toolkit has an undocumented option to set the offset for the ascii quality conversion. The default offset is 64 (i.e. Illumina quality encoding) but this can be overridden with the -Q option, e.g.:

$ fastq_to_fasta -n -Q 33 -i in.fq -o out.fa

See: http://seqanswers.com/forums/showthread.php?t=6701

ADD COMMENT

Login before adding your answer.

Traffic: 1849 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6