I want to produce the reverse-complement of each sequence in fastq files. I tried fastx_reverse_complement in FASTX-Toolkit. But following an error message were obtained. fastx_reverse_complement: Invalid quality score value (char '#' ord 35 quality value -29) on line 4
Are there any problems ? Are there any software producing the reverse-complement of each sequence in fastq files?
I think you can write your script to get the reverse complement using biopython.
Maybe your version of FASTX-Toolkit is too old ?
Edit: link to the commit that deprecated
-Q33
.See bowtie "Saw ASCII character -54 but expected 33-based Phred qual." after -Q 33 fastx reverse complement for a possible solution.
Can you explain to me why you are after the reverse complement of the FASTQ sequences please? Thanks.