This is a test version of Biostars. For the public version, visit https://www.biostars.org.
FASTX-toolkit in iMAC

Hi, When I want to use FASTX-toolkit on iMAC , I get the following error "Invalid quality Score value (char '#' ord 35 quality value -29) on line 4 "

what does mean? Thank you!

rna-seq

1 answer

I think this means that the encoding of the quality values in the fastq file is different from what the fastx tool expects. Presence of # indicates 'Sanger' encoding (Ascii code - 33):

perl -e 'print ord("#") - 33, "\n"'
2

See : http://seqanswers.com/forums/showthread.php?t=7596 for a solution.

Log in to answer this question.