<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Python GFF parser update &#8212; parallel parsing and GFF2</title>
	<atom:link href="http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/feed/" rel="self" type="application/rss+xml" />
	<link>http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/</link>
	<description></description>
	<lastBuildDate>Tue, 04 Jun 2013 12:18:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Brad Chapman</title>
		<link>http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/#comment-167</link>
		<dc:creator><![CDATA[Brad Chapman]]></dc:creator>
		<pubDate>Sat, 08 May 2010 14:55:55 +0000</pubDate>
		<guid isPermaLink="false">http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update/#comment-167</guid>
		<description><![CDATA[James;
Sounds like a cool idea. I&#039;m a big fan of MongoDB. Celery and RabbitMQ look cool but haven&#039;t had an opportunity to play with them.  I&#039;d be interested in hearing what you come up with.]]></description>
		<content:encoded><![CDATA[<p>James;<br />
Sounds like a cool idea. I&#8217;m a big fan of MongoDB. Celery and RabbitMQ look cool but haven&#8217;t had an opportunity to play with them.  I&#8217;d be interested in hearing what you come up with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Casbon</title>
		<link>http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/#comment-166</link>
		<dc:creator><![CDATA[James Casbon]]></dc:creator>
		<pubDate>Fri, 07 May 2010 14:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update/#comment-166</guid>
		<description><![CDATA[Interesting ... I have been looking at something similar, but my stack is mongodb and celery with ghettoq. 

The point here is to parse the GFF into json and then store in mongodb.   With ghettoq and celery you drop the need for erlang.]]></description>
		<content:encoded><![CDATA[<p>Interesting &#8230; I have been looking at something similar, but my stack is mongodb and celery with ghettoq. </p>
<p>The point here is to parse the GFF into json and then store in mongodb.   With ghettoq and celery you drop the need for erlang.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Chapman</title>
		<link>http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/#comment-105</link>
		<dc:creator><![CDATA[Brad Chapman]]></dc:creator>
		<pubDate>Fri, 14 Aug 2009 20:54:41 +0000</pubDate>
		<guid isPermaLink="false">http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update/#comment-105</guid>
		<description><![CDATA[Vipin;
Thanks for the report. A detailed response is on the Biopython mailing list:

http://lists.open-bio.org/pipermail/biopython/2009-August/005437.html

Let me know if you have any other problems,
Brad]]></description>
		<content:encoded><![CDATA[<p>Vipin;<br />
Thanks for the report. A detailed response is on the Biopython mailing list:</p>
<p><a href="http://lists.open-bio.org/pipermail/biopython/2009-August/005437.html" rel="nofollow">http://lists.open-bio.org/pipermail/biopython/2009-August/005437.html</a></p>
<p>Let me know if you have any other problems,<br />
Brad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vipin T S</title>
		<link>http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/#comment-104</link>
		<dc:creator><![CDATA[Vipin T S]]></dc:creator>
		<pubDate>Fri, 14 Aug 2009 13:17:48 +0000</pubDate>
		<guid isPermaLink="false">http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update/#comment-104</guid>
		<description><![CDATA[To whom it may concern,

Thanks for the development of a quick parser for GFF files. It is very useful.

I have a doubt,
I used the GFFParser.py program to extract the genome annotation from the file attached with this mail. Please find the attached file. (Because of the size of file here I included a few lines)
I wrote a python script like this

##################################################
import GFFParser

pgff = GFFParser.GFFMapReduceFeatureAdder(dict(), None)

cds_limit_info = dict(
    gff_type = [&quot;gene&quot;,&quot;mRNA&quot;,&quot;CDS&quot;,&quot;exon&quot;],
    gff_id = [&quot;Chr1&quot;]
    )

pgff.add_features(&#039;../PythonGFF/TAIR9_GFF_genes.gff3&#039;, cds_limit_info)

pgff.base[&quot;Chr1&quot;]

final = pgff.base[&quot;Chr1&quot;]

##################################################

By executing this script I am able to extract gene, mRNA and exon annotation from specified GFF file. But I am unable to extract the CDS related information from GFF file.
It will be great if you can suggest me an idea to include gene, mRNA, exon and CDS information in a single strech of parsing of GFF file.

Thanks in advance,

Vipin T S
vipin.ts@gmail.com]]></description>
		<content:encoded><![CDATA[<p>To whom it may concern,</p>
<p>Thanks for the development of a quick parser for GFF files. It is very useful.</p>
<p>I have a doubt,<br />
I used the GFFParser.py program to extract the genome annotation from the file attached with this mail. Please find the attached file. (Because of the size of file here I included a few lines)<br />
I wrote a python script like this</p>
<p>##################################################<br />
import GFFParser</p>
<p>pgff = GFFParser.GFFMapReduceFeatureAdder(dict(), None)</p>
<p>cds_limit_info = dict(<br />
    gff_type = ["gene","mRNA","CDS","exon"],<br />
    gff_id = ["Chr1"]<br />
    )</p>
<p>pgff.add_features(&#8216;../PythonGFF/TAIR9_GFF_genes.gff3&#8242;, cds_limit_info)</p>
<p>pgff.base["Chr1"]</p>
<p>final = pgff.base["Chr1"]</p>
<p>##################################################</p>
<p>By executing this script I am able to extract gene, mRNA and exon annotation from specified GFF file. But I am unable to extract the CDS related information from GFF file.<br />
It will be great if you can suggest me an idea to include gene, mRNA, exon and CDS information in a single strech of parsing of GFF file.</p>
<p>Thanks in advance,</p>
<p>Vipin T S<br />
<a href="mailto:vipin.ts@gmail.com">vipin.ts@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paolo</title>
		<link>http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/#comment-94</link>
		<dc:creator><![CDATA[Paolo]]></dc:creator>
		<pubDate>Mon, 27 Jul 2009 09:09:27 +0000</pubDate>
		<guid isPermaLink="false">http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update/#comment-94</guid>
		<description><![CDATA[Thanks Brad!
I don&#039;t know why but with update option I obtained the 1.49 version of Biopython, but I manually downloaded the v1.51 and now the converter perfectly works!

Paolo]]></description>
		<content:encoded><![CDATA[<p>Thanks Brad!<br />
I don&#8217;t know why but with update option I obtained the 1.49 version of Biopython, but I manually downloaded the v1.51 and now the converter perfectly works!</p>
<p>Paolo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Chapman</title>
		<link>http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/#comment-90</link>
		<dc:creator><![CDATA[Brad Chapman]]></dc:creator>
		<pubDate>Fri, 24 Jul 2009 21:32:51 +0000</pubDate>
		<guid isPermaLink="false">http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update/#comment-90</guid>
		<description><![CDATA[Paolo;
Thanks for giving this a try. It looks like you have an older version of Biopython without the UnknownSeq class. You can check your version with:

&gt;&gt;&gt; import Bio
&gt;&gt;&gt; Bio.__version__
&#039;1.51b+&#039;

You&#039;ll want 1.50 or later to work with the GFF parser. You can upgrade with:

easy_install -U biopython

as the root user. Let me know if you have any other problems,
Brad]]></description>
		<content:encoded><![CDATA[<p>Paolo;<br />
Thanks for giving this a try. It looks like you have an older version of Biopython without the UnknownSeq class. You can check your version with:</p>
<p>&gt;&gt;&gt; import Bio<br />
&gt;&gt;&gt; Bio.__version__<br />
&#8217;1.51b+&#8217;</p>
<p>You&#8217;ll want 1.50 or later to work with the GFF parser. You can upgrade with:</p>
<p>easy_install -U biopython</p>
<p>as the root user. Let me know if you have any other problems,<br />
Brad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paolo</title>
		<link>http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/#comment-89</link>
		<dc:creator><![CDATA[Paolo]]></dc:creator>
		<pubDate>Fri, 24 Jul 2009 15:53:39 +0000</pubDate>
		<guid isPermaLink="false">http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update/#comment-89</guid>
		<description><![CDATA[I would like to use the parser to convert my gff2 in gff3, but the application gave me this error:

student@410083:~/Desktop/chap/gff/Scripts/gff$ python gff2_to_gff3.py install
Traceback (most recent call last):
  File &quot;gff2_to_gff3.py&quot;, line 12, in 
    from BCBio.GFF import GFFParser, GFF3Writer
  File &quot;build/bdist.linux-x86_64/egg/BCBio/GFF/__init__.py&quot;, line 3, in 
    # $Id: __init__.py 2134 2004-10-06 08:55:20Z fredrik $
  File &quot;build/bdist.linux-x86_64/egg/BCBio/GFF/GFFParser.py&quot;, line 33, in 
ImportError: cannot import name UnknownSeq

Do you have any suggestion to resolve it?

Thanx]]></description>
		<content:encoded><![CDATA[<p>I would like to use the parser to convert my gff2 in gff3, but the application gave me this error:</p>
<p>student@410083:~/Desktop/chap/gff/Scripts/gff$ python gff2_to_gff3.py install<br />
Traceback (most recent call last):<br />
  File &#8220;gff2_to_gff3.py&#8221;, line 12, in<br />
    from BCBio.GFF import GFFParser, GFF3Writer<br />
  File &#8220;build/bdist.linux-x86_64/egg/BCBio/GFF/__init__.py&#8221;, line 3, in<br />
    # $Id: __init__.py 2134 2004-10-06 08:55:20Z fredrik $<br />
  File &#8220;build/bdist.linux-x86_64/egg/BCBio/GFF/GFFParser.py&#8221;, line 33, in<br />
ImportError: cannot import name UnknownSeq</p>
<p>Do you have any suggestion to resolve it?</p>
<p>Thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Chapman</title>
		<link>http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/#comment-49</link>
		<dc:creator><![CDATA[Brad Chapman]]></dc:creator>
		<pubDate>Sun, 19 Apr 2009 18:54:38 +0000</pubDate>
		<guid isPermaLink="false">http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update/#comment-49</guid>
		<description><![CDATA[Thanks for the message on the GFF parser. If you have an example file that is not working as expected, please do send along details about the file. You can do so here, or on the Biopython development list (&lt;a href=&quot;http://biopython.org/wiki/Mailing_lists&quot; rel=&quot;nofollow&quot;&gt;http://biopython.org/wiki/Mailing_lists&lt;/a&gt;).]]></description>
		<content:encoded><![CDATA[<p>Thanks for the message on the GFF parser. If you have an example file that is not working as expected, please do send along details about the file. You can do so here, or on the Biopython development list (<a href="http://biopython.org/wiki/Mailing_lists" rel="nofollow">http://biopython.org/wiki/Mailing_lists</a>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update-parallel-parsing-and-gff2/#comment-48</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Sun, 19 Apr 2009 06:57:04 +0000</pubDate>
		<guid isPermaLink="false">http://bcbio.wordpress.com/2009/03/29/python-gff-parser-update/#comment-48</guid>
		<description><![CDATA[The GFF parser seems to be pretty good 
Thanks 
I have a doubt whether we can parse information for gene, mRNA, CDS, exon and UTR region in a single strech from a GFF file...]]></description>
		<content:encoded><![CDATA[<p>The GFF parser seems to be pretty good<br />
Thanks<br />
I have a doubt whether we can parse information for gene, mRNA, CDS, exon and UTR region in a single strech from a GFF file&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
