<p dir="ltr">Roy, you are awesome, as usual-<br>
Much appreciated! MAJ</p>
<br/><div class="cm_quote" style=" color: #787878">On Mon, Jan 26, 2015 at 9:51 AM, Roy Chaudhuri &lt;<a href="mailto:roy.chaudhuri@gmail.com">roy.chaudhuri@gmail.com</a>&gt; wrote:</div><br><div id="oldcontent" style="background-color: rgb(255, 255, 255); background-position: initial initial; background-repeat: initial initial;"><blockquote style=""><p dir="ltr">Hi Mark,
<br>

<br>
Here's the relevant bit of the manual:
<br>
http://search.cpan.org/~cjfields/BioPerl/Bio/SeqIO/fastq.pm#FASTQ_and_Bio::Seq::Quality_mapping
<br>

<br>
There's also this article, which goes into the issue in depth:
<br>
http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2847217
<br>

<br>
A short Illumina-&gt;Sanger fastq converter would be:
<br>

<br>
use Bio::SeqIO;
<br>
my $in=Bio::SeqIO-&gt;new(-file=&gt;$ARGV[0], -format=&gt;'fastq', 
<br>
-variant=&gt;'illumina');
<br>
my $out=Bio::SeqIO-&gt;new(-format=&gt;'fastq', -variant=&gt;'sanger');
<br>
$out-&gt;write_seq($_) while $_=$in-&gt;next_seq;
<br>

<br>
Cheers,
<br>
Roy.
<br>

<br>
On 26/01/2015 14:23, Mark A. Jensen wrote:
<br>
&gt; Hi folks,
<br>
&gt; I know I could RTFM, but maybe someone knows off the top of their head:
<br>
&gt; I understand that Illumina at one time made a switch in the constant
<br>
&gt; added to quality scores to generate the FASTQ that comes off their
<br>
&gt; instruments. This leads to a certain incomparability of data before and
<br>
&gt; after that switch. This is about all I know of the issue; does anyone
<br>
&gt; here have experience with this? Are there any BP modules that do this
<br>
&gt; translation?
<br>
&gt; much appreciated-
<br>
&gt; MAJ
<br>
&gt; _______________________________________________
<br>
&gt; Bioperl-l mailing list
<br>
&gt; Bioperl-l@mailman.open-bio.org
<br>
&gt; http://mailman.open-bio.org/mailman/listinfo/bioperl-l
<br>
</p>
</blockquote></div>