<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Convert FASTQ to FASTQ]]></title>
	<link>https://bioinformaticsonline.com/snippets/view/39847/convert-fastq-to-fastq?</link>
	<atom:link href="https://bioinformaticsonline.com/snippets/view/39847/convert-fastq-to-fastq?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/snippets/view/39847/convert-fastq-to-fastq</guid>
	<pubDate>Thu, 15 Aug 2019 00:33:31 -0500</pubDate>
	<link>https://bioinformaticsonline.com/snippets/view/39847/convert-fastq-to-fastq</link>
	<title><![CDATA[Convert FASTQ to FASTQ]]></title>
	<description><![CDATA[<code># Convert FASTQ to FASTA
seqtk seq -a IN.fastq &gt; OUT.fasta

# Convert FASTQ to FASTA and set bases of quality lower than 20 to N
seqtk seq -aQ64 -q20 -n N IN.fastq &gt; OUT.fasta


# Download Seqtk
https://github.com/lh3/seqtk</code>]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>

</channel>
</rss>