<?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; databases</title>
	<atom:link href="http://biorelated.com/category/databases/feed/" rel="self" type="application/rss+xml" />
	<link>http://biorelated.com</link>
	<description>[bioinformatics,biology,ruby,rails].each do &#124;b&#124; puts b.blog end</description>
	<lastBuildDate>Thu, 17 Dec 2009 14:02:04 +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://s2.wp.com/i/buttonw-com.png</url>
		<title>Biorelated &#187; databases</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>biorelated</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&amp;blog=1167040&amp;post=211&amp;subd=biorelated&amp;ref=&amp;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>
<pre><span style="color:#969696;">#blasting the bioruby way
</span>  <span style="color:#969696;">#query_file: a list of query sequences in fasta format
</span>  <span style="color:#969696;">#database_path: a path to the actual BLAST formatted database
</span>  <span style="color:#969696;">#program: The BLAST program to call, either of blastp,blastn,tblastn e.t.c.
</span>    <span style="color:#0000e6;">def</span> bio_blast(program, database_path,query_file)
        factory = <span style="color:#000000;">Bio</span>::<span style="color:#000000;">Blast</span>.local(program,database_path)

        ff = <span style="color:#000000;">Bio</span>::<span style="color:#000000;">FlatFile</span>.open(<span style="color:#000000;">Bio</span>::<span style="color:#000000;">FastaFormat</span>, query_file)
        ff.each <span style="color:#0000e6;">do</span> |entry|
           report = factory.query(entry) <span style="color:#969696;"># report will be a Blast::Report object
</span>          <span style="color:#969696;"># iterate trough the hits
</span>          report.each <span style="color:#0000e6;">do</span> |hit|
<div id="_mcePaste">            puts hit.bit_score        # bit score (*)</div>
<div id="_mcePaste">            puts hit.query_seq        # query sequence (TRANSLATOR'S NOTE: sequence of homologous region of query sequence)</div>
<div id="_mcePaste">            puts hit.midline          # middle line string of alignment of homologous region (*)</div>
<div id="_mcePaste">            puts hit.target_seq       # hit sequence (TRANSLATOR'S NOTE: sequence of homologous region of query sequence)</div>
<div id="_mcePaste">            puts hit.evalue           # E-value</div>
<div id="_mcePaste">            puts hit.identity         # % identity</div>
<div id="_mcePaste">            puts hit.overlap          # length of overlapping region</div>
<div id="_mcePaste">           puts hit.query_id         # identifier of query sequence</div>
<div id="_mcePaste">           puts hit.query_def        # definition(comment line) of query sequence</div>
<div id="_mcePaste">           puts hit.query_len        # length of query sequence</div>
<div id="_mcePaste">           puts hit.target_id        # identifier of hit sequence</div>
<div id="_mcePaste">           puts hit.target_def       # definition(comment line) of hit sequence</div>
<div id="_mcePaste">           puts hit.target_len       # length of hit sequence</div>
<div id="_mcePaste">           puts hit.query_start      # start position of homologous region in query sequence</div>
<div id="_mcePaste">           puts hit.query_end        # end position of homologous region in query sequence</div>
<div id="_mcePaste">           puts hit.target_start     # start position of homologous region in hit(target) sequence</div>
<div id="_mcePaste">           puts hit.target_end       # end position of homologous region in hit(target) sequence</div>
<div id="_mcePaste">           puts hit.lap_at           # array of above four numbers</div>

hit.each <span style="color:#0000e6;">do</span> |hsp|
             puts hsp.query_from
            <span style="color:#0000e6;">end</span>
         <span style="color:#0000e6;">end</span>
      <span style="color:#0000e6;">end</span>
    <span style="color:#0000e6;">end</span>
<span style="color:#0000e6;">
</span></pre>
<p><span style="color:#000000;">The method will execute BLAST and also print the hits and the high scoring potions start coordinates for each hit. How ever you may want to just run BLAST without the bioruby overhead. The line below will work as well:</span><span style="color:#000000;"><br />
</span></p>
<pre>  input = query_path
    <span style="color:#969696;">#execute blast and store the results in the blast_results  variable
</span>    <span style="color:#969696;">#-p blast program to run
</span>    <span style="color:#969696;">#-d blast database to query against
</span>    <span style="color:#969696;">#-T gives a html output
</span>    <span style="color:#969696;">#-i query file path
</span>
  <span style="color:#969696;">#execution</span>
blast_result = <span style="color:#ce7b00;">%x(</span><span style="color:#ce7b00;">blastall -p </span><span style="color:#ce7b00;">#{</span><span style="color:#000000;background:#ffffff;">program</span><span style="color:#ce7b00;">}</span><span style="color:#ce7b00;"> -d </span><span style="color:#ce7b00;">#{</span><span style="color:#000000;background:#ffffff;">database</span><span style="color:#ce7b00;">}</span><span style="color:#ce7b00;"> -e </span><span style="color:#ce7b00;">#{</span><span style="color:#000000;background:#ffffff;">expectation</span><span style="color:#ce7b00;">}</span><span style="color:#ce7b00;"> -M </span><span style="color:#ce7b00;">#{</span><span style="color:#000000;background:#ffffff;">matrix</span><span style="color:#ce7b00;">}</span>
<span style="color:#ce7b00;">                 -i </span><span style="color:#ce7b00;">#{</span><span style="color:#000000;background:#ffffff;">input</span><span style="color:#ce7b00;">}</span><span style="color:#ce7b00;"> -T  T</span><span style="color:#ce7b00;">)</span>
<span style="color:#ce7b00;">#blast_result will be the output from the system execution of the above command. You can choose to write it </span>
<span style="color:#ce7b00;">to a file or process it using the Bio::Blast::Report object.</span></pre>
<p>You can use a similar style command like the one above to create BLAST databases using the formatdb command.</p>
<p>I would recommend the use of the bio-ruby blast report parsing classes to automate the process. Please look at the <a title="Bioruby" href="http://bioruby.org/" target="_blank">Bio-ruby API documentation</a> for more details.</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&amp;blog=1167040&amp;post=211&amp;subd=biorelated&amp;ref=&amp;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>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>
		<item>
		<title>A ruby class for screen-scraping plasmodb database</title>
		<link>http://biorelated.com/2009/12/09/a-ruby-class-for-screen-scraping-plasmodb-database/</link>
		<comments>http://biorelated.com/2009/12/09/a-ruby-class-for-screen-scraping-plasmodb-database/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 15:25:50 +0000</pubDate>
		<dc:creator>biorelated</dc:creator>
				<category><![CDATA[bioinformatics]]></category>
		<category><![CDATA[bioruby]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[malaria]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://biorelated.wordpress.com/?p=182</guid>
		<description><![CDATA[Plasmodb is the primary resource for retrieving Plasmodium falciparum genomic data and information. Unfortunately this database has no API or XML service to request or query its  information from a programmer&#8217;s point of view or for easy automation of sequence information retrieval.  Recently I needed to download a long list of Plasmodium falciparum genomic, Protein [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&amp;blog=1167040&amp;post=182&amp;subd=biorelated&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="Plasmodb" href="http://www.plasmodb.org" target="_blank">Plasmodb</a> is the primary resource for retrieving <em>Plasmodium falciparum </em>genomic data and information. Unfortunately this database has no API or XML service to request or query its  information from a programmer&#8217;s point of view or for easy automation of sequence information retrieval.  Recently I needed to download a long list of <em>Plasmodium falciparum </em>genomic, Protein and other information for a set of genes. Been lazy to click and open the webpage for each gene in my list. I wrote this in ruby.</p>
<p>It would be great if Plasmodb  would provide an easy way  of automated sequence retrieval. A webservice or an XML output format would do. Screen scraping is not a very efficient approach.  Here we use<a title="ScrAPI" href="http://blog.labnotes.org/tag/scrapi/" target="_self"> Scrapi </a>which  is an HTML scraping toolkit for Ruby. It uses CSS selectors to write easy, maintainable scraping rules to select, extract and store data from HTML content.</p>
<p><img src="http://static.rubyforge.vm.bytemark.co.uk/themes/rubyforge/images/clear.png" alt="" width="10" height="1" /></p>
<pre><span style="color:#969696;">#A class to fetch information from plasmodb using the scrapi API
</span><span style="color:#969696;">#</span><span style="color:#969696;">#TODO handle  Scraper::Reader::HTTPUnspecifiedError
</span><span style="color:#0000e6;">class</span> <span style="color:#000000;">Plasmodb</span>
   <span style="color:#969696;">#retrives a information  using the gene_id
</span>   <span style="color:#969696;">#returns a structure obj
</span>  <span style="color:#0000e6;">def</span> fetch_by_gene_id(var_name)
    <span style="color:#0000e6;">begin</span>
      scraper = <span style="color:#000000;">Scraper</span>.define <span style="color:#0000e6;">do</span>
        process <span style="color:#ce7b00;">"</span><span style="color:#ce7b00;">div#genomicSequence pre</span><span style="color:#ce7b00;">"</span>,    <span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">genomic_sequence</span>  =&gt; <span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">text</span>
        process <span style="color:#ce7b00;">"</span><span style="color:#ce7b00;">div#transcriptSequence pre</span><span style="color:#ce7b00;">"</span>, <span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">mrna_sequence</span> =&gt;<span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">text</span>
        process <span style="color:#ce7b00;">"</span><span style="color:#ce7b00;">div#proteinSequence pre</span><span style="color:#ce7b00;">"</span>,    <span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">protein_sequence</span>  =&gt;<span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">text</span><span style="color:#969696;">
</span>        process <span style="color:#ce7b00;">"</span><span style="color:#ce7b00;">div#Aliases td&gt;table</span><span style="color:#ce7b00;">"</span>,       <span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">aliases</span> =&gt;<span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">text</span>
        result <span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">protein_sequence</span>,<span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">aliases</span>,<span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">mrna_sequence</span>,<span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">genomic_sequence</span>
        <span style="color:#0000e6;">end
</span>
     search_link="http://plasmodb.org/plasmo/showRecord.do?
               name=GeneRecordClasses.GeneRecordClass&amp;source_id="+var_name+"&amp;project_id=PlasmoDB"
     uri = <span style="color:#000000;">URI</span>.parse(search_link)
     <span style="color:#009900;">@query</span> = scraper.scrape(uri)

    <span style="color:#0000e6;">rescue</span> <span style="color:#000000;">Scraper</span>::<span style="color:#000000;">Reader</span>::<span style="color:#000000;">HTTPUnspecifiedError</span>
      <span style="color:#ce7b00;">"</span><span style="color:#ce7b00;">None</span><span style="color:#ce7b00;">"</span>
    <span style="color:#0000e6;">end</span>
  <span style="color:#0000e6;">end</span>
  <span style="color:#969696;">#returns the predicted protein sequence
</span>  <span style="color:#0000e6;">def</span> protein_sequence
    <span style="color:#009900;">@query</span>.protein_sequence.chomp
  <span style="color:#0000e6;">end</span>
<span style="color:#969696;">#  Returns the genomic sequence
</span>  <span style="color:#0000e6;">def</span> genomic_sequence
    <span style="color:#009900;">@query</span>.genomic_sequence.chomp
  <span style="color:#0000e6;">end</span>
  <span style="color:#969696;">#returns Aliases
</span>  <span style="color:#0000e6;">def</span> aliases
    <span style="color:#009900;">@query</span>.aliases
  <span style="color:#0000e6;">end</span>
  <span style="color:#969696;">#returns the mrna sequence
</span>  <span style="color:#0000e6;">def</span> mrna_sequence
    <span style="color:#009900;">@query</span>.mrna_sequence.chomp
  <span style="color:#0000e6;">end</span>
<span style="color:#0000e6;">end</span>

<span style="color:#969696;">#Use the class to fetch information.</span><span style="color:#969696;">
</span>require <span style="color:#ce7b00;">'</span><span style="color:#ce7b00;">rubygems</span><span style="color:#ce7b00;">'</span>
require <span style="color:#ce7b00;">'</span><span style="color:#ce7b00;">bio</span><span style="color:#ce7b00;">'</span>
require <span style="color:#ce7b00;">'</span><span style="color:#ce7b00;">scrapi</span><span style="color:#ce7b00;">'</span>

file = <span style="color:#ce7b00;">"</span><span style="color:#ce7b00;">/home/george/genes_list.txt</span><span style="color:#ce7b00;">"</span> <span style="color:#969696;">#a file containing a list of accession numbers.
#one accession number per line
</span>
plasmo = <span style="color:#000000;">Plasmodb</span>.new <span style="color:#969696;">#initialize a plasmodb class instance
</span>
<span style="color:#969696;">#Read the file and process each accession number.
</span><span style="color:#000000;">File</span>.readlines(file).each <span style="color:#0000e6;">do</span> |line|
  line.chomp!
  plasmo.fetch_by_gene_id(line)  <span style="color:#969696;">#fetches the information from Plasmodb.
</span>  <span style="color:#969696;">#print a fasta entry for the protein sequence
</span>  puts <span style="color:#000000;">Bio</span>::<span style="color:#000000;">Sequence</span>.new(plasmo.protein_sequence).output(<span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">fasta</span>,<span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">header</span>=&gt;line)
  puts <span style="color:#000000;">Bio</span>::<span style="color:#000000;">Sequence</span>.new(plasmo.genomic_sequence).output(<span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">fasta</span>,<span style="color:#2e92c7;">:</span><span style="color:#2e92c7;">header</span>=&gt;line)
<span style="color:#0000e6;">end</span>

<span style="color:#0000e6;">#another example</span><span style="color:#0000e6;">
<div id="_mcePaste">#p = Plasmodb.new</div>
<div id="_mcePaste">#p.fetch_by_gene_id("PFD0020c")</div>
<div id="_mcePaste">#puts p.genomic_sequence</div>

</span></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biorelated.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biorelated.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biorelated.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biorelated.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biorelated.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biorelated.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biorelated.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biorelated.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biorelated.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biorelated.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biorelated.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biorelated.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biorelated.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biorelated.wordpress.com/182/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&amp;blog=1167040&amp;post=182&amp;subd=biorelated&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://biorelated.com/2009/12/09/a-ruby-class-for-screen-scraping-plasmodb-database/feed/</wfw:commentRss>
		<slash:comments>1</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>

		<media:content url="http://static.rubyforge.vm.bytemark.co.uk/themes/rubyforge/images/clear.png" medium="image" />
	</item>
		<item>
		<title>Bio-graphics, BioSQL and Rails part 2</title>
		<link>http://biorelated.com/2009/01/08/bio-graphics-biosql-and-rails-part-2/</link>
		<comments>http://biorelated.com/2009/01/08/bio-graphics-biosql-and-rails-part-2/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 12:23:50 +0000</pubDate>
		<dc:creator>biorelated</dc:creator>
				<category><![CDATA[biographics]]></category>
		<category><![CDATA[bioinformatics]]></category>
		<category><![CDATA[bioruby]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://biorelated.wordpress.com/?p=114</guid>
		<description><![CDATA[In  part 1 of this series we created a rails application and connected it to a BioSQL database. We also overwrote the rails convections to accommodate our legacy schema. To understand the BioSQL schema, please review the documentation here. A brief overview of is as follows. Every record we enter into our database is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&amp;blog=1167040&amp;post=114&amp;subd=biorelated&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In  <a title="biographics,biosql and rails" href="http://biorelated.wordpress.com/2009/01/07/bio-graphics-biosql-and-rails-part-1/" target="_blank">part 1 of this series</a> we created a rails application and connected it to a BioSQL database. We also overwrote the rails convections to accommodate our legacy schema.</p>
<p>To understand the BioSQL schema, <a title="biosql overview" href="http://www.biosql.org/wiki/Schema_Overview" target="_blank">please review the documentation</a> here. A brief overview of is as follows. Every record we enter into our database is a &#8216;bioentry&#8217; and goes to the <span style="color:#0000ff;">bioenty table.</span> A bioentry can be composed of the following entities: the record&#8217;s <em>public name</em>, public accession and version, its description and an identifier field.</p>
<p>The actual sequence data is stored in the <span style="color:#0000ff;">biosequence table</span> which contains raw sequence information associated with a bioentry, and alphabet information (&#8216;protein&#8217;, &#8216;dna&#8217;, &#8216;rna&#8217;). This is because not all records in our database need to be associated with a raw sequence. Additional sequence information is stored in the <span style="color:#0000ff;">seqfeature table</span> together with other qualifiers.</p>
<p>The location of each <span style="color:#0000ff;">seqfeature</span> (or sub-seqfeature) is defined by a location entity, describing the stop and start coordinates and strand. This information is stored in the <span style="color:#0000ff;">location table. </span></p>
<p><span style="color:#0000ff;"><span style="color:#000000;">In our rails application we are going to create some models and a few controllers. In RESTful language, we are actually creating resources. In this example we will be very simplistic and just create a biodatabase, taxon, bioentry, biosequence, seqfeature, location resources. We will also create associations between them in their model classes. But before that </span></span> delete the <span style="color:#0000ff;">index.html</span> file from your rails application public folder and add the following line to your configurations/routes.rb file</p>
<pre> <span style="color:#993366;">map.root :controller =&gt; "biosequences"</span></pre>
<p><span style="color:#0000ff;"><span style="color:#000000;">To quickly create the models, controllers, associated views and a test suite for each of our resources, just run the rails generate scaffold command, passing the name of the model as an argument. For example,</span></span></p>
<pre><span style="color:#993366;">generate scaffold Bioentry</span></pre>
<p><span style="color:#0000ff;"><span style="color:#000000;">will create a </span></span><span style="color:#0000ff;"><span style="color:#000000;">bioentry </span></span><span style="color:#0000ff;"><span style="color:#000000;">model, a bioentries_controller, associated views (index,show,edit and new), a migration file, though in our case we do not need it. When you finish scaffolding, the routes.rb file should have the following resources declared.<br />
</span></span></p>
<pre><span style="color:#0000ff;"><span style="color:#000000;">  <span style="color:#993366;">map.resources :seqfeatures
  map.resources :locations
  map.resources :bioentries
  map.resources :biosequences
  map.resources :taxon
  map.resources :biodatabases

</span></span></span></pre>
<p>Let us create some mandatory associations for the models.</p>
<p>Edit the /models/biodatabase.rb file by adding the following</p>
<pre> <span style="color:#993366;">has_many :bioentries #a biodatabase is associated with many bioentries
 validates_uniqueness_of :name  #The name foe each biodatabase is unique!</span></pre>
<p>Edit the /models/bioentry.rb file by adding the following</p>
<pre>    <span style="color:#993366;">belongs_to :biodatabase
    belongs_to :taxon
    has_one :biosequence</span></pre>
<p>Edit the /models/taxon.rb and add</p>
<pre>   <span style="color:#993366;">has_one :bioentry</span></pre>
<p>Edit the /models/biosequence.rb file by adding:</p>
<pre>  <span style="color:#993366;">set_primary_key :bioentry_id</span> #biosequence uses bioentry_id as a primary key!
<span style="color:#993366;">  belongs_to :bioentry</span></pre>
<p>edit the /models/location.rb file by adding:</p>
<pre> <span style="color:#993366;">belongs_to :seqfeature</span></pre>
<p>Edit the /models/seqfeature.rb file by adding:</p>
<pre>  <span style="color:#993366;">belongs_to :bioentry
  has_many :locations</span></pre>
<p>Note that most likely you will be adding huge files to the database. BioSQL comes with a set of  perl scripts to enable you do that. Until bioruby 1.3 is released you will have to use the perl scripts to add huge datasets. All the documentation to do that is available from the BioSQL website. I used a perl script load_ncbi_taxonomy.pl to load taxon data to my database. This script comes with the BioSQL. (It did not seem to work on my system, I will sort that later)</p>
<p>To make this post shorter and get to the meat of it, i will assume that you have some existing data in your biosql database. If not, create some dummy data to populate, the biodatabase, bioentry,biosequence, seqfeature and location tables. In Part 3, I will show you how to create the necessary views to populate the database. After all biologists don&#8217;t want to interact with raw SQL queries and sometimes have no idea of running scripts, however they are very web savy!</p>
<p>Edit the /biosequences/show.html.erb to look as follows:</p>
<pre><span style="color:#993366;">&lt;h2&gt;&lt;%= @biosequence.bioentry.name%&gt;(&lt;%= @biosequence.alphabet %&gt;)&lt;/h2&gt;</span>
<span style="color:#993366;">&lt;p&gt;Sequence&lt;/p&gt;</span>
<span style="color:#993366;">&lt;%= @biosequence.seq %&gt;&lt;br/&gt;</span>
<span style="color:#993366;">
</span>
<span style="color:#993366;">&lt;%= link_to 'Edit', edit_biosequence_path(@biosequence) %&gt; </span></pre>
<p>Now navigate to http://localhost:3000/biosequences/1</p>
<p>and then navigate to http://locahost:3000/biosequences/1.xml The XML version of your sequence is also available!</p>
<p>Lets add some ability to render graphics for the sequences.</p>
<p>Add the following lines at the top of the <strong>biosequence.rb </strong>model file</p>
<pre> <span style="color:#993366;">require 'stringio'
 require 'base64' </span></pre>
<p>In the <strong>biosequence.rb</strong> model class, create a new method called <span style="color:#993366;">draw_graphic</span>.</p>
<pre><span style="color:#993366;">def self.draw_graphic(value)
      #get the name and length of the main feature to be drawn
     main_feature = Bioentry.find(value)
     len = main_feature.biosequence.length.to_i
     name = main_feature.name

    #create a Biographics panel and add a track
      </span><span style="color:#993366;">@my_panel = Bio::Graphics::Panel.new(len,:width=&gt; 900)</span><span style="color:#993366;">
      @track = @my_panel.add_track("#{name}",:glyph=&gt;'directed_generic')

     #specify the range for the main feature
     main_feature_range = "1..#{len}"
      @track.add_feature(Bio::Feature.new("#{name}",main_feature_range), :label=&gt;" ")

    #write the output to memory
        output = StringIO.new
        @my_panel.draw(output)
        return output.string
  end

</span></pre>
<p>This method will be called by an action method in <strong>biosequence_controller.rb</strong> file.</p>
<pre>  <span style="color:#993366;">def to_image
    begin
      image = Biosequence.draw_graphic(Biosequence.find(params[:id]))
      send_data(image, :filename =&gt; "graphic.svg", :disposition =&gt; "inline")
    rescue  ActiveRecord::RecordNotFound
      add_error("Error:Attempt to call image without specifying a biosequence  ID")
      redirect_to :action=&gt;'index'
    end
  end</span></pre>
<p>We add a rescue block to capture record not found errors. In RESTful applications a controller is limited to seven actions. So we need to add a collection to our biosequence resource in <strong>routes.rb. </strong>This is how we do it<strong>.<br />
</strong></p>
<pre><strong>  </strong><span style="color:#993366;">map.resources :biosequences,:collection=&gt;{:to_image=&gt;:get}</span><strong>
</strong></pre>
<p>Now we need to modify our /biosequences/show.html.erb file, to enable rendering of the graphic. For that we will create a helper method so that our show.html.erb view is &#8216;clean&#8217;. In helpers/<strong>biosequences_helper.rb</strong> file, add the following code</p>
<pre>  <span style="color:#993366;">def render_image(feature_obj)
     image_tag(url_for({:action=&gt;'to_image',:id=&gt;feature_obj}))
  end</span></pre>
<p>And in the /views/biosequences/show.html.erb file add the following line of code</p>
<pre><span style="color:#993366;">&lt;%= render_image(@biosequence) %&gt;&lt;br/&gt;</span></pre>
<p>Now assuming  that you have a biosql database with valid data, navigate to</p>
<p>http://localhost:3000/biosequences/show/1</p>
<div id="attachment_145" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-145" title="screenshot-biosequences-show-mozilla-firefox" src="http://biorelated.files.wordpress.com/2009/01/screenshot-biosequences-show-mozilla-firefox.png?w=300&#038;h=221" alt="screenshort" width="300" height="221" /><p class="wp-caption-text">screenshort</p></div>
<p>The above is a screen shot from my example application while I was writing this tutorial.</p>
<p>The source code for this example  application<a title="source code" href="http://github.com/georgeG/biosql_rails_example/tree/master" target="_blank"> is available from github</a></p>
<p>For a full review of the methods available for <a title="bio-graphics git repository" href="http://github.com/jandot/bio-graphics/tree/master" target="_blank">biographics please check the project&#8217;s git repository and the rdoc. </a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biorelated.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biorelated.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biorelated.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biorelated.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biorelated.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biorelated.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biorelated.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biorelated.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biorelated.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biorelated.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biorelated.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biorelated.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biorelated.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biorelated.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&amp;blog=1167040&amp;post=114&amp;subd=biorelated&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://biorelated.com/2009/01/08/bio-graphics-biosql-and-rails-part-2/feed/</wfw:commentRss>
		<slash:comments>8</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>

		<media:content url="http://biorelated.files.wordpress.com/2009/01/screenshot-biosequences-show-mozilla-firefox.png?w=300" medium="image">
			<media:title type="html">screenshot-biosequences-show-mozilla-firefox</media:title>
		</media:content>
	</item>
		<item>
		<title>Bio-graphics, BioSQL and Rails part 1</title>
		<link>http://biorelated.com/2009/01/07/bio-graphics-biosql-and-rails-part-1/</link>
		<comments>http://biorelated.com/2009/01/07/bio-graphics-biosql-and-rails-part-1/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 11:50:28 +0000</pubDate>
		<dc:creator>biorelated</dc:creator>
				<category><![CDATA[biographics]]></category>
		<category><![CDATA[bioinformatics]]></category>
		<category><![CDATA[bioruby]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://biorelated.wordpress.com/?p=25</guid>
		<description><![CDATA[In these series I will show you how to quickly add graphics support to a bioinformatics database rails application. We are going to use the biographics library by Jan Aerts, the BioSQL database schema, and rails 2.2.2 (also works with 2.3.2)  In this simple example we want to represent a sequence as a graphic, such [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&amp;blog=1167040&amp;post=25&amp;subd=biorelated&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In these series I will show you how to quickly add graphics support to a bioinformatics database rails application. We are going to use the <a title="Biographics" href="http://github.com/jandot/bio-graphics/tree/master" target="_blank">biographics library</a> by <a title="Jan Aerts" href="http://saaientist.blogspot.com/" target="_blank">Jan Aerts</a>, the <a title="Biosql download" href="http://www.biosql.org/wiki/Downloads" target="_blank">BioSQL database schema</a>, and <a title="ruby on rails" href="http://www.rubyonrails.com" target="_blank">rails</a> 2.2.2 (also works with 2.3.2)  In this simple example we want to represent a sequence as a graphic, such that we can view it in a web browser more or less the way <a title="Gbrowse" href="http://gmod.org/wiki/Gbrowse" target="_blank">Gbrowse</a> works. Each main feature has different subfeatures at different locations along it.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- main feature</p>
<p>&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8211; &#8212;&#8212;    subfeatures</p>
<p>We need to have the following installed, rails 2.1.1, bio 2.1, biographics 1.4 all available as gems and a database based on BioSQL schema.</p>
<p>We need to download the BioSQL schema <a title="download bioSQL" href="http://www.biosql.org/wiki/Downloads" target="_blank">located here</a>. The latest version as of this writing is BioSQL v1.0 (code-named Tokyo) release, v1.0.1. Create a database called biosql_development. I am on Ubuntu Linux with Mysql 5.0.</p>
<pre><span style="color:#993366;">george:&gt;mysql -u george -p</span>
<span style="color:#993366;">:enter password</span>
<span style="color:#993366;">Welcome to the MySQL monitor.  Commands end with ; or \g.</span>
<span style="color:#993366;">Your MySQL connection id is 27</span>
<span style="color:#993366;">Server version: 5.0.51a-3ubuntu5.4 (Ubuntu)</span>
<span style="color:#993366;">
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.</span>
<span style="color:#993366;">
mysql&gt; create database biosql_development;
Query OK, 1 row affected (0.02 sec)

mysql&gt; 

</span></pre>
<p><span style="color:#000000;">I have created a database called biosql_development. Why am i not using migrations? The reason is that BioSQL has some agreed standards on table names and schema convection which are not compatible with rails database creation and table naming conventions. However Rails allows us to override these default convections, when working with legacy databases, as will be our case.<br />
</span></p>
<p><span style="color:#000000;">After creating the database, load the BioSQL schema to the empty database. First we need to tell mysql which database to use.</span></p>
<pre><span style="color:#993366;">mysql&gt; use biosql_development;</span></pre>
<p><span style="color:#000000;">then load the schema</span></p>
<pre><span style="color:#993366;">mysql&gt; source /home/george/Desktop/downloadsfolder/biosql-1.0.1/sql/biosqldb-mysql.sql;
Query OK, 0 rows affected, 1 warning (0.48 sec)

Query OK, 0 rows affected (0.15 sec)
Records: 0  Duplicates: 0  Warnings: 0

Query OK, 0 rows affected, 1 warning (0.01 sec)

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

Query OK, 0 rows affected, 1 warning (0.01 sec)

 ........ trucated</span>
<span style="color:#993366;">mysql&gt;</span></pre>
<p><span style="color:#000000;">Now we need to create a rails application and connect to this database.<br />
</span></p>
<p><span style="color:#000000;">I use the <a title="Netbeans" href="http://www.netbeans.com" target="_blank">Netbeans IDE development</a> environment for creating ruby and rails applications. Go ahead and create a rails application and specify to use mysql as the database adapter.</span></p>
<p><span style="color:#000000;">To connect to our legacy database, we need to override some convections. First disable table plurulization, and tell rails that the table primary name is named as tablename_id as opposed to just the id column expected by rails. To do that<br />
</span></p>
<p><span style="color:#000000;">Create a new file in your application configurations/initializers directory called <strong>override_rails.rb</strong> (you can call it whatever).</span></p>
<pre> <span style="color:#993366;">class ActiveRecord::Base
  self.pluralize_table_names = false
</span><span style="color:#993366;"><span style="color:#993366;">
  self.primary_key_prefix_type = :table_name_with_underscore
 end</span></span></pre>
<p>The two lines above tells ActiveRecord not to expect the table names to be plural and that the primary key for each table is named as tablename_id format.</p>
<p><span style="color:#000000;"> Also create another one called <strong>external_libraries.rb</strong> in the initializers directory, as you can tell this is where I want to put my require statements for loading external libraries.<br />
</span></p>
<pre><span style="color:#993366;">require 'rubygems'

#load the bioinformatics library
require 'bio'

#load the biographics library
require 'bio-graphics'

#load the sql views extension library
gem 'rails_sql_views'
require 'rails_sql_views'
</span></pre>
<p><span style="color:#000000;">This file loads our gems. The rails_sql_views gem allows us to create views and access them by creating models corresponding to the views. </span></p>
<p><span style="color:#000000;">At this point if you run rake db:schema:dump, we will have a rails based BioSQL schema and which we can conveniently use to create a BioSQL database on any Relational database that rails supports and this includes Microsoft SQL server, DB2, Oracle, SQLlite and a host of others. All that would be required is to change the database.yml file to suit the adapter of choice and then execute rake db:schema:load to load the BioSQL schema.</span></p>
<p><span style="color:#000000;">Please note that if your are using rails 2.2.2,  you may want to comment the lines </span></p>
<pre><span style="color:#993366;">unless Kernel.respond_to?(:gem)
  Kernel.send :alias_method, :gem, :require_gem</span>
end</pre>
<p><span style="color:#000000;">in rails_sql_views(0.6.1), </span>otherwise running db:schema:dump will cause rake to abort.</p>
<p><span style="color:#000000;">In the next part I will describe how to create the necessary resources for our <a title="REST" href="http://en.wikipedia.org/wiki/Representational_State_Transfer" target="_blank">RESTful</a>(Representational State Transfer) bioinformatics web application and rendering of the graphics.<br />
</span></p>
<p><span style="color:#000000;"><br />
</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biorelated.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biorelated.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biorelated.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biorelated.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biorelated.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biorelated.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biorelated.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biorelated.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biorelated.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biorelated.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biorelated.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biorelated.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biorelated.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biorelated.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&amp;blog=1167040&amp;post=25&amp;subd=biorelated&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://biorelated.com/2009/01/07/bio-graphics-biosql-and-rails-part-1/feed/</wfw:commentRss>
		<slash:comments>9</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>biorelated</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&amp;blog=1167040&amp;post=54&amp;subd=biorelated&amp;ref=&amp;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&amp;blog=1167040&amp;post=54&amp;subd=biorelated&amp;ref=&amp;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>PlasmoDB 5.4 released</title>
		<link>http://biorelated.com/2007/11/11/plasmodb-54-release/</link>
		<comments>http://biorelated.com/2007/11/11/plasmodb-54-release/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 12:30:17 +0000</pubDate>
		<dc:creator>biorelated</dc:creator>
				<category><![CDATA[databases]]></category>
		<category><![CDATA[malaria]]></category>

		<guid isPermaLink="false">http://biorelated.wordpress.com/2007/11/11/plasmodb-54-release/</guid>
		<description><![CDATA[The ApiDB team have announced a new release of the Plasmodb database version 5.4. The database hosts genomic and proteomic data for different species of the parasitic eukaryote Plasmodium, which is the causative agent for malaria. It brings together data provided by numerous laboratories worldwide. From an email sent to registered database users, New data [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&amp;blog=1167040&amp;post=15&amp;subd=biorelated&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="Plasmodb" href="http://biorelated.files.wordpress.com/2007/11/plasmodb_logogif.jpg"><img src="http://biorelated.files.wordpress.com/2007/11/plasmodb_logogif.thumbnail.jpg" alt="Plasmodb" /></a>The ApiDB team have announced  a new release of the <a title="Plasmodium falciparum database" href="http://plasomodb.org" target="_blank">Plasmodb</a> database version 5.4.  The database hosts genomic and proteomic data for different species of the  	  parasitic eukaryote Plasmodium, which is the causative agent for malaria. It brings together data provided by numerous laboratories worldwide. From an email sent to registered database users,</p>
<p>New data in the new release include:</p>
<ul>
<li><span style="font-family:Arial;">A slightly modified reference genome for </span><span style="font-family:Arial;"><em>P. falciparum</em></span></li>
<li><span style="font-family:Arial;"><em>P. berghei </em></span><span style="font-family:Arial;">gametocyte proteomics data </span></li>
<li><span style="font-family:Arial;">Many additional </span><span style="font-family:Arial;"><em>P. falciparum</em></span><span style="font-family:Arial;"> SNPs </span></li>
<li><span style="font-family:Arial;">Additional ESTs</span></li>
<li><span style="font-family:Arial;">Expression profiling data for antigenic and adherent variants of </span><span style="font-family:Arial;"><em>P. falciparum </em></span><span style="font-family:Arial;">3D7</span></li>
<li><span style="font-family:Arial;">User comments submitted prior to June 2007 have now been incorporated into the official annotation.</span></li>
</ul>
<p>A brief list of new features include:</p>
<ul>
<li><span style="font-family:Arial;">faster loading of Gene and Genome Browser pages. </span></li>
<li><span style="font-family:Arial;">Improved synteny views in the Genome Browser.</span></li>
<li><span style="font-family:Arial;">Browser views of rodent malaria genomes colored to indicate chromosomes</span><span style="font-family:Arial;">. </span></li>
<li><span style="font-family:Arial;">Gene page links to various external data sources (including PlasmoMAP,  TDRtargets, UCSC P. falciparum genome browser, Ontology-based Pattern Identification and literature databases).</span></li>
<li><span style="font-family:Arial;">More convenient access to help &#8230; please click the &#8220;Ask us a Question&#8221; link on the left of every page, or the &#8220;Contact Us&#8221; at bottom to report problems or suggest improvements to the database.</span></li>
</ul>
<p>Many thanks to the Plasmodb team and the entire ApiDB team for the the recent improvements and for the new datasets.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/biorelated.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/biorelated.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biorelated.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biorelated.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biorelated.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biorelated.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biorelated.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biorelated.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biorelated.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biorelated.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biorelated.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biorelated.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biorelated.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biorelated.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biorelated.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biorelated.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&amp;blog=1167040&amp;post=15&amp;subd=biorelated&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://biorelated.com/2007/11/11/plasmodb-54-release/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>

		<media:content url="http://biorelated.files.wordpress.com/2007/11/plasmodb_logogif.thumbnail.jpg" medium="image">
			<media:title type="html">Plasmodb</media:title>
		</media:content>
	</item>
		<item>
		<title>Plasmodium falciparum re-annotation workshop opens</title>
		<link>http://biorelated.com/2007/10/22/plasmodium-falciparum-re-annotation-workshop-opens/</link>
		<comments>http://biorelated.com/2007/10/22/plasmodium-falciparum-re-annotation-workshop-opens/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 07:46:44 +0000</pubDate>
		<dc:creator>biorelated</dc:creator>
				<category><![CDATA[bioinformatics]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[malaria]]></category>
		<category><![CDATA[annotation]]></category>
		<category><![CDATA[plasmodium]]></category>

		<guid isPermaLink="false">http://biorelated.wordpress.com/2007/10/22/plasmodium-falciparum-re-annotation-workshop-opens/</guid>
		<description><![CDATA[The Plasmodium genome re-annotation workshop opened on 21st October at the Sanger center. The Workshop runs till the 26th and aims to re-annotate the P. falciparum genome. In a welcome message Prof David Roos pointed out that a major goal of the workshop is to ascribe new or updated functions to gene models, reflecting the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&amp;blog=1167040&amp;post=11&amp;subd=biorelated&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p> The Plasmodium genome re-annotation workshop opened on 21st October at the <a href="http://www.sanger.ac.uk/" title="Sanger center">Sanger center. </a>The Workshop runs till the 26th and aims to re-annotate the <em>P. falciparum</em> genome.  <span class="Apple-style-span"><em><span class="Apple-style-span" style="font-style:normal;">In a welcome message Prof  David Roos pointed out  that a major goal of the workshop is to ascribe new or updated functions to gene models, reflecting the current state of knowledge in the wider malaria community.</span></em></span></p>
<p>The <a href="http://en.wikipedia.org/wiki/Plasmodium_falciparum" title="Plasmodium falciparum" target="_blank"><em>Plasmodium falciparum</em> </a>sequencing project was completed in 2002 and since then <a href="http://plasmodb.org" title="plasmodb" target="_blank">the Plasmodb</a> database which is currently at version 5 has been the primary source of <em>P. falciparum </em>data and genomic information. With 60% of the <em>P. falciparum</em> genes annotated as hypothetical, it is time to reduce the number of hypothetical genes  by providing annotations where known and possible.</p>
<p>Issues that will be addressed and visited include:</p>
<p style="margin:0;">- standards for the use of structured gene ontologies in gene/genome annotation</p>
<p style="margin:0;">- naming conventions for &#8220;hypothetical proteins&#8221;, &#8220;conserved hypotheticals&#8221;, &#8220;putative kinases&#8221;, etc</p>
<p style="margin:0;">- naming conventions for large gene families</p>
<p style="margin:0;">- standards for inferring function from orthology, motif/domain conservation, or &#8216;guilt by association&#8217; based on functional genomics data</p>
<p style="margin:0;">- standards for transfering annotations to orthologs in other <em>Plasmodium </em>species</p>
<p style="margin:0;">- plans and proposals for further <em>Plasmodium </em>sequencing and other genomics resources</p>
<p style="margin:0;">- pipelines for ensuring currency and consistency of data in GenBank/EMBL, GeneDB, PlasmoDB, etc</p>
<p style="margin:0;">- future requirements and needs for <em>Plasmodium</em> informatics resources</p>
<p>- annotation projects not completed during the workshop &#8230; and strategies for ensuring completion</p>
<p>The workshop is sponsored by Sanger institute and plasmodb</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/biorelated.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/biorelated.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/biorelated.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/biorelated.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/biorelated.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/biorelated.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/biorelated.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/biorelated.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/biorelated.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/biorelated.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/biorelated.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/biorelated.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/biorelated.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/biorelated.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/biorelated.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/biorelated.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=biorelated.com&amp;blog=1167040&amp;post=11&amp;subd=biorelated&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://biorelated.com/2007/10/22/plasmodium-falciparum-re-annotation-workshop-opens/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>
	</channel>
</rss>