<?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; malaria</title>
	<atom:link href="http://biorelated.com/category/malaria/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; malaria</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>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>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>