<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to description</title><link>https://sourceforge.net/p/fastqvizqual/home/description/</link><description>Recent changes to description</description><atom:link href="https://sourceforge.net/p/fastqvizqual/home/description/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 01 Dec 2011 22:10:30 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/fastqvizqual/home/description/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage description modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/fastqvizqual/home/description/</link><description>&lt;pre&gt;--- v7 
+++ v8 
@@ -1,4 +1,4 @@
-Simple python code that produces color-coded quality plots based on fastq format read quality scores. Scores are averaged over binned read tile coordinates. Useful for spotting spatial quality patterns. 
+Python script that produces color-coded quality plots based on fastq format read quality scores. Scores are averaged over binned read tile coordinates. Useful for spotting spatial quality patterns. 
 
 
 **Use**:
&lt;/pre&gt;</description><pubDate>Thu, 01 Dec 2011 22:10:30 -0000</pubDate><guid>https://sourceforge.netb702d0975687c453d79c8a1c1c8d381fa0bcecaa</guid></item><item><title>WikiPage description modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/fastqvizqual/home/description/</link><description>&lt;pre&gt;--- v6 
+++ v7 
@@ -21,8 +21,7 @@
 
 &gt; python tile_visual_quality.py example_fastq_file.txt test --base 2 --ngrid 200
 
-The second line should produce a file named "test_tile14_base2.png" which looks like this:
-
+The second line should produce a file named "test_tile14_base2.png" which looks like the attachment.
 
 
 **Links**:
&lt;/pre&gt;</description><pubDate>Fri, 16 Sep 2011 07:38:59 -0000</pubDate><guid>https://sourceforge.netbb6b4496166fd11a57b0400047f15ee78c4122c9</guid></item><item><title>WikiPage description modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/fastqvizqual/home/description/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -1,23 +1,28 @@
-- Plot the quality scores of reads in a tile as color-coded pixels in 2D
-- Read tile numbers, coordinates and scores from a regular fastq file format
-
+Simple python code that produces color-coded quality plots based on fastq format read quality scores. Scores are averaged over binned read tile coordinates. Useful for spotting spatial quality patterns. 
+
+
 **Use**:
 
 &gt; python tile_visual_quality.py fastq_file_name image_output_name \[--ngrid int --tile int --base int --encoding str\]
 
 1. options in [] are optional, --ngrid controls the resolution, --tile selects the tile to be plotted, --base selects the base position for which the score is calculated, range from 0 to k-1, where the read length is k
 
 2. default ngrid is 500, default tile is all
 
 3. if no base position is specified, the median of the score across all (ex: 36) bases is used for every read
 
 4. encoding type: 'sanger', 'illumina1.0' or 'illumina1.3', default is 'illumina1.3'
 
 5. Requires python packages argparse, sys, matplotlib, numpy
 
 **Example**:
 
 &gt; python tile_visual_quality.py data.fastq tile.png --ngrid 500 --tile 10 --base 5 --encoding 'illumina1.3'
+
+&gt; python tile_visual_quality.py example_fastq_file.txt test --base 2 --ngrid 200
+
+The second line should produce a file named "test_tile14_base2.png" which looks like this:
+
 
 
 **Links**:
&lt;/pre&gt;</description><pubDate>Fri, 16 Sep 2011 07:38:17 -0000</pubDate><guid>https://sourceforge.net7e01c7351749e5df1b2f23dd196b19813fe64456</guid></item><item><title>WikiPage description modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/fastqvizqual/home/description/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><pubDate>Fri, 16 Sep 2011 07:37:40 -0000</pubDate><guid>https://sourceforge.netb931dc05fdba2b3ff78dfeda3b5593262842d44d</guid></item><item><title>WikiPage description modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/fastqvizqual/home/description/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -26,5 +26,4 @@
 [Score encoding](http://en.wikipedia.org/wiki/FASTQ_format#Variations)
 
 
-[[project_admins]]
 [[download_button]]
&lt;/pre&gt;</description><pubDate>Fri, 16 Sep 2011 07:31:36 -0000</pubDate><guid>https://sourceforge.net96a92fb267fb16cd83ab148e6b97cc5dfacc600d</guid></item><item><title>WikiPage description modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/fastqvizqual/home/description/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -1,3 +1,29 @@
+- Plot the quality scores of reads in a tile as color-coded pixels in 2D
+- Read tile numbers, coordinates and scores from a regular fastq file format
+
+**Use**:
+
+&gt; python tile_visual_quality.py fastq_file_name image_output_name \[--ngrid int --tile int --base int --encoding str\]
+
+1. options in [] are optional, --ngrid controls the resolution, --tile selects the tile to be plotted, --base selects the base position for which the score is calculated, range from 0 to k-1, where the read length is k
+
+2. default ngrid is 500, default tile is all
+
+3. if no base position is specified, the median of the score across all (ex: 36) bases is used for every read
+
+4. encoding type: 'sanger', 'illumina1.0' or 'illumina1.3', default is 'illumina1.3'
+
+5. Requires python packages argparse, sys, matplotlib, numpy
+
+**Example**:
+
+&gt; python tile_visual_quality.py data.fastq tile.png --ngrid 500 --tile 10 --base 5 --encoding 'illumina1.3'
+
+
+**Links**:
+
+[FASTQ format](http://en.wikipedia.org/wiki/FASTQ_format)
+[Score encoding](http://en.wikipedia.org/wiki/FASTQ_format#Variations)
 
 
 [[project_admins]]
&lt;/pre&gt;</description><pubDate>Fri, 16 Sep 2011 07:29:58 -0000</pubDate><guid>https://sourceforge.neta64fe0b5e0c8b325adc35486d8d0dd5684a98f80</guid></item><item><title>WikiPage description modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/fastqvizqual/home/description/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,5 +1,4 @@
-Welcome to your wiki!
-
-This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/fastqvizqual/home/markdown_syntax/) syntax.
+
+
+[[project_admins]]
+[[download_button]]
&lt;/pre&gt;</description><pubDate>Fri, 16 Sep 2011 07:26:24 -0000</pubDate><guid>https://sourceforge.net8332c541c89bec5051239fcfd18df6b46116bf9a</guid></item><item><title>WikiPage Home modified by &lt;REDACTED&gt;</title><link>https://sourceforge.net/p/fastqvizqual/home/Home/</link><description>Welcome to your wiki!

This is the default page, edit it as you see fit. To add a page simply reference it within brackets, e.g.: [SamplePage].

The wiki uses [Markdown](/p/fastqvizqual/home/markdown_syntax/) syntax.
</description><pubDate>Fri, 16 Sep 2011 05:44:33 -0000</pubDate><guid>https://sourceforge.net99ef2ae2780f2e461b39d05dbed8d613bce60dbc</guid></item></channel></rss>