<div dir="ltr"><div><div>Sorry, that was a typo not using the SangerFastqReader in the original post I made.  I tried all the different readers just in case...<br><br></div>Using SangerReader still throws an exception if I use a non-sanger writer<br><br>       FastqReader fastqReader = new SangerFastqReader();<br>        FastqWriter fastqWriter = new IlluminaFastqWriter();       <br>       <br>       <br>        <br>        PrintStream out = ...<br></div>        InputStream in = ...<br><div>        fastqReader.stream(in,<br>                new StreamListener() {<br>            <br>            @Override<br>            public void fastq(Fastq fastq) {<br>                    <br>                if (fastq.getSequence().length() &gt; 20){<br>                    <br>                    try {<br>                        fastqWriter.append(out, fastq);<br>                    } catch (IOException e) {<br>                       throw new UncheckedIOException(e);<br>                    }<br>                }<br>            }<br>        });<br><br></div><div>Still throws an exception when trying to write the first read.<br><br></div><div>If I change the FastqWriter to a SangerWriter so the reader and writer are  the same variant, it works as expected.<br><br></div><div>Stepping through the code, there is no code that actually performs any conversion in the Writer implementations or their parent class AbstractFastqWriter<br><br></div><div>It would be easy to add to the abstract writer, the code would be similar to what I posted above to make a new encoded quality string using the correct offset.<br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Sep 17, 2015 at 5:50 AM, Peter Cock <span dir="ltr">&lt;<a href="mailto:p.j.a.cock@googlemail.com" target="_blank">p.j.a.cock@googlemail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Thu, Sep 17, 2015 at 3:26 AM, Daniel Katzel &lt;<a href="mailto:dkatzel@gmail.com">dkatzel@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; The fastq file I was using is part of the 1000genomes phase 3 dataset<br>
&gt; (very large gzipped files) with about 25 million records each.  The reads<br>
&gt; are short so it is probably old.<br>
&gt;<br>
&gt; Here&#39;s the file I used<br>
&gt;<br>
&gt; <a href="ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/phase3/data/HG00096/sequence_read/SRR062634_1.filt.fastq.gz" rel="noreferrer" target="_blank">ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/phase3/data/HG00096/sequence_read/SRR062634_1.filt.fastq.gz</a><br>
&gt;<br>
&gt; I made a histogram of the encoded quality values as ascii:<br>
&gt;<br>
&gt;   33 :          166838<br>
&gt;   34 :               0<br>
&gt;   35 :       100598505<br>
&gt;   36 :           26817<br>
&gt;   37 :          156873<br>
&gt;   38 :          268700<br>
&gt;   39 :          419677<br>
&gt;   40 :          807326<br>
&gt;   41 :          997720<br>
&gt;   42 :          889665<br>
&gt;   43 :          946268<br>
&gt;   44 :         2372479<br>
&gt;   45 :         4147316<br>
&gt;   46 :          760108<br>
&gt;   47 :          850433<br>
&gt;   48 :         1433894<br>
&gt;   49 :         1165379<br>
&gt;   50 :         1769347<br>
&gt;   51 :         2493316<br>
&gt;   52 :         2966864<br>
&gt;   53 :        12457233<br>
&gt;   54 :         3172484<br>
&gt;   55 :         3741809<br>
&gt;   56 :         3722004<br>
&gt;   57 :         4320581<br>
&gt;   58 :        23804570<br>
&gt;   59 :         6554713<br>
&gt;   60 :         7207725<br>
&gt;   61 :        33021639<br>
&gt;   62 :        13106991<br>
&gt;   63 :        60909837<br>
&gt;   64 :        36753951<br>
&gt;   65 :        70258165<br>
&gt;   66 :        91889938<br>
&gt;   67 :       102533947<br>
&gt;   68 :       129093976<br>
&gt;   69 :       368143099<br>
&gt;   70 :       231023980<br>
&gt;   71 :      1089945133<br>
&gt;<br>
&gt;<br>
&gt; You can see the lowest value is 33 which means SANGER encoding.<br>
&gt;<br>
<br>
</div></div>Yes, this looks like the Sanger FASTQ encoding :)<br>
<br>
(Some data archives would convert from the legacy Solexa or Illumina<br>
1.3+ quality encodings into the standard Sanger FASTQ encoding).<br>
<br>
Because this is the Sanger FASTQ encoding, you should be using the<br>
SangerFastqReader. Your original email was using the<br>
IlluminaFastqReader which should have complained that there were ASCI<br>
characters under 64 present. That is presumably what happened given<br>
the message:<br>
<span class=""><br>
<br>
Caused by: java.io.IOException: sequence SRR062634.1<br>
HWI-EAS110_103327062:6:1:1092:8469/1 not fastq-illumina format, was<br>
fastq-sanger<br>
        at org.biojava.nbio.sequencing.io.fastq.IlluminaFastqWriter.validate(IlluminaFastqWriter.java:43)<br>
        at org.biojava.nbio.sequencing.io.fastq.AbstractFastqWriter.append(AbstractFastqWriter.java:62)<br>
        at org.biojava.nbio.sequencing.io.fastq.AbstractFastqWriter.append(AbstractFastqWriter.java:46)<br>
<br>
<br>
</span>Do you think this error message can be made clearer?<br>
<br>
We did come up with a whole set of functional tests including<br>
inter-conversion of the FASTQ encodings which are provided with the<br>
NAR paper as supplementary materials and used in the Bio* and EMBOSS<br>
test suites.<br>
<br>
<a href="http://dx.doi.org/10.1093/nar/gkp1137" rel="noreferrer" target="_blank">http://dx.doi.org/10.1093/nar/gkp1137</a><br>
<span class="HOEnZb"><font color="#888888"><br>
Peter<br>
</font></span></blockquote></div><br></div>