This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How to determine the encoding method of quality score in a fastq file?

As you know, there are two general standards for the sequencing quality of fastq files: Phred+33 and Phred+64.

I have a very old fastq file that was generated on Genome Analyzer IIx platform (FC-104-50xx). I am not sure about the score of this fastaq has it gone through some conversions, is there some simple way to infer from the fastq total whether his sequencing quality score is Phred+33, Solexa+64 or Phred+64

fastq samtools bwa ngs

Try seqkit convert which converts FASTQ quality encoding between Sanger, Solexa and Illumina.

Since this file has been generated for a long time, I'm not quite sure if it has undergone some kind of conversion, is it possible to test the encoding way?

1 answer

You can use gaas_fastq_guessMyFormat.pl from GAAS

e.g. with conda

conda create -n gaas_env gaas
conda activate gaas
gaas_fastq_guessMyFormat.pl -i myfile.fastq.gz

Log in to answer this question.