<?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/"
		>
<channel>
	<title>Comments on: Short Bioinformatics Hacks: Glimmer Splitter</title>
	<atom:link href="http://bytesizebio.net/index.php/2009/10/29/short-bioinformatics-hacks-glimmer-splitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://bytesizebio.net/index.php/2009/10/29/short-bioinformatics-hacks-glimmer-splitter/</link>
	<description>The musings and ravings of a computational biologist about science, computers, music and, you know, stuff</description>
	<lastBuildDate>Wed, 01 Feb 2012 18:43:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: edge</title>
		<link>http://bytesizebio.net/index.php/2009/10/29/short-bioinformatics-hacks-glimmer-splitter/comment-page-1/#comment-710</link>
		<dc:creator>edge</dc:creator>
		<pubDate>Mon, 08 Mar 2010 03:22:56 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=2650#comment-710</guid>
		<description>&lt;a href=&quot;#comment-589&quot; rel=&quot;nofollow&quot;&gt;@Andrew Perry &lt;/a&gt; 
Hi Perry,

Do you already successful write a script to generate GFF3 format by using GlimmerHMM output?
Can I ask your opinion about the way to write the script?
Thanks a lot for your sharing.
5</description>
		<content:encoded><![CDATA[<p><a href="#comment-589" rel="nofollow">@Andrew Perry </a><br />
Hi Perry,</p>
<p>Do you already successful write a script to generate GFF3 format by using GlimmerHMM output?<br />
Can I ask your opinion about the way to write the script?<br />
Thanks a lot for your sharing.<br />
5</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iddo</title>
		<link>http://bytesizebio.net/index.php/2009/10/29/short-bioinformatics-hacks-glimmer-splitter/comment-page-1/#comment-591</link>
		<dc:creator>Iddo</dc:creator>
		<pubDate>Fri, 30 Oct 2009 12:48:16 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=2650#comment-591</guid>
		<description>&lt;a href=&quot;#comment-589&quot; rel=&quot;nofollow&quot;&gt;@Andrew Perry &lt;/a&gt; 
You may want to check out Brad Chapman&#039;s blog:

http://bcbio.wordpress.com/2009/03/22/mapreduce-implementation-of-gff-parsing-for-biopython/</description>
		<content:encoded><![CDATA[<p><a href="#comment-589" rel="nofollow">@Andrew Perry </a><br />
You may want to check out Brad Chapman&#8217;s blog:</p>
<p><a href="http://bcbio.wordpress.com/2009/03/22/mapreduce-implementation-of-gff-parsing-for-biopython/" rel="nofollow">http://bcbio.wordpress.com/2009/03/22/mapreduce-implementation-of-gff-parsing-for-biopython/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://bytesizebio.net/index.php/2009/10/29/short-bioinformatics-hacks-glimmer-splitter/comment-page-1/#comment-590</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Fri, 30 Oct 2009 11:07:45 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=2650#comment-590</guid>
		<description>Hi Iddo, Nice post :)

Did you know that with Biopython 1.45 or later, if the file contains *exactly* once sequence, you can do:
seq_record = SeqIO.read(open(fasta_file),&quot;fasta&quot;)

instead of the more cryptic:
seq_record = SeqIO.parse(open(fasta_file),&quot;fasta&quot;).next()

For the final steps of the script, since Biopython 1.50 you can slice a SeqRecord, and I&#039;ve started thinking about how a SeqRecord reverse complement method might work:
http://lists.open-bio.org/pipermail/biopython-dev/2009-October/006851.html
Maybe you could share your thoughts on this over on the mailing list?</description>
		<content:encoded><![CDATA[<p>Hi Iddo, Nice post <img src='http://bytesizebio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Did you know that with Biopython 1.45 or later, if the file contains *exactly* once sequence, you can do:<br />
seq_record = SeqIO.read(open(fasta_file),&#8221;fasta&#8221;)</p>
<p>instead of the more cryptic:<br />
seq_record = SeqIO.parse(open(fasta_file),&#8221;fasta&#8221;).next()</p>
<p>For the final steps of the script, since Biopython 1.50 you can slice a SeqRecord, and I&#8217;ve started thinking about how a SeqRecord reverse complement method might work:<br />
<a href="http://lists.open-bio.org/pipermail/biopython-dev/2009-October/006851.html" rel="nofollow">http://lists.open-bio.org/pipermail/biopython-dev/2009-October/006851.html</a><br />
Maybe you could share your thoughts on this over on the mailing list?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Perry</title>
		<link>http://bytesizebio.net/index.php/2009/10/29/short-bioinformatics-hacks-glimmer-splitter/comment-page-1/#comment-589</link>
		<dc:creator>Andrew Perry</dc:creator>
		<pubDate>Fri, 30 Oct 2009 03:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=2650#comment-589</guid>
		<description>Whoops, looks like in my excitement, I responded too soon. GlimmerHMM outputs slightly different &#039;predict&#039; format (or, alternatively, GFF3 format). If I don&#039;t find a pre-written solution first, I&#039;ll probably write my script to do GFF3 exon features -&gt; FASTA ORFs.</description>
		<content:encoded><![CDATA[<p>Whoops, looks like in my excitement, I responded too soon. GlimmerHMM outputs slightly different &#8216;predict&#8217; format (or, alternatively, GFF3 format). If I don&#8217;t find a pre-written solution first, I&#8217;ll probably write my script to do GFF3 exon features -> FASTA ORFs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Perry</title>
		<link>http://bytesizebio.net/index.php/2009/10/29/short-bioinformatics-hacks-glimmer-splitter/comment-page-1/#comment-588</link>
		<dc:creator>Andrew Perry</dc:creator>
		<pubDate>Fri, 30 Oct 2009 02:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=2650#comment-588</guid>
		<description>Thanks for sharing this Iddo ... your timing is perfect :)

I&#039;ve been meaning to run GlimmerHMM on a draft eukaryotic genome for a particular project, and have been putting it off because I needed to write a script to do this step. I&#039;ll need to modify it to concatenate together exons from the same transcript, but otherwise it should do the trick.

This seemed like something that should already implemented in some software package, somewhere, and I assumed if I held off for a little while I would find it (the analysis isn&#039;t urgent, yet). I wonder what other people use when faced with converting GFF formatted &#039;orf&#039; features to FASTA formatted sequences ?</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this Iddo &#8230; your timing is perfect <img src='http://bytesizebio.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve been meaning to run GlimmerHMM on a draft eukaryotic genome for a particular project, and have been putting it off because I needed to write a script to do this step. I&#8217;ll need to modify it to concatenate together exons from the same transcript, but otherwise it should do the trick.</p>
<p>This seemed like something that should already implemented in some software package, somewhere, and I assumed if I held off for a little while I would find it (the analysis isn&#8217;t urgent, yet). I wonder what other people use when faced with converting GFF formatted &#8216;orf&#8217; features to FASTA formatted sequences ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

