<?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"
	>
<channel>
	<title>Comments on: BioRuby and Ruby on Rails: Active BioRecords</title>
	<atom:link href="http://www.bioinformaticszen.com/2008/03/bioruby-and-ruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bioinformaticszen.com/2008/03/bioruby-and-ruby-on-rails/</link>
	<description></description>
	<pubDate>Fri, 25 Jul 2008 10:29:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Animesh Sharma</title>
		<link>http://www.bioinformaticszen.com/2008/03/bioruby-and-ruby-on-rails/#comment-18552</link>
		<dc:creator>Animesh Sharma</dc:creator>
		<pubDate>Sun, 01 Jun 2008 13:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.bioinformaticszen.com/2008/03/bioruby-and-ruby-on-rails/#comment-18552</guid>
		<description>Wow Ruby looks cool! BTW 1.87 is out there via svn, http://svn.ruby-lang.org/repos/ruby/tags/v1_8_7/NEWS .</description>
		<content:encoded><![CDATA[<p>Wow Ruby looks cool! BTW 1.87 is out there via svn, <a href="http://svn.ruby-lang.org/repos/ruby/tags/v1_8_7/NEWS" rel="nofollow">http://svn.ruby-lang.org/repos/ruby/tags/v1_8_7/NEWS</a> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jan.</title>
		<link>http://www.bioinformaticszen.com/2008/03/bioruby-and-ruby-on-rails/#comment-12685</link>
		<dc:creator>jan.</dc:creator>
		<pubDate>Tue, 11 Mar 2008 10:04:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.bioinformaticszen.com/2008/03/bioruby-and-ruby-on-rails/#comment-12685</guid>
		<description>Congratulations Mike. This post apparently made it onto the "Latest Ruby Links" section of RubyInside.

Nice work. I'll have to keep this in mind as I'm interfacing a lot with external databases. As a matter of fact, I'll have to think about this to incorporate in the Ensembl API: make it possible to use a local sqlite3 store or something.

BTW: We're at the moment rewriting part of bioruby so that Bio::EMBL, Bio::GenBank and colleagues actually create Bio::Sequence objects (which makes sense, because EMBL and GenBank are nothing more than sequence _formats_). That's all still in an SVN branch though and has not been merged into trunk.</description>
		<content:encoded><![CDATA[<p>Congratulations Mike. This post apparently made it onto the &#8220;Latest Ruby Links&#8221; section of RubyInside.</p>
<p>Nice work. I&#8217;ll have to keep this in mind as I&#8217;m interfacing a lot with external databases. As a matter of fact, I&#8217;ll have to think about this to incorporate in the Ensembl API: make it possible to use a local sqlite3 store or something.</p>
<p>BTW: We&#8217;re at the moment rewriting part of bioruby so that Bio::EMBL, Bio::GenBank and colleagues actually create Bio::Sequence objects (which makes sense, because EMBL and GenBank are nothing more than sequence _formats_). That&#8217;s all still in an SVN branch though and has not been merged into trunk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BioBlogs 19: Bioengineering &#171; O&#8217;Really? at Duncan.Hull.name</title>
		<link>http://www.bioinformaticszen.com/2008/03/bioruby-and-ruby-on-rails/#comment-12398</link>
		<dc:creator>BioBlogs 19: Bioengineering &#171; O&#8217;Really? at Duncan.Hull.name</dc:creator>
		<pubDate>Fri, 07 Mar 2008 12:18:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.bioinformaticszen.com/2008/03/bioruby-and-ruby-on-rails/#comment-12398</guid>
		<description>[...] while pondering the merist of workflows. Michael Barton also outlined some of the challenges of re-using code in software engineering and bioinformatics. Data integration is always a massive engineering challenge in bioinformatics projects, Rod Page [...]</description>
		<content:encoded><![CDATA[<p>[...] while pondering the merist of workflows. Michael Barton also outlined some of the challenges of re-using code in software engineering and bioinformatics. Data integration is always a massive engineering challenge in bioinformatics projects, Rod Page [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil</title>
		<link>http://www.bioinformaticszen.com/2008/03/bioruby-and-ruby-on-rails/#comment-12333</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Thu, 06 Mar 2008 23:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.bioinformaticszen.com/2008/03/bioruby-and-ruby-on-rails/#comment-12333</guid>
		<description>Nice.  I've used something vaguely similar &lt;a href="http://nsaunders.wordpress.com/2006/04/06/bioperl-tip-for-the-day/" rel="nofollow"&gt;in the past&lt;/a&gt; with BioPerl, to suck sequences from a URL into a sequence object.  The ugly Perl one-line syntax would go something like:


my $seqio = Bio::SeqIO-&#62;new('-fh' =&#62; IO::String-&#62;new(get($url)), '-format' =&#62; 'fasta');


One thing to watch out for:  raw/plain text from URLs is sometimes wrapped in HTML 'pre' tags.</description>
		<content:encoded><![CDATA[<p>Nice.  I&#8217;ve used something vaguely similar <a href="http://nsaunders.wordpress.com/2006/04/06/bioperl-tip-for-the-day/" rel="nofollow">in the past</a> with BioPerl, to suck sequences from a URL into a sequence object.  The ugly Perl one-line syntax would go something like:</p>
<p>my $seqio = Bio::SeqIO-&gt;new(&#8217;-fh&#8217; =&gt; IO::String-&gt;new(get($url)), &#8216;-format&#8217; =&gt; &#8216;fasta&#8217;);</p>
<p>One thing to watch out for:  raw/plain text from URLs is sometimes wrapped in HTML &#8216;pre&#8217; tags.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.295 seconds -->
