<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	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>Biorelated &#187; blast</title>
	<atom:link href="http://biorelated.com/category/blast/feed/" rel="self" type="application/rss+xml" />
	<link>http://biorelated.com</link>
	<description></description>
	<lastBuildDate>Sat, 28 Apr 2012 00:12:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='biorelated.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/41054b22bbe7debbf1d63972772e21fa?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Biorelated &#187; blast</title>
		<link>http://biorelated.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://biorelated.com/osd.xml" title="Biorelated" />
	<atom:link rel='hub' href='http://biorelated.com/?pushpress=hub'/>
		<item>
		<title>Standalone BLAST with Ruby revisited</title>
		<link>http://biorelated.com/2009/12/15/standalone-blast-with-ruby-revisited/</link>
		<comments>http://biorelated.com/2009/12/15/standalone-blast-with-ruby-revisited/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 09:32:19 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[bioinformatics]]></category>
		<category><![CDATA[blast]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://biorelated.wordpress.com/?p=211</guid>
		<description><![CDATA[Earlier  I showed a very simple way to perform a BLAST  using Ruby. Today I would like to revisit that topic for two reasons. The &#8220;using ruby with blast&#8221; search term seems to be very common and actually one of the ways that people reach my blog. The original post was not very through. BLAST [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&#038;blog=1167040&#038;post=211&#038;subd=biorelated&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Earlier  I showed a very simple way to<a href="http://biorelated.wordpress.com/2007/10/03/standalone-blast-with-ruby-part-1/" target="_blank"> perform a BLAST  using Ruby</a>. Today I would like to revisit that topic for two reasons.</p>
<ol>
<li>The &#8220;using ruby with blast&#8221; search term seems to be very common and actually one of the ways that people reach my blog.</li>
<li>The original post was not very through.</li>
</ol>
<p>BLAST aka Basic Local Alignment Tool is used to search a sequence (either DNA or protein) against a database of other sequences (either all nucleotide or all protein) in order to identify similar sequences. BLAST has many different flavors and can  search DNA against DNA or protein against protein and also can translate a nucleotide query and search it against a protein database  and vice versa. It can also compute a “profile” for the query sequence and use that for further searches as well as search the query against a database of profiles.</p>
<p>The BLAST tool is fundamental to molecular biologists and bioinformaticians. There are excellent books and tutorials on how to and when to use BLAST, so i will assume all you need is to automated your work and parse the results. The actual algorithm is implemented in C and freely  available from the NCBI website.The first thing  to do is to download the appropriate binaries for your platform. <a title="installing blast" href="http://bioinfolab.unl.edu/emlab/documents/blast_readme/README.bls.html" target="_blank">Instructions for setting up and installing BLAST</a></p>
<p>Once installed on your system  the primary method of interaction is using the command line. Use formatdb to create blast databases and blastall to search for sequence homology for a given sequence against a given blast database.</p>
<p>In Ruby, there are two ways you can call the BLAST program. First using the <a href="http://bioruby.org/" target="_blank">Bioruby library</a> and second by writing your own ruby wrapper for the BLAST command line parameters and execution. Most often, one executes BLAST from the command line and then process the results file which is in either one of the many BLAST output formats. Bioruby is excellent  at parsing the results file. Using Bioruby with BLAST is  very straightforward:</p>
<p>#blasting the bioruby way   #query_file: a list of query sequences in fasta format   #database_path: a path to the actual BLAST formatted database   #program: The BLAST program to call, either of blastp,blastn,tblastn e.t.c.<br />
def bio_blast(program, database_path,query_file)</p>
<p><code><br />
factory = Bio::Blast.local(program,database_path)<br />
ff = Bio::FlatFile.open(Bio::FastaFormat, query_file)<br />
ff.each do |entry|<br />
report = factory.query(entry) # report will be a Blast::Report object<br />
# iterate trough the hits<br />
report.each do|hit|<br />
puts hit.bit_score        # bit score (*)<br />
puts hit.query_seq        # query sequence<br />
puts hit.midline          # middle line string of alignment of homologous region (*)<br />
puts hit.target_seq       # hit sequence<br />
puts hit.evalue           # E-value<br />
puts hit.identity         # % identity<br />
puts hit.overlap          # length of overlapping region<br />
puts hit.query_id         # identifier of query sequence<br />
puts hit.query_def        # definition(comment line) of query sequence<br />
puts hit.query_len        # length of query sequence<br />
puts hit.target_id        # identifier of hit sequence<br />
puts hit.target_def       # definition(comment line) of hit sequence<br />
puts hit.target_len       # length of hit sequence<br />
puts hit.query_start      # start position of homologous region in query sequence<br />
puts hit.query_end        # end position of homologous region in query sequence<br />
puts hit.target_start     # start position of homologous region in hit(target) sequence<br />
puts hit.target_end       # end position of homologous region in hit(target) sequence<br />
puts hit.lap_at           # array of above four numbers<br />
hit.each do |hsp|<br />
   puts hsp.query_from<br />
   end<br />
  end<br />
 end<br />
end<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biorelated.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biorelated.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biorelated.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biorelated.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biorelated.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biorelated.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biorelated.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biorelated.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biorelated.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biorelated.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biorelated.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biorelated.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biorelated.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biorelated.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&#038;blog=1167040&#038;post=211&#038;subd=biorelated&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://biorelated.com/2009/12/15/standalone-blast-with-ruby-revisited/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9e14f1be0972ff1f393cc87dbd072e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">george_g</media:title>
		</media:content>
	</item>
		<item>
		<title>What&#8217;s new in Bioruby edge</title>
		<link>http://biorelated.com/2009/01/04/whats-new-in-edge-bioruby/</link>
		<comments>http://biorelated.com/2009/01/04/whats-new-in-edge-bioruby/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 16:38:05 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[bioinformatics]]></category>
		<category><![CDATA[bioruby]]></category>
		<category><![CDATA[blast]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://biorelated.wordpress.com/2009/01/04/whats-new-in-edge-bioruby/</guid>
		<description><![CDATA[Changes to Bio::Blast Naohisa Goto has announced changes to the Bio::Blast.reports to support default -m 0 and tabular -m 8 formats in addition to XML (-m 7) form. I think this is really nice and convenient! Previously it meant that for bioruby to parse a Blast file, you had to have your blast results in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&#038;blog=1167040&#038;post=54&#038;subd=biorelated&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration:underline;"><strong>Changes to Bio::Blast</strong></span></p>
<p>Naohisa Goto has announced changes to the Bio::Blast.reports to support default -m 0 and tabular -m 8<br />
formats in addition to XML (-m 7) form. I think this is really nice and convenient!</p>
<p>Previously it meant that for bioruby to parse a Blast file, you had to have your blast results in XML output which Bio::Blast::Reports would understand. However, by default Blast gives an  -m0 output and without that prior knowledge you may spend hours wondering what is wrong when parsing default blast output files. With Bioruby 1.2.1 this will not work</p>
<pre><span style="color:#993366;">require 'rubygems'
require 'bio'

report_file = "/home/george/esther_blast_files/blast_output2.txt"
Bio::Blast.reports(report_file) do |report|
  puts report.class
end</span></pre>
<p>Unless blast_output2.txt is in XML format</p>
<p>In the upcoming Bioruby 1.3 the default Blast file can now be parsed, for example,</p>
<pre><span style="color:#993366;">require 'rubygems'
require 'bio'</span></pre>
<pre><span style="color:#993366;">report_file = "/home/george/esther_blast_files/blast_output2.txt"</span></pre>
<pre><span style="color:#993366;">Bio::FlatFile.open(Bio::Blast::Default::Report,report_file) do |ff|
ff.each do |rep|
   puts rep.statistics
   rep.iterations.each do |itr|
      puts itr.hits.size

    itr.hits.each_with_index do |hit,i|
      puts hit.hit_id
      puts hit.len
     end
   end
 end</span>
<span style="color:#993366;">end
</span></pre>
<p>Bio::Blast.remote now supports DDBJ in addition to Genomenet. It would be a nice idea to support NCBI as well.</p>
<p><strong><span style="text-decoration:underline;">Changes to Bio:sequence</span></strong></p>
<p>It is possible to create  sequence objects from Bio::GenBank, Bio::EMBL, and Bio::FastaFormat by using the to_biosequence method</p>
<pre><span style="color:#993366;">gb = Bio::GenBank.new(genbank_file.gb)</span>
<span style="color:#993366;">gb.to_biosequence</span></pre>
<p><span style="text-decoration:underline;"><strong>Bio::SQL Support</strong></span></p>
<p>Thanks to Raoul and Naohisa, support for BioSQL has been rewritten by using  ActiveRecord.</p>
<pre><span style="color:#993366;">#Make a connection
</span>
<span style="color:#993366;">connection = Bio::SQL.establish_connection(path_to_database.yaml,'development')</span>
<span style="color:#993366;">#list databases
</span>
<span style="color:#993366;">databases =Bio::SQL.list_databases</span>

<span style="color:#993366;">#retrieve a sequence
</span><span style="color:#993366;">sample_seq = Bio::SQL.fetch_accession('some_accession_number')
</span>
<span style="color:#993366;">#get number of seqeunces in the database</span>
<span style="color:#993366;">puts Bio::SQL.list_entries</span>

<span style="color:#993366;">#get references associated with an entry</span>
<span style="color:#993366;">puts sample_seq.references
</span>
<span style="color:#993366;">#create an embl format</span>
<span style="color:#993366;">puts sample_seq.to_biosequence.output(:embl)

</span></pre>
<p><strong><span style="text-decoration:underline;"><span style="color:#000000;">Changes to Bio::GFF2 and Bio::GFF3</span></span></strong></p>
<p><span style="color:#000000;">GFF2/GFF3 formatted texts are now supported but there will be backward portability issues with bio 1.2.1 since some incompatible changes have been incorporated.  Bio::GFF::Record.comments has been renamed to comment and comments= is now comment=</span></p>
<p><span style="color:#000000;">Both Bio::GFF::GFF2::Record.new and Bio::GFF::GFF3::Records.new, can now take 9 arguments that correspond to GFF columns making it easy to create a Record object directly without need for  formatted text.</span></p>
<p><span style="color:#000000;">Both </span>Bio::GFF::GFF2::Record#attributes and Bio::GFF::GFF3::Record#attributes have been changed to return a nested array containing tag, value pairs, to obtain a  hash, use the to_hash method</p>
<p>To support data output for GFF2/GFF3, new methods have been added:  Bio::GFF::GFF2#to_s, Bio::GFF::GFF3#to_s, Bio::GFF::GFF2::Record#to_s,and Bio::GFF::GFF3::Record#to_s</p>
<p>Lots of other changes have been incorporated for the GFF classes and you can<a title="bio 1.3 change log" href="http://github.com/bioruby/bioruby/tree/master/doc/Changes-1.3.rd" target="_blank"> view the change log at github</a></p>
<p><span style="text-decoration:underline;"><strong>CodeML parser</strong></span></p>
<p>A wrapper for PAML codeml program that is used for estimating evolutinary rate has been added.  The class provides methods  for generating the necessary configuration file. The new Bio::PAML::Codeml::Report and PAML::Codeml::Rates  provides simpel classes  for accessing the codeml report and rates file.  This example is from the example given in the source code</p>
<pre><span style="color:#993366;">require 'bio'</span></pre>
<div id="LC38" class="line">
<pre><span style="color:#993366;"><span class="c1"># Reads multi-fasta formatted file and gets a Bio::Alignment object.</span></span></pre>
</div>
<div id="LC40" class="line">
<pre><span style="color:#993366;">  <span class="c1">   alignment = Bio::FlatFile.open(Bio::Alignment::MultiFastaFormat, 'example.fst').alignment</span></span></pre>
</div>
<div id="LC41" class="line">
<pre><span style="color:#993366;">  <span class="c1">   # Reads newick tree from a file</span></span></pre>
</div>
<div id="LC42" class="line">
<pre><span style="color:#993366;">  <span class="c1">   tree = Bio::FlatFile.open(Bio::Newick, 'example.tree').tree</span></span></pre>
</div>
<div id="LC43" class="line">
<pre><span style="color:#993366;">  <span class="c1"># Creates a Codeml object</span></span></pre>
</div>
<div id="LC44" class="line">
<pre><span style="color:#993366;">  <span class="c1">codeml = Bio::PAML::Codeml.new</span></span></pre>
</div>
<div id="LC45" class="line">
<pre><span style="color:#993366;">  <span class="c1">   # Sets parameters</span></span></pre>
</div>
<div id="LC46" class="line">
<pre><span style="color:#993366;">  <span class="c1">   codeml.parameters[:runmode] = 0</span></span></pre>
</div>
<div id="LC47" class="line">
<pre><span style="color:#993366;">  <span class="c1">   codeml.parameters[:RateAncestor] = 1</span></span></pre>
</div>
<div id="LC48" class="line">
<pre><span style="color:#993366;">  <span class="c1">   # You can also set many parameters at a time.</span></span></pre>
</div>
<div id="LC49" class="line">
<pre><span style="color:#993366;">   <span class="c1">codeml.parameters.update({ :alpha =&gt; 0.5, :fix_alpha =&gt; 0 })</span></span></pre>
</div>
<div id="LC50" class="line">
<pre><span style="color:#993366;">  <span class="c1">   # Executes codeml with the alignment and the tree</span></span></pre>
</div>
<div id="LC51" class="line">
<pre><span style="color:#993366;">  <span class="c1">   report = codeml.query(alignment, tree)

</span></span></pre>
<p><span style="color:#000000;"><span class="c1">Lots of Bugs  have been fixed and also support for Ruby 1.9 has been added. Its great thanks to the bioruby developers for their time and the excellent new changes! </span></span></p>
<p><span style="color:#000000;"><span class="c1"><br />
</span></span></p>
<pre></pre>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biorelated.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biorelated.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biorelated.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biorelated.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biorelated.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biorelated.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biorelated.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biorelated.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biorelated.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biorelated.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biorelated.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biorelated.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biorelated.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biorelated.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&#038;blog=1167040&#038;post=54&#038;subd=biorelated&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://biorelated.com/2009/01/04/whats-new-in-edge-bioruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9e14f1be0972ff1f393cc87dbd072e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">george_g</media:title>
		</media:content>
	</item>
		<item>
		<title>Standalone BLAST with Ruby (windows)</title>
		<link>http://biorelated.com/2007/10/03/standalone-blast-with-ruby-part-1/</link>
		<comments>http://biorelated.com/2007/10/03/standalone-blast-with-ruby-part-1/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 11:42:37 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[bioinformatics]]></category>
		<category><![CDATA[blast]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://biorelated.wordpress.com/2007/10/03/standalone-blast-with-ruby-part-1/</guid>
		<description><![CDATA[Updated article BLAST is one of the most widely used search algorithms in molecular biology. So lets see how you can run and retrieve blast results via a simple Ruby script .I will assume you already have ruby 1.8.5 and above installed in your windows box and a standalone blast.exe which you can download from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&#038;blog=1167040&#038;post=10&#038;subd=biorelated&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://biorelated.wordpress.com/2009/12/15/standalone-blast-with-ruby-revisited/" target="_blank">Updated article</a></p>
<div id="_mcePaste">BLAST is one of the most widely used search algorithms in molecular biology. So lets see how you can run and retrieve blast results via a simple Ruby script .I will assume you already have ruby 1.8.5 and above installed in your windows box and a standalone blast.exe which you can download from the NCBI&#8217;s ftp site here . The latest windows binaries as of this writing is 2.2.17. Create a new folder in C and call it NCBI_Blast. Paste the downloaded blast program in this folder. Double click the blast program and it will create a bin, doc and data folders inside your your NCBI_Blast folder. If this is your first time to install blast in your machine. You will need to do a little configuration. Follow these instructions for setting up blast .</div>
<pre>#create a query sequence
myseq="pcaatcacatyyawwqqffgghhhkllkl"
#create a temporary file
require 'tempfile'
temp=Tempfile.new("seqfile")
#get the name of the temporary file
name=temp.path
#append the contents your sequence to this temporary file
temp.puts "#{myseq}"
temp.close
#since we have a protein query sequence, we will run a blastp. Please note that you will need to have a valid #database to query against. use the formatdb command to create your database before executing the lines #below.
@program = 'blastp'
#path to blast
@database = 'c:/path_to_databasefile'
#name of your query file
@input= name
#your blast output file
@output='c:/path_output_file'
#assume your blast is in a folder called NCBI_Blast, execute
system( "c:/NCBI_Blast/bin/blastall.exe -p #{@program} -d #{@database} -i #{@input} -o #{@output}")
#To capture the output in a variable execute this command instead.
#note that we have omitted the blast -o parameter
result=%x(c:/NCBI_Blast/bin/blastall.exe -p #{@program} -d #{@database} -i #{@input} )
#remember to delete the temporary file!
temp.close(true)</pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/biorelated.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/biorelated.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biorelated.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biorelated.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biorelated.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biorelated.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biorelated.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biorelated.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biorelated.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biorelated.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biorelated.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biorelated.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biorelated.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biorelated.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biorelated.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biorelated.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&#038;blog=1167040&#038;post=10&#038;subd=biorelated&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://biorelated.com/2007/10/03/standalone-blast-with-ruby-part-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9e14f1be0972ff1f393cc87dbd072e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">george_g</media:title>
		</media:content>
	</item>
	</channel>
</rss>
