<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CUINRHc7cCp7ImA9WhRUF0o.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548</id><updated>2012-01-28T23:29:55.908+05:30</updated><category term="Fiona Brinkman" /><category term="University of Washington" /><category term="Biology" /><category term="Paris" /><category term="Simon Fraser University" /><category term="Campylobacter jejuni" /><category term="Mich" /><category term="Wayne State University" /><category term="Institut Pasteur" /><category term="Canada" /><category term="France" /><category term="University of Regensburg" /><category term="Ile-de-France" /><category term="Baylor University" /><category term="United States" /><category term="Detroit" /><title>β.Log [ Computational Biology News ]</title><subtitle type="html">Computational Biology News βLog is compilation of latest news related to Computational Biology, Bioinformatics, Artificial Intelligence, Computational Neuroscience, Neuroinformatics, Computer Programming, Informatics and life in general.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://computationalbiologynews.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>617</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspot/LuPcC" /><feedburner:info uri="blogspot/lupcc" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;C0ENSXozeyp7ImA9WhRUFkw.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-5845562487531604797</id><published>2012-01-27T01:40:00.000+05:30</published><updated>2012-01-27T02:31:38.483+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-27T02:31:38.483+05:30</app:edited><title>de-Bruijn assembler</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
In the &lt;a href="http://computationalbiologynews.blogspot.com/2012/01/hamiltonian-path-assembler.html" target="_blank"&gt;last post&lt;/a&gt;&amp;nbsp;I talked about the overlap-layout-consensus (OLC) way of Genome assembly. The approach which is (really!) getting popular these days is the other one, &lt;b&gt;de-Bruijn-graphs&lt;/b&gt; (DBG). It is based on the simple idea of converting the hard problem of finding&amp;nbsp;&lt;a href="http://en.wikipedia.org/wiki/Hamiltonian_path" target="_blank"&gt;Hamiltonian&lt;/a&gt;&amp;nbsp;to relatively simpler&amp;nbsp;&lt;a href="http://en.wikipedia.org/wiki/Eulerian_path" target="_blank"&gt;Eulerian&lt;/a&gt;&amp;nbsp;for assembling biological sequences. There is a beautiful &lt;a href="http://www.nature.com/nbt/journal/v29/n11/full/nbt.2023.html" target="_blank"&gt;tutorial like introduction&lt;/a&gt; co-authored by the 'father' of this idea, Prof. Pevzner.&lt;br /&gt;
&lt;br /&gt;
To put it naively, &amp;nbsp;in contrast with OLC approach where one represents the reads as vertex in graph which are connected if the end of the read representing the first vertex overlaps with the start of the second one, &lt;b&gt;DBG&lt;/b&gt;&amp;nbsp;approach has the overlapping parts of the reads as&amp;nbsp;the vertices and edges representing the reads consisting of the those overlaps. Now all we have to do, well kind of, is to &lt;a href="http://en.wikipedia.org/wiki/Tree_traversal" target="_blank"&gt;traverse&lt;/a&gt; this graph so that we visit edges once, which is what &lt;a href="http://www.pnas.org/content/98/17/9748.abstract" target="_blank"&gt;Eulerian path is, and it scales up much better than Hamiltonian&lt;/a&gt; making it a cool choice for the &lt;a href="http://www.slideshare.net/sharma_animesh/cqncer" target="_blank"&gt;cqncers&lt;/a&gt;&amp;nbsp;churning out &lt;a href="http://www.youtube.com/watch?v=g0vGrNjpyA8" target="_blank"&gt;massive amount of shorter reads&lt;/a&gt;&amp;nbsp;.&lt;br /&gt;
&lt;br /&gt;
I made a simple scripts to see this approach in action. It can be downloaded via:&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;b&gt;wget&amp;nbsp;&lt;a href="http://misccb.googlecode.com/git-history/585ec7811a837a1f20ee37256abada7d6ee538a3/eulerovlpath.pl"&gt;http://misccb.googlecode.com/git-history/585ec7811a837a1f20ee37256abada7d6ee538a3/eulerovlpath.pl&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
To test is, one needs a simple genome (here 100 bases long), which can be done via PERL one-liner:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;b&gt;perl -e '@b=qw/A T G C/;while($l&amp;lt;100){print @b[int(rand(4))];$l++;}' &amp;gt; &lt;a href="http://misccb.googlecode.com/git-history/585ec7811a837a1f20ee37256abada7d6ee538a3/rangen.txt"&gt;rangen.txt&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
generating 100 base pair uniformly random DNA string. The sequencing can be simulated via breaking up the above string into small (here 10 bases long) overlapping (here of 9 bases long) strings using&amp;nbsp;PERL one-liner:&lt;br /&gt;
&lt;br /&gt;
&lt;length;$c++){print "\n"};'="" rangen.txt="" substr($_,$c,10);print=""&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;b&gt;perl -ne 'for($c=0;$c &amp;lt; length;$c++){print substr($_,$c,10);print "\n"};' rangen.txt &amp;gt; &lt;a href="http://misccb.googlecode.com/git-history/585ec7811a837a1f20ee37256abada7d6ee538a3/rangen.txt.kmer"&gt;rangen.txt.kmer&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/length;$c++){print&gt;&lt;br /&gt;
&lt;length;$c++){print "\n"};'="" rangen.txt="" substr($_,$c,10);print=""&gt;&lt;br /&gt;&lt;/length;$c++){print&gt;&lt;br /&gt;
&lt;length;$c++){print "\n"};'="" rangen.txt="" substr($_,$c,10);print=""&gt;
This reads file can be directly fed into the downloaded&amp;nbsp;&lt;a href="http://misccb.googlecode.com/git-history/585ec7811a837a1f20ee37256abada7d6ee538a3/eulerovlpath.pl" target="_blank"&gt;eulerovlpath.pl&lt;/a&gt;:&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;b&gt;perl eulerovlpath.pl rangen.txt.kmer&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
generating the string:&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;GGGCGTGGGCATTCCAACGACTGAGTCTGCCCTAATTCGTTGAAGTACTATTCGCAACGACCGCCGTAGACAAATAAGAGTGTAGGGATTACCGGCATT&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
which is similar to what we started with :)&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;&lt;b&gt;cat rangen.txt&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;AGGGCGTGGGCATTCCAACGACTGAGTCTGCCCTAATTCGTTGAAGTACTATTCGCAACGACCGCCGTAGACAAATAAGAGTGTAGGGATTACCGGCATT&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Happy hacking !&lt;br /&gt;
&lt;/length;$c++){print&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-5845562487531604797?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/BgciNSuFYtphNCN-TJZuha_EJxw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BgciNSuFYtphNCN-TJZuha_EJxw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/BgciNSuFYtphNCN-TJZuha_EJxw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BgciNSuFYtphNCN-TJZuha_EJxw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/VbXmOaUEtog" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/5845562487531604797/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=5845562487531604797&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/5845562487531604797?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/5845562487531604797?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/VbXmOaUEtog/euler.html" title="de-Bruijn assembler" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2012/01/euler.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YBQXY_fip7ImA9WhRWF0U.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-4056368637983663430</id><published>2012-01-05T20:33:00.001+05:30</published><updated>2012-01-05T22:02:30.846+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-05T22:02:30.846+05:30</app:edited><title>Hamiltonian Assembler</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Just came across &lt;a href="https://plus.google.com/u/0/113064514537405769519/posts/Ax3UEA54LEX" target="_blank"&gt;Andrew's Hamiltonian Cycle finder&lt;/a&gt; (HCF)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;get: &lt;br /&gt;
&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;span style="font-size: x-small;"&gt;&amp;nbsp;wget https://raw.github.com/ahh/ahh-toys/master/ham.sh&lt;/span&gt;&lt;/div&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;br /&gt;&lt;/div&gt;
&amp;nbsp;simple check:&lt;br /&gt;
&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;span style="font-size: x-small;"&gt;&amp;nbsp;bash ham.sh &lt;br /&gt;&amp;nbsp;a b&lt;br /&gt;&amp;nbsp;b c&lt;br /&gt;&amp;nbsp;c a &lt;br /&gt;&amp;nbsp;[followed by Ctrl-D should produce] &lt;/span&gt;&lt;/div&gt;
&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;a b c&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
based purely on shell commands and thought of testing it out as a Genome assembler. The genome assembly problem is closely related to finding the shortest common superstring (S) of a given set of strings (s1, s2… sn). The superstring S corresponds to the genome and the set of strings being the short sequence reads produced by the sequencing machines.&lt;br /&gt;
&lt;br /&gt;
The popular ways of approaching this problem are &lt;b&gt;OLC&lt;/b&gt; and DBG (&lt;a href="http://bfg.oxfordjournals.org/content/early/2011/12/18/bfgp.elr035.abstract" target="_blank"&gt;overlap-layout-consensus&amp;nbsp; and de-bruijn-graph&lt;/a&gt;). OLC approach is similar to HCF or the popular textbook example, the traveling-salesman-problem :). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.ncbi.nlm.nih.gov/nuccore/U00096.2" target="_blank"&gt;Typical bacterial genomes &lt;/a&gt;are strings of nucleotides (A,T,G,C) and circular.&amp;nbsp; General approach to find it is to extract it from the organism, make multiple copies, shatter it into small manageable pieces, feed into a sequencer and generate list of overlapping reads (&lt;a href="http://en.wikipedia.org/wiki/DNA_sequencing_theory" target="_blank"&gt;since we made multiple copies, it is highly likely that reads coming out will be overlapping and the sum-read-length/genome-size represents &lt;b&gt;coverage&lt;/b&gt;&lt;/a&gt;). In OLC approach, one represents the reads as vertex in graph which are connected if the end of the read representing the first vertex overlaps with the start of the second one.&lt;br /&gt;
&lt;br /&gt;
This graph is traversed to find a Hamiltonian Path and here is where one can use Adam's HCF :) Thus wrote a simple PERL script:&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;span style="font-size: x-small;"&gt;wget http://misccb.googlecode.com/git-history/9deb0b79350f92aa41735091dcc69688a9a45bf0/seqmerge.pl&lt;/span&gt;&lt;/div&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;/div&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;/div&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;br /&gt;&lt;/div&gt;
and ran it:&lt;br /&gt;
&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;
&lt;span style="font-size: x-small;"&gt;perl seqmerge.pl 9 3 4 2&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
to create random small genome of a given length (9), break it into overlapping k-mers of given size (3) reflecting a given coverage (4), use the overlap (2) information to create &lt;a href="http://misccb.googlecode.com/git-history/9deb0b79350f92aa41735091dcc69688a9a45bf0/Genome.L9.K3.C4.O2.cg" target="_blank"&gt;list of connected k-mers&lt;/a&gt;. This is fed to the HCF and we compare the &lt;a href="http://misccb.googlecode.com/git-history/9deb0b79350f92aa41735091dcc69688a9a45bf0/Genome.L9.K3.C4.O2.fa" target="_blank"&gt;Simulated Genome&lt;/a&gt; to the &lt;a href="http://misccb.googlecode.com/git-history/9deb0b79350f92aa41735091dcc69688a9a45bf0/Genome.L9.K3.C4.O2.fa.ham" target="_blank"&gt;HCF generated Genome&lt;/a&gt; to see if it works. For example:&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;perl seqmerge.pl 9 3 4 2&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;Simulated Genome &lt;/span&gt;&lt;b style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;CATTTTGAT&lt;/b&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;Generated k-mers CAT ATT TTT TTT TTG TGA GAT ATC TCA CAT ATT TTT&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;Genome file Genome.L9.K3.C4.O2.fa&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;Connectivity file Genome.L9.K3.C4.O2.cg&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;Running shell Hamiltonian path finder and writing output to &lt;a href="http://misccb.googlecode.com/git-history/9deb0b79350f92aa41735091dcc69688a9a45bf0/Genome.L9.K3.C4.O2.cg.ham"&gt;Genome.L9.K3.C4.O2.cg.ham&lt;/a&gt;&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;Collapsed ham.sh output from Genome.L9.K3.C4.O2.cg.ham written to Genome.L9.K3.C4.O2.fa.ham&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;Assembled Genome &lt;/span&gt;&lt;b style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;TTTGATCAT&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
and as we can see the circular genome &lt;b&gt;CATTTTGAT&lt;/b&gt; is same as &lt;b&gt;TTTGATCAT, &lt;/b&gt;so it did work :) &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-4056368637983663430?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/OhA1wEeDks4NFenB68BEaxFwDS8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OhA1wEeDks4NFenB68BEaxFwDS8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/OhA1wEeDks4NFenB68BEaxFwDS8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OhA1wEeDks4NFenB68BEaxFwDS8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/2vQKpKnzJHU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/4056368637983663430/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=4056368637983663430&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/4056368637983663430?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/4056368637983663430?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/2vQKpKnzJHU/hamiltonian-path-assembler.html" title="Hamiltonian Assembler" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2012/01/hamiltonian-path-assembler.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEMR3YzcCp7ImA9WhdSEUw.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-6553537223096230956</id><published>2011-07-20T04:51:00.000+05:30</published><updated>2011-07-20T04:51:26.888+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-07-20T04:51:26.888+05:30</app:edited><title>Getting out gene list from Ensembl web query results with WWW::Mechanize</title><content type="html">Seems like the Ensembl API is not providing a way to get list of results (?) for web query, thus decided to write a simple perl script. So to get list of gene hits for Ensembl query &lt;a href="http://www.ensembl.org/Multi/Search/Results?species=all;idx=;q=%27histone%20h2a%20histone%20cluster%201%27"&gt;'histone h2a histone cluster 1'&lt;/a&gt; one can simply run:&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;perl getensidmech.pl 'histone h2a histone cluster 1'&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;and the quick and dirty code&amp;nbsp;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;getensidmech.pl&lt;/span&gt;&lt;/span&gt; using &lt;a href="http://stackoverflow.com/questions/254345/how-can-i-extract-url-and-link-text-from-html-in-perl"&gt;WWW::Mechanize&lt;/a&gt; is there at http://research-code-base-animesh.googlecode.com/svn/trunk/code_lic/getensidmech.pl :)&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-6553537223096230956?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/p-uVzU9sjfCHfQuruY8-fnuYPro/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/p-uVzU9sjfCHfQuruY8-fnuYPro/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/p-uVzU9sjfCHfQuruY8-fnuYPro/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/p-uVzU9sjfCHfQuruY8-fnuYPro/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/eqMujKKaaew" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/6553537223096230956/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=6553537223096230956&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/6553537223096230956?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/6553537223096230956?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/eqMujKKaaew/getting-out-gene-list-from-ensembl-web.html" title="Getting out gene list from Ensembl web query results with WWW::Mechanize" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><georss:featurename>Bergen, Norway</georss:featurename><georss:point>60.39126279999999 5.32205440000007</georss:point><georss:box>60.22960929999999 5.06344790000007 60.55291629999999 5.58066090000007</georss:box><feedburner:origLink>http://computationalbiologynews.blogspot.com/2011/07/getting-out-gene-list-from-ensembl-web.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE4DQ38zfSp7ImA9WhZVFko.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-3503693671441729473</id><published>2011-05-29T18:12:00.000+05:30</published><updated>2011-05-29T18:12:52.185+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-05-29T18:12:52.185+05:30</app:edited><title>Cancer classification using Google prediction API</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;Google's prediction API is &lt;a href="http://googlecode.blogspot.com/2011/05/google-prediction-api-helps-all-apps-to.html"&gt;now available to everyone&lt;/a&gt; with nice &lt;a href="http://code.google.com/apis/predict/docs/hello_world.html"&gt;tutorial&lt;/a&gt; on how to get going :) so I decided to check its performance using gene expression values for &lt;a href="http://commondatastorage.googleapis.com/mlani/frbcge_300605.pdf"&gt;5 selected genes&lt;/a&gt; using &lt;a href="http://iospress.metapress.com/content/5403j0v081652058/"&gt;online-feature-selection&lt;/a&gt; from the classic &lt;a href="http://astor.som.jhmi.edu/%7Ecope/687/data/golub.1999.pdf"&gt;AML/ALL&lt;/a&gt; dataset (&lt;a href="http://astor.som.jhmi.edu/%7Ecope/687/data/golub.train"&gt;training&lt;/a&gt;/&lt;a href="http://astor.som.jhmi.edu/%7Ecope/687/data/golub.test"&gt;test&lt;/a&gt;).&lt;br /&gt;
&lt;span&gt;The dataset needed to be &lt;a href="http://code.google.com/apis/predict/docs/developer-guide.html#structuringyourtrainingdata"&gt;formatted&lt;/a&gt; (&lt;a href="http://commondatastorage.googleapis.com/mlani/top5_tr.csv"&gt;training&lt;/a&gt;/&lt;a href="http://commondatastorage.googleapis.com/mlani/top5_te.csv"&gt;test&lt;/a&gt;) and copied to &lt;a href="https://code.google.com/apis/storage/"&gt;Google storage&lt;/a&gt; to get the default &lt;a href="http://code.google.com/apis/predict/docs/libraries.html#oacurltraining"&gt;scripts&lt;/a&gt; working. &lt;/span&gt;&lt;br /&gt;
&lt;span&gt;Coming to the results, well the training step:&lt;/span&gt;&lt;br /&gt;
&lt;div style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&lt;span style="font-size: x-small;"&gt;&lt;span&gt;./oauth-train.sh mlani/top5_tr.csv&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span&gt;gave a performance of about 3/4:&lt;/span&gt;&lt;br /&gt;
&lt;span&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace; font-size: xx-small;"&gt;./oauth-check-training.sh mlani/top5_tr.csv&lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp;"kind": "prediction#training",&lt;br /&gt;
&amp;nbsp;"id": "mlani/top5_tr.csv",&lt;br /&gt;
&amp;nbsp;"selfLink": "https://www.googleapis.com/prediction/v1.2/training/mlani/top5_tr.csv",&lt;br /&gt;
&amp;nbsp;"modelInfo": {&lt;br /&gt;
&amp;nbsp; "modelType": "classification",&lt;br /&gt;
&amp;nbsp; "classificationAccuracy": 0.75&lt;br /&gt;
&amp;nbsp;},&lt;br /&gt;
&amp;nbsp;"trainingStatus": "DONE"&lt;br /&gt;
}&lt;/span&gt;not too bad, considering they are using some sort of statistical learning and sample is not the recommended 10x of feature set...&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span&gt;Coming to testing part:&lt;/span&gt;&lt;br /&gt;
&lt;span&gt;&lt;span style="font-size: xx-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;./oauth-predict.sh mlani/top5_tr.csv "1122,178,847,33,1018"&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;{&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;"kind": "prediction#output",&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;"id": "mlani/top5_tr.csv",&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;"selfLink": "https://www.googleapis.com/prediction/v1.2/training/mlani/top5_tr.csv/predict",&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;"outputLabel": "ALL",&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;"outputMulti": [&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp; {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp; "label": "ALL",&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp; "score": 0.899588&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp; },&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp; {&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp; "label": "AML",&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;&amp;nbsp; "score": 0.100412&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp; }&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;&amp;nbsp;]&lt;/span&gt;&lt;br style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;" /&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
so seems like the first example went well, putting ALL as ALL with ~90% score :)&lt;/span&gt;&lt;br /&gt;
&lt;span&gt;To get it over all the &lt;/span&gt;&lt;span&gt;&lt;a href="http://commondatastorage.googleapis.com/mlani/top5_te.csv"&gt;test&lt;/a&gt; &lt;/span&gt;&lt;span&gt; examples, needed to write a &lt;a href="http://commondatastorage.googleapis.com/mlani/check-pred-googleapi.pl"&gt;simple PERL script&lt;/a&gt;:&lt;/span&gt;&lt;br /&gt;
&lt;span&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace; font-size: xx-small;"&gt;perl check-pred-googleapi.pl top5_te.csv &lt;br /&gt;
ALLALLALLALLALLALLALLALLALLALLALLALLALLALLAML1&lt;br /&gt;
ALLAML2&lt;br /&gt;
ALLALLALLAMLAMLAMLAMLAMLALL3&lt;br /&gt;
AMLALL4&lt;br /&gt;
AMLAMLALL5&lt;br /&gt;
AMLAMLAML&lt;/span&gt;Got 29 out of 34(accuracy:0.852941176470588)&lt;/span&gt;&lt;br /&gt;
&lt;span&gt;which I guess is pretty good considering&lt;a href="http://en.wikipedia.org/wiki/Black_box"&gt; black box &lt;/a&gt;like usage :)&lt;/span&gt;&lt;br /&gt;
&lt;span&gt;Happy predicting !&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-3503693671441729473?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9K1RcXa-R9qRWdLWbhFjjKGtuIE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9K1RcXa-R9qRWdLWbhFjjKGtuIE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9K1RcXa-R9qRWdLWbhFjjKGtuIE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9K1RcXa-R9qRWdLWbhFjjKGtuIE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/UIYp-lyA8K0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/3503693671441729473/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=3503693671441729473&amp;isPopup=true" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/3503693671441729473?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/3503693671441729473?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/UIYp-lyA8K0/cancer-classification-using-google.html" title="Cancer classification using Google prediction API" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>3</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2011/05/cancer-classification-using-google.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEQFSXs-cCp7ImA9WhZVEEQ.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-7896923700625129696</id><published>2011-05-22T00:47:00.001+05:30</published><updated>2011-05-23T02:01:58.558+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-05-23T02:01:58.558+05:30</app:edited><title>PERL one liner to generate 1000 base genome</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span style="font-size: xx-small;"&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;perl -e '@b=qw/A T G C/;print "&amp;gt;Genome\n";while($l&amp;lt;1000){print @b[int(rand(4))];$l++;}'&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-7896923700625129696?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/bePxHhPxm3yeCUXBn76zzXjMMnM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bePxHhPxm3yeCUXBn76zzXjMMnM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/bePxHhPxm3yeCUXBn76zzXjMMnM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bePxHhPxm3yeCUXBn76zzXjMMnM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/nXnNg6SNl0g" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/7896923700625129696/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=7896923700625129696&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/7896923700625129696?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/7896923700625129696?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/nXnNg6SNl0g/perl-one-liner-to-generate-1000-base.html" title="PERL one liner to generate 1000 base genome" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2011/05/perl-one-liner-to-generate-1000-base.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkINQ3c-cCp7ImA9WhZXFUQ.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-6696720333496090255</id><published>2011-03-29T19:30:00.001+05:30</published><updated>2011-05-05T16:53:12.958+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-05-05T16:53:12.958+05:30</app:edited><title>Finding coding region with Fourier transform</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;span class="Apple-style-span" style="font-family: Arial,Helvetica,sans-serif;"&gt;Been a long time since I posted anything here, well I hardly had anything worth posting ...&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial,Helvetica,sans-serif;"&gt;Recently a friend of mine asked for implementation of Genescan code presented in "&lt;a href="http://bioinformatics.oxfordjournals.org/content/13/3/263.abstract"&gt;Prediction of probable genes by Fourier analysis of genomic sequences&lt;/a&gt;" / "&lt;a href="http://www.ncbi.nlm.nih.gov/pubmed/11927773"&gt;Ab initio gene identification: prokaryote genome annotation with GeneScan and GLIMMER&lt;/a&gt;" and thus I went back looking into my old posts here... and strangely there were none about it! So decided to post for future reference.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial,Helvetica,sans-serif;"&gt;Running the code &lt;a href="http://research-code-base-animesh.googlecode.com/svn/trunk/code_lic/waexome.pl"&gt;waexome.pl&lt;/a&gt;&amp;nbsp;is&amp;nbsp;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #202020;"&gt;straight forward, for example running it over &lt;a href="http://www.ncbi.nlm.nih.gov/nuccore/NM_000612.4?report=fasta&amp;amp;log$=seqview&amp;amp;format=text"&gt;ins.fas&lt;/a&gt;:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="border-collapse: collapse; color: #202020;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New',Courier,monospace;"&gt;perl&amp;nbsp;waexome.pl&amp;nbsp;ins.fas 3 300&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: #202020; font-family: Arial,Helvetica,sans-serif;"&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse;"&gt;will split sequence(s) into window of 300 and look for periodicity at 3, generate one .fted.txt for each sequence in the ins.fas and also ins.fted.txt which will report regions &amp;gt; p2nr threshold (hardcoded to 4), naively these are the coding regions according to the&amp;nbsp;Fourier&amp;nbsp;transformation threshold as they show peak&amp;nbsp;periodicity&amp;nbsp;at 3 (size of codon). Thus the generated file&amp;nbsp;&lt;a href="http://research-code-base-animesh.googlecode.com/svn/trunk/code_lic/ins.fas.fted.txt"&gt;ins.fas.fted.txt&lt;/a&gt; reports the coding region for this particular example :).&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: #202020; font-family: 'Droid Sans',arial,sans-serif; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-6696720333496090255?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QPyZS2TCBnmcX46CyIhlb_gG97k/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QPyZS2TCBnmcX46CyIhlb_gG97k/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QPyZS2TCBnmcX46CyIhlb_gG97k/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QPyZS2TCBnmcX46CyIhlb_gG97k/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/e_g-f-rwI3A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/6696720333496090255/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=6696720333496090255&amp;isPopup=true" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/6696720333496090255?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/6696720333496090255?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/e_g-f-rwI3A/finding-coding-region-with-fourier.html" title="Finding coding region with Fourier transform" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>1</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2011/03/finding-coding-region-with-fourier.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU4DQncyeyp7ImA9WxdUFU0.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-7093343759301771078</id><published>2008-07-29T00:35:00.003+05:30</published><updated>2008-07-31T18:09:33.993+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-31T18:09:33.993+05:30</app:edited><title>Harnessing the power of multicore</title><content type="html">Most of us are working on multi - core processors , but the code we generally write do not utilize the extra cpu given to us. I do lot of "Align EST and genomic DNA sequences" using &lt;a href="http://embossgui.sourceforge.net/demo/manual/est2genome.html"&gt;est2genome&lt;/a&gt; from &lt;a href="http://emboss.sourceforge.net/"&gt;EMBOSS&lt;/a&gt;. This is a task which is embarrassingly amenable to parallelization. So how do we go about doing this using PERL? Well following &lt;a href="http://www.perlmonks.org/?node_id=696620"&gt;a posting at PerlMonks&lt;/a&gt;, I got hold of &lt;a href="http://search.cpan.org/~dlux/Parallel-ForkManager-0.7.5/ForkManager.pm"&gt;Parallel::ForkManager&lt;/a&gt;:&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;wget http://search.cpan.org/CPAN/authors/id/D/DL/DLUX/Parallel-ForkManager-0.7.5.tar.gz&lt;/span&gt;&lt;br /&gt;and extracted to:&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;/scratch/misc/parallel/Parallel &lt;/span&gt;&lt;br /&gt;[if you have root access to your machine, I would recommend to install this module instead of going for '&lt;span style="font-family:courier new;"&gt;use lib&lt;/span&gt;'].&lt;br /&gt;Once this is done, all you need is &lt;a href="http://search.cpan.org/~dlux/Parallel-ForkManager-0.7.5/ForkManager.pm#Parallel_get"&gt;follow the examples &lt;/a&gt;and get going :)&lt;br /&gt;For example, I have EST in fasta format files ending with .fas. The genome I am aligning to is &lt;a href="http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?db=nucleotide&amp;amp;val=NC_010336"&gt;NC_010336.fna&lt;/a&gt;. For this I can write the following code:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  use strict;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  use warnings;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  use lib '/scratch/misc/parallel/Parallel';&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  use LWP::Simple;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  use Parallel::ForkManager;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  system("ls -1 *.fas &gt; list.tmp");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  my $command="est2genome";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  my $genome="NC_010336.fna";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  my @tasks;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  open(F,"list.tmp");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  while(&amp;lt F &amp;gt){chomp;push(@tasks,$_);}&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  close F;  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  my $tasksize= @tasks;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  print "There are #  $tasksize \n";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  my $pm = new Parallel::ForkManager($tasksize); &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  foreach my $task (@tasks) {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;    $pm-&gt;start and next; # do the fork&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;    system("$command $task $genome $task.$genome.out");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;    $pm-&gt;finish; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  $pm-&gt;wait_all_children;&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;and store is as &lt;a href="http://sharma.animesh.googlepages.com/est2genome_parallel.pl"&gt;est2genome_parallel.pl&lt;/a&gt; and run it as:&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;perl est2genome_parallel.pl&lt;/span&gt;&lt;br /&gt;above code can be downloaded from http://sharma.animesh.googlepages.com/est2genome_parallel.pl, enjoy :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-7093343759301771078?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Knb6UIde58kFIiMouErNNlv8MJo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Knb6UIde58kFIiMouErNNlv8MJo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Knb6UIde58kFIiMouErNNlv8MJo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Knb6UIde58kFIiMouErNNlv8MJo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/fbkzp3kD8nU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/7093343759301771078/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=7093343759301771078&amp;isPopup=true" title="5 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/7093343759301771078?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/7093343759301771078?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/fbkzp3kD8nU/harnessing-power-of-multicore.html" title="Harnessing the power of multicore" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>5</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/07/harnessing-power-of-multicore.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkQDRXc9eyp7ImA9WxdUEko.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-8713295041956195934</id><published>2008-07-28T23:47:00.006+05:30</published><updated>2008-07-29T00:09:34.963+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-29T00:09:34.963+05:30</app:edited><title>Blast /usr/share/dict/linux.words</title><content type="html">&lt;div&gt; After reading 'Waq’s Words and World', where the author tries to find anagrams by scanning through dictionary, I got interested in checking which is the biggest word in /usr/share/dict/linux.words which can give a significant hit with blasp against swissprot. So I vimmed dict.pl and wrote:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/usr/bin/perl&lt;br /&gt;while(&lt;&gt;){chomp;split(/\s+/);$c++;$dictast{length(@_[0])}.="&gt;s.$c\n@_[0]\n";}&lt;br /&gt;foreach $w (sort {$b&amp;lt;=&amp;gt;$a} keys %dictast){&lt;br /&gt;   open(FI,"&amp;gt;temp.blast.in");&lt;br /&gt;   print "Blasting $w length word(s) file\n";&lt;br /&gt;   print FI"$dictast{$w}";&lt;br /&gt;   close FI;&lt;br /&gt;   system("blastcl3 -p blastp -d swissprot -i temp.blast.in -o temp.blast.out");&lt;br /&gt;   open(FO,"temp.blast.out");&lt;br /&gt;   while(&lt;&gt;){&lt;br /&gt;           print $_;&lt;br /&gt;           if($_=~/^Sequences producing significant/){&lt;br /&gt;                   close FO;  &lt;br /&gt;                   die;&lt;br /&gt;           }&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;The program died aligining SPECTROCOLORIMETRY with SPDCAERCGIMRLMDTRY from "&amp;gt;sp|Q0U3Y6|DDI1_PHANO DNA damage-inducible protein 1":&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Query: 1          SPECTROCOLORIMETRY 18&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;                  SP+C   C + R+M+TRY&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Sbjct: 229        SPDCAERCGIMRLMDTRY 246&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;To replicate or explore-further, the code can be downleaded from &lt;a href="http://sharma.animesh.googlepages.com/dict.pl" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/dict.pl&lt;/a&gt; ad run as:&lt;br /&gt;perl dict.pl /usr/share/dict/linux.words&lt;br /&gt;[ /usr/share/dict/linux.words is the dictionary file coming with fedora 9, you may have it in different location, to find, do 'find / -name dict' ]. &lt;/div&gt;&lt;table style="border: 4px solid rgb(229, 229, 229); margin: 12px 0px; background: rgb(255, 255, 255) none repeat scroll 0% 50%; font-family: arial; color: rgb(51, 51, 51); -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 100%; clear: left;" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:CEA22CD8-562E-4DE2-AB05-970BE7691D4C:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px; background-color: rgb(255, 255, 255);"&gt;&lt;div style="border-bottom: 1px solid rgb(220, 220, 220); white-space: nowrap; margin-bottom: 8px; background-color: rgb(238, 238, 238); background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: rgb(102, 102, 102); font-size: 10px;"&gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/feec6439-6317-4cb7-8f0e-49f3017deec5/CEA22CD8-562E-4DE2-AB05-970BE7691D4C/" alt="" style="border: medium none ; margin: 0px 4px; vertical-align: middle; display: inline; float: none;" border="0" height="19" width="19" /&gt;&lt;/a&gt;clipped from &lt;a title="http://idazuwaika.wordpress.com/2008/06/26/playing-with-words/" href="http://idazuwaika.wordpress.com/2008/06/26/playing-with-words/" style="font-size: 11px;"&gt;idazuwaika.wordpress.com&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="border: medium none ; margin: 4px 0px 8px; padding: 0px 8px; background: transparent none repeat scroll 0% 50%; text-align: left; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" cite="http://idazuwaika.wordpress.com/2008/06/26/playing-with-words/"&gt;&lt;p&gt;Anyway, to avoid getting rusty with programming (as I have with football), I wrote a Java program to scan through list of English words and find anagram pairs. Below are the interesting ones.&lt;/p&gt; &lt;ol&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;antagonist  stagnation&lt;/li&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;ascertain  sectarian&lt;/li&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;bacterial  calibrate&lt;/li&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;coordinate  decoration&lt;/li&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;courteous  outsource&lt;/li&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;eroticism  isometric&lt;/li&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;excitation  intoxicate&lt;/li&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;prettiness  persistent&lt;/li&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;satirical  racialist&lt;/li&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;shattering  straighten&lt;/li&gt;&lt;br /&gt;&lt;li style="margin-left: 16px; padding-left: 0px;"&gt;supersonic  percussion&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="padding: 0px; font-size: 11px; border-spacing: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="border-width: 0px; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="border-width: 0px; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 107px;" align="right" width="107"&gt;&lt;a href="http://clipmarks.com/share/CEA22CD8-562E-4DE2-AB05-970BE7691D4C/blog/" title="blog or email this clip"&gt;&lt;img src="http://content7.clipmarks.com/images/c2b-foot.png" alt="blog it" style="border-width: 0px; margin: 0px; padding: 0px;" border="0" height="17" width="107" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-8713295041956195934?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/DGLL-Onxg_Psosk7ARCEIqaYVLU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DGLL-Onxg_Psosk7ARCEIqaYVLU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/DGLL-Onxg_Psosk7ARCEIqaYVLU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DGLL-Onxg_Psosk7ARCEIqaYVLU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/8-aWjlAzyKc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/8713295041956195934/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=8713295041956195934&amp;isPopup=true" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/8713295041956195934?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/8713295041956195934?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/8-aWjlAzyKc/blast-usrsharedictlinuxwords.html" title="Blast /usr/share/dict/linux.words" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>1</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/07/blast-usrsharedictlinuxwords.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUcESH44cCp7ImA9WxdUEU0.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-4971035032457162905</id><published>2008-07-27T01:40:00.001+05:30</published><updated>2008-07-27T01:40:09.038+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-27T01:40:09.038+05:30</app:edited><title>Kyoto Prize goes to Karp</title><content type="html">&lt;div &gt; Prof. Richard M. Karp [ &lt;a href="http://www.cs.berkeley.edu/~karp/biography.html" rel="nofollow" target="_blank"&gt;http://www.cs.berkeley.edu/~karp/biography.html&lt;/a&gt; ] won the prestigious Kyoto Prize this year in Information Science category [ &lt;a href="http://en.wikipedia.org/wiki/List_of_Kyoto_Prize_winners" rel="nofollow" target="_blank"&gt;http://en.wikipedia.org/wiki/List_of_Kyoto_Prize_winners&lt;/a&gt; ].Good to see a Bioinformatics hero getting something like Nobel. &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:D5FECAC0-157A-4130-A120-13346E1780CF:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/99747fcf-14e4-43a4-94ab-29fdb15f97d9/D5FECAC0-157A-4130-A120-13346E1780CF/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.bizjournals.com/eastbay/stories/2008/06/16/daily87.html" href="http://www.bizjournals.com/eastbay/stories/2008/06/16/daily87.html" style="font-size: 11px;"&gt;www.bizjournals.com&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.bizjournals.com/eastbay/stories/2008/06/16/daily87.html"&gt;&lt;P&gt;&lt;A href="http://www.bizjournals.com/eastbay/gen/UC-Berkeley_55A922AD302B416FAC8F76DF4BB4B457.html"&gt;&lt;STRONG&gt;UC-Berkeley&lt;/STRONG&gt;&lt;/A&gt; professor Richard Karp has won the 2008 Kyoto Prize, Japan's equivalent of the Nobel Prize, in recognition of his lifetime achievements in the field of computer theory. &lt;/P&gt;&lt;/blockquote&gt;&lt;div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.bizjournals.com/eastbay/stories/2008/06/16/daily87.html"&gt;&lt;P&gt; Karp is one of three laureates named Friday, entitling him to a cash gift of about $460,000, a diploma and a gold medal recognizing his work in defining the field of theoretical computer science. &lt;/P&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/D5FECAC0-157A-4130-A120-13346E1780CF/blog/" title="blog or email this clip"&gt;&lt;img src="http://content9.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-4971035032457162905?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/TZbhcz9UZpTHADUGqS4whVTMZFQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/TZbhcz9UZpTHADUGqS4whVTMZFQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/TZbhcz9UZpTHADUGqS4whVTMZFQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/TZbhcz9UZpTHADUGqS4whVTMZFQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/ZplSL4ant5w" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/4971035032457162905/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=4971035032457162905&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/4971035032457162905?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/4971035032457162905?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/ZplSL4ant5w/kyoto-prize-goes-to-karp.html" title="Kyoto Prize goes to Karp" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/07/kyoto-prize-goes-to-karp.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0EGQXo_eCp7ImA9WxdUEU0.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-9081794249314660437</id><published>2008-07-27T01:17:00.001+05:30</published><updated>2008-07-27T01:17:00.440+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-27T01:17:00.440+05:30</app:edited><title>Switiching via common structural framework</title><content type="html">&lt;div &gt; Josh explores [ &lt;a href="http://www.thinkgene.com/researchers-reveal-insights-into-hidden-world-of-protein-folding" rel="nofollow" target="_blank"&gt;http://www.thinkgene.com/researchers-reveal-insights-into-hidden-world-of-protein-folding&lt;/a&gt;/ ] an article from Booth et al.  titled 'Mechanism of lid closure in the eukaryotic chaperonin TRiC/CCT' [ &lt;a href="http://www.nature.com/nsmb/journal/v15/n7/abs/nsmb.1436.html" rel="nofollow" target="_blank"&gt;http://www.nature.com/nsmb/journal/v15/n7/abs/nsmb.1436.html&lt;/a&gt; or &lt;a href="http://www.scribd.com/doc/3321492/Mechanism-of-lid-closure-in-the-eukaryotic-chaperonin-TRiCCCT" rel="nofollow" target="_blank"&gt;http://www.scribd.com/doc/3321492/Mechanism-of-lid-closure-in-the-eukaryotic-chaperonin-TRiCCCT&lt;/a&gt; ]. &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:D3970249-0F84-427E-83A1-13C6A8DF4FD6:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/0f184d31-f266-4406-b03d-b852f03589a4/D3970249-0F84-427E-83A1-13C6A8DF4FD6/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.thinkgene.com/researchers-reveal-insights-into-hidden-world-of-protein-folding/" href="http://www.thinkgene.com/researchers-reveal-insights-into-hidden-world-of-protein-folding/" style="font-size: 11px;"&gt;www.thinkgene.com&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.thinkgene.com/researchers-reveal-insights-into-hidden-world-of-protein-folding/"&gt;&lt;P&gt;Virtually all proteins have to be folded-some in complex configurations-in order to function properly, and many are known to require a molecule called a chaperone to fold them. Frydman estimates that perhaps 10 percent of the proteins needing chaperones must have one that, like TRiC, is part of the subset called chaperonins. Other work done in Frydman’s lab has shown that proteins that have very complex folds seem to require chaperonins.&lt;/P&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/D3970249-0F84-427E-83A1-13C6A8DF4FD6/blog/" title="blog or email this clip"&gt;&lt;img src="http://content8.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-9081794249314660437?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/v21Dsm8eIWV-hP4dGcIV38fZJBQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/v21Dsm8eIWV-hP4dGcIV38fZJBQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/v21Dsm8eIWV-hP4dGcIV38fZJBQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/v21Dsm8eIWV-hP4dGcIV38fZJBQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/u5BJ_H76SfQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/9081794249314660437/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=9081794249314660437&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/9081794249314660437?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/9081794249314660437?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/u5BJ_H76SfQ/switiching-via-common-structural.html" title="Switiching via common structural framework" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/07/switiching-via-common-structural.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0AFQX48eyp7ImA9WxdUEU0.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-7302358650131367212</id><published>2008-07-27T01:01:00.003+05:30</published><updated>2008-07-27T01:18:30.073+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-27T01:18:30.073+05:30</app:edited><title>Biopython 1.47</title><content type="html">&lt;div&gt; Hope you guys are convinced to explore Python for you job after reading &lt;a href="http://www.bioinformaticszen.com/2008/02/bioinformatics-zen-faq" rel="nofollow" target="_blank"&gt;http://www.bioinformaticszen.com/2008/02/bioinformatics-zen-faq&lt;/a&gt;/ and more recently Mark Bieda's resentment at &lt;a href="http://markbieda.wordpress.com/2008/06/10/i-wish-i-had-started-with-python-earlier" rel="nofollow" target="_blank"&gt;http://markbieda.wordpress.com/2008/06/10/i-wish-i-had-started-with-python-earlier&lt;/a&gt;/  and some reasons and his ways at &lt;a href="http://markbieda.wordpress.com/2008/06/18/python-for-perl-programmers-and-bioinformatics-people" rel="nofollow" target="_blank"&gt;http://markbieda.wordpress.com/2008/06/18/python-for-perl-programmers-and-bioinformatics-people&lt;/a&gt;/  on how to go about it. I have one more reason for you to follow the wave, the biopython's  release of version  1.4.7 [ &lt;a href="http://biopython.org/wiki/Download" rel="nofollow" target="_blank"&gt;http://biopython.org/wiki/Download&lt;/a&gt; ] &lt;img src="http://clipmarks.com/images/icons/smilies/happy.gif?r=2" style="margin-bottom: -4px;" alt="" /&gt; ...  I am also noticing a recent rise in interest for the language &lt;a href="http://www.littleb.org/"&gt;LittleB&lt;/a&gt; based on lisp [story via &lt;a href="http://www.eurekalert.org/pub_releases/2008-07/hms-be072108.php"&gt;Eureka&lt;/a&gt;].&lt;br /&gt;&lt;/div&gt;&lt;table style="border: 4px solid rgb(229, 229, 229); margin: 12px 0px; background: rgb(255, 255, 255) none repeat scroll 0% 50%; font-family: arial; color: rgb(51, 51, 51); -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 100%; clear: left;" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:13DCE50A-7870-417E-877C-5AD6B27DA43B:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px; background-color: rgb(255, 255, 255);"&gt;&lt;div style="border-bottom: 1px solid rgb(220, 220, 220); white-space: nowrap; margin-bottom: 8px; background-color: rgb(238, 238, 238); background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: rgb(102, 102, 102); font-size: 10px;"&gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/969fcb85-e3ce-4bea-b66c-7e103d2d9539/13DCE50A-7870-417E-877C-5AD6B27DA43B/" alt="" style="border: medium none ; margin: 0px 4px; vertical-align: middle; display: inline; float: none;" border="0" height="19" width="19" /&gt;&lt;/a&gt;clipped from &lt;a title="http://biopython.org/w/index.php?title=Biopython&amp;amp;oldid=2125" href="http://biopython.org/w/index.php?title=Biopython&amp;amp;oldid=2125" style="font-size: 11px;"&gt;biopython.org&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="border: medium none ; margin: 4px 0px 8px; padding: 0px 8px; background: transparent none repeat scroll 0% 50%; text-align: left; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" cite="http://biopython.org/w/index.php?title=Biopython&amp;amp;oldid=2125"&gt;&lt;p&gt;The latest release is Biopython 1.47, released on 5 July 2008. Get it from our  &lt;a title="Download" href="http://biopython.org/wiki/Download"&gt;Download&lt;/a&gt; page.&lt;br /&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="padding: 0px; font-size: 11px; border-spacing: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="border-width: 0px; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="border-width: 0px; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 107px;" align="right" width="107"&gt;&lt;a href="http://clipmarks.com/share/13DCE50A-7870-417E-877C-5AD6B27DA43B/blog/" title="blog or email this clip"&gt;&lt;img src="http://content7.clipmarks.com/images/c2b-foot.png" alt="blog it" style="border-width: 0px; margin: 0px; padding: 0px;" border="0" height="17" width="107" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-7302358650131367212?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kOFLFX4Yo9yYY2uN9c0zncIdGSc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kOFLFX4Yo9yYY2uN9c0zncIdGSc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/kOFLFX4Yo9yYY2uN9c0zncIdGSc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kOFLFX4Yo9yYY2uN9c0zncIdGSc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/-aKjkN4kK1I" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/7302358650131367212/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=7302358650131367212&amp;isPopup=true" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/7302358650131367212?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/7302358650131367212?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/-aKjkN4kK1I/biopython-147.html" title="Biopython 1.47" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>3</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/07/biopython-147.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A08MRXc4eyp7ImA9WxdUEEQ.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-9028743015413603831</id><published>2008-07-27T00:48:00.001+05:30</published><updated>2008-07-27T00:48:04.933+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-27T00:48:04.933+05:30</app:edited><title>BZ: Bioinformatics Career Survey 2008</title><content type="html">&lt;div &gt; Mike is running a survey about Bioinformatics Career [ &lt;a href="http://www.bioinformaticszen.com/2008/07/creating-a-picture-of-different-careers-in-bioinformatics" rel="nofollow" target="_blank"&gt;http://www.bioinformaticszen.com/2008/07/creating-a-picture-of-different-careers-in-bioinformatics&lt;/a&gt;/ ]. Although it is running for quite some time, but I just came back to blog-world. I would appeal to all the people in the domain to fill this. The more the samples, the better the survey and more over this is time of data driven science [ &lt;a href="http://www.wired.com/science/discoveries/magazine/16-07/pb_theory" rel="nofollow" target="_blank"&gt;http://www.wired.com/science/discoveries/magazine/16-07/pb_theory&lt;/a&gt; ] though Deepak has some issues with this development [ &lt;a href="http://mndoci.com/blog/2008/06/25/chris-anderson-you-are-wrong" rel="nofollow" target="_blank"&gt;http://mndoci.com/blog/2008/06/25/chris-anderson-you-are-wrong&lt;/a&gt;/ ]. &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:C2E2F825-07C8-44AD-AACD-1D070F84FC34:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/65f49f2a-adce-4164-99d7-f693ab0015d6/C2E2F825-07C8-44AD-AACD-1D070F84FC34/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.bioinformaticszen.com/2008/07/creating-a-picture-of-different-careers-in-bioinformatics/" href="http://www.bioinformaticszen.com/2008/07/creating-a-picture-of-different-careers-in-bioinformatics/" style="font-size: 11px;"&gt;www.bioinformaticszen.com&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.bioinformaticszen.com/2008/07/creating-a-picture-of-different-careers-in-bioinformatics/"&gt;When I &lt;A href="http://www.bioinformaticszen.com/2007/09/a-career-in-bioinformatics/"&gt;wrote a post about my opinion of doing a career in bioinformatics&lt;/A&gt; I got the impression from the comments that this was something many people wanted more information about. Pedro and I had some discussion, and thought it might be interesting to create an online survey, to get current researchers’ opinions of working in the field of bioinformatics. So, the below survey begins today (July 1) and is filled out by as many people as possible over the course the next month. The data is then released into the public domain at the start of next month (August 1). Anyone who is then interested can contribute back analysis of this data, so that on September 1 hopefully we can compile together lots of interesting statistics and graphs into a handy document discussing the highs and lows of career in bioinformatics.&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/C2E2F825-07C8-44AD-AACD-1D070F84FC34/blog/" title="blog or email this clip"&gt;&lt;img src="http://content8.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-9028743015413603831?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ZFlC16M4f1l9vv40OzKiV3AwOq8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZFlC16M4f1l9vv40OzKiV3AwOq8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ZFlC16M4f1l9vv40OzKiV3AwOq8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZFlC16M4f1l9vv40OzKiV3AwOq8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/8Gt_hz17suA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/9028743015413603831/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=9028743015413603831&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/9028743015413603831?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/9028743015413603831?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/8Gt_hz17suA/bz-bioinformatics-career-survey-2008.html" title="BZ: Bioinformatics Career Survey 2008" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/07/bz-bioinformatics-career-survey-2008.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU8NQHo5fip7ImA9WxdUEEQ.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-3541661664389463937</id><published>2008-07-27T00:14:00.001+05:30</published><updated>2008-07-27T00:14:51.426+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-27T00:14:51.426+05:30</app:edited><title>A Book Review from Adaptive Complexity: Microcosm E. coli and The New Science of Life</title><content type="html">&lt;div &gt; After reading this review [ &lt;a href="http://www.scientificblogging.com/adaptive_complexity/e_coli_as_biologys_decoder_ring" rel="nofollow" target="_blank"&gt;http://www.scientificblogging.com/adaptive_complexity/e_coli_as_biologys_decoder_ring&lt;/a&gt;? ] from Michael White  [ &lt;a href="http://www.scientificblogging.com/mwhite74/feed" rel="nofollow" target="_blank"&gt;http://www.scientificblogging.com/mwhite74/feed&lt;/a&gt; ] on a book from Carl Zimmer [ &lt;a href="http://blogs.discovermagazine.com/loom" rel="nofollow" target="_blank"&gt;http://blogs.discovermagazine.com/loom&lt;/a&gt;/ ] titled 'Microcosm: E. coli and The New Science of Life' [ &lt;a href="http://www.amazon.com/gp/search?ie=UTF8&amp;amp;keywords=Zimmer%20e.%20Coli&amp;amp;tag=funnierthanyo-20&amp;amp;index=books&amp;amp;linkCode=ur2&amp;amp;camp=1789&amp;amp;creative=9325" rel="nofollow" target="_blank"&gt;http://www.amazon.com/gp/search?ie=UTF8&amp;amp;keywords=Zimmer%20e.%20Coli&amp;amp;tag=funnierthanyo-20&amp;amp;index=books&amp;amp;linkCode=ur2&amp;amp;camp=1789&amp;amp;creative=9325&lt;/a&gt;  ], I am quite eager to read this book. &lt;br/&gt;Presently I am reading a book recommended by Myers [ &lt;a href="http://scienceblogs.com/pharyngula" rel="nofollow" target="_blank"&gt;http://scienceblogs.com/pharyngula&lt;/a&gt;/ ] titled 'Developmental Plasticity and Evolution' [ &lt;a href="http://www.amazon.com/gp/product/0195122356" rel="nofollow" target="_blank"&gt;http://www.amazon.com/gp/product/0195122356&lt;/a&gt; ]  by Mary Jane West-Eberhard [ &lt;a href="http://www.stri.org/english/scientific_staff/staff_scientist/scientist.php?id=35" rel="nofollow" target="_blank"&gt;http://www.stri.org/english/scientific_staff/staff_scientist/scientist.php?id=35&lt;/a&gt; ]. This along with the article referred in the above review 'Evolutionary Dynamics of Prokaryotic Transcriptional Regulatory Networks' [ &lt;a href="http://dx.doi.org/10.1016/j.jmb.2006.02.019" rel="nofollow" target="_blank"&gt;http://dx.doi.org/10.1016/j.jmb.2006.02.019&lt;/a&gt; ] by Madan Babu  and Eisen talking about one of the heroes of bioinformatics at &lt;a href="http://phylogenomics.blogspot.com/2008/06/connection-between-video-games-and.html" rel="nofollow" target="_blank"&gt;http://phylogenomics.blogspot.com/2008/06/connection-between-video-games-and.html&lt;/a&gt; , I am pretty much convinced that Evolutionary biology has lot of opportunity for Bioinformatics guys to be busy for eternity, not just "500 years of exciting problems" [ &lt;a href="http://tex.loria.fr/historique/interviews/knuth-clb1993.html" rel="nofollow" target="_blank"&gt;http://tex.loria.fr/historique/interviews/knuth-clb1993.html&lt;/a&gt; ]! &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:4FEF35E9-192D-4CE4-A87B-C124B177D1CF:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/d5fdda42-b6e2-4e4e-9213-464600696fea/4FEF35E9-192D-4CE4-A87B-C124B177D1CF/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.scientificblogging.com/adaptive_complexity/e_coli_as_biologys_decoder_ring" href="http://www.scientificblogging.com/adaptive_complexity/e_coli_as_biologys_decoder_ring" style="font-size: 11px;"&gt;www.scientificblogging.com&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.scientificblogging.com/adaptive_complexity/e_coli_as_biologys_decoder_ring"&gt;&lt;P&gt;For such a slender book, &lt;I&gt;Microcosm&lt;/I&gt; covers a wide-ranging selection of science. Zimmer begins by recapping the key events in the history of molecular biology, events in which &lt;I&gt;E. coli&lt;/I&gt; was frequently a central player. Once scientists realized that &lt;I&gt;E. coli&lt;/I&gt; had genes just like animals and plants, this gut bacterium gradually became one of the favorite model research systems in the then hot, new science of molecular biology. Experiments in &lt;I&gt;E. coli&lt;/I&gt; revealed how genes are structured, how DNA is replicated, and how genes are controlled. Marshall Nirenberg and his colleagues cracked the essentially universal genetic code using cellular components from &lt;I&gt;E. coli&lt;/I&gt;. Joshua Lederberg used bacterial 'sex' to bring the formidable tools of genetics to bacterial studies. Today, &lt;I&gt;E. coli&lt;/I&gt; is the most well-mapped organism on the planet.&lt;/P&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/4FEF35E9-192D-4CE4-A87B-C124B177D1CF/blog/" title="blog or email this clip"&gt;&lt;img src="http://content6.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-3541661664389463937?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9vFnRWj9EzSOoOXSjipFBKd9RIA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9vFnRWj9EzSOoOXSjipFBKd9RIA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9vFnRWj9EzSOoOXSjipFBKd9RIA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9vFnRWj9EzSOoOXSjipFBKd9RIA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/mw336EPVDA4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/3541661664389463937/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=3541661664389463937&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/3541661664389463937?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/3541661664389463937?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/mw336EPVDA4/book-review-from-adaptive-complexity.html" title="A Book Review from Adaptive Complexity: Microcosm E. coli and The New Science of Life" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/07/book-review-from-adaptive-complexity.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0AHSXc_eCp7ImA9WxdUEEU.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-8031238799473590335</id><published>2008-07-26T21:58:00.001+05:30</published><updated>2008-07-26T21:58:58.940+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-26T21:58:58.940+05:30</app:edited><title>Last Lecture</title><content type="html">&lt;div &gt; Randy Pausch [ &lt;a href="http://en.wikipedia.org/wiki/Randy_Pausch" rel="nofollow" target="_blank"&gt;http://en.wikipedia.org/wiki/Randy_Pausch&lt;/a&gt; ] passed away yesterday morning. I admire him a lot and whenever I feel down, I watch his  Last Lecture [ &lt;a href="http://www.youtube.com/watch?v=ji5_MqicxSo" rel="nofollow" target="_blank"&gt;http://www.youtube.com/watch?v=ji5_MqicxSo&lt;/a&gt;  ]. May his soul rest in peace ... &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:CCFDA179-70F2-49F0-9A91-BD75E5A1B8C8:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/3e2bcce0-a7e2-4a73-8618-f5a7ae73e092/CCFDA179-70F2-49F0-9A91-BD75E5A1B8C8/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.thelastlecture.com/" href="http://www.thelastlecture.com/" style="font-size: 11px;"&gt;www.thelastlecture.com&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.thelastlecture.com/"&gt;&lt;div align="center"&gt;&lt;img src="http://content6.clipmarks.com/blog_cache/www.thelastlecture.com/img/AEB4DAFF-DC5F-482B-B65C-04F975AC55D7" alt="The Last Lecture, Randy Pausch" /&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/CCFDA179-70F2-49F0-9A91-BD75E5A1B8C8/blog/" title="blog or email this clip"&gt;&lt;img src="http://content7.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-8031238799473590335?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/JXKT56XOjntoXRLPNalAErD2FYU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JXKT56XOjntoXRLPNalAErD2FYU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/JXKT56XOjntoXRLPNalAErD2FYU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JXKT56XOjntoXRLPNalAErD2FYU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/sTDLShNhu20" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/8031238799473590335/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=8031238799473590335&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/8031238799473590335?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/8031238799473590335?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/sTDLShNhu20/last-lecture.html" title="Last Lecture" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/07/last-lecture.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE4BRng6cCp7ImA9WxRaEE8.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-5426700548162279621</id><published>2008-06-20T14:56:00.004+05:30</published><updated>2008-12-12T00:45:57.618+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-12T00:45:57.618+05:30</app:edited><title>454</title><content type="html">I have been trying to understand the pyrosequencing technology, popularly known as 454. The very first question which came to my mind is WHY it is called 454? Is it because&lt;a href="http://www.fishandhunttexas.com/454casull.htm"&gt; .454 kasool Handgun&lt;/a&gt; is sleeker then &lt;a href="http://www.shotgunworld.com/"&gt;Shotgun&lt;/a&gt; ( &lt;a style="font-style: italic;" href="http://en.wikipedia.org/wiki/Cf."&gt;Cf.&lt;/a&gt; &lt;a href="http://www.ncbi.nlm.nih.gov/Genbank/wgs.html"&gt;Whole Genome Shotgun Sequence&lt;/a&gt; ) and &lt;a href="http://www.nature.com/nature/journal/v449/n7162/full/449627a.html"&gt;slowly becoming as powerful &lt;/a&gt;... or is it because of the fact that "In one instrument run sequence a minimum of 20 million base pairs in&lt;a href="http://www.454.com/enabling-technology/index.asp"&gt; 4.5 hours&lt;/a&gt;" ... just a conjecture, if you guys have a proof, please share !&lt;br /&gt;Anyways coming back to the technology, what I understand (below is a crude attempt to visualize it) is that there are 4 containers containing A,T,G and C which sequentially pass over the bowl containing a mixture of Polymerase, Sulfurylase, Luciferase, Apyrase and the DNA fragment to be sequenced. The addition of the nucleotide will light up ( thanks to &lt;a href="http://www.allaboutgod.com/story-of-lucifer.htm"&gt;lucifer&lt;/a&gt;-&lt;a href="http://millar.bio.ed.ac.uk/lucifer.html"&gt;ase&lt;/a&gt; ) the &lt;a href="http://en.wikipedia.org/wiki/Image_sensor"&gt;CCD&lt;/a&gt; (a thing close to what we have in a digital camera and the costliest part of the instrument). Since we know the culprit nucleotide container, peak telling how many of that nucleotide is added, we can sequentially proceed and keep adding letters to the reads... this is happening in a massively parallel fashion and that brings out the power of 454...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_G-rkAhN7n20/SFt3-YbQ0zI/AAAAAAAADsw/1yqcYSxZN4Y/s1600-h/drawing.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_G-rkAhN7n20/SFt3-YbQ0zI/AAAAAAAADsw/1yqcYSxZN4Y/s320/drawing.png" alt="" id="BLOGGER_PHOTO_ID_5213892907203875634" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-5426700548162279621?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/wN17Q2K1jWocS6SKrzYVbxdwAXU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/wN17Q2K1jWocS6SKrzYVbxdwAXU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/wN17Q2K1jWocS6SKrzYVbxdwAXU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/wN17Q2K1jWocS6SKrzYVbxdwAXU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/OAlXn6wXEoA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/5426700548162279621/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=5426700548162279621&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/5426700548162279621?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/5426700548162279621?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/OAlXn6wXEoA/454.html" title="454" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_G-rkAhN7n20/SFt3-YbQ0zI/AAAAAAAADsw/1yqcYSxZN4Y/s72-c/drawing.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/06/454.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUMNQX8_fSp7ImA9WxdQFEk.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-316284004431991678</id><published>2008-06-14T18:14:00.001+05:30</published><updated>2008-06-14T18:14:50.145+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-06-14T18:14:50.145+05:30</app:edited><title>Biocomputing</title><content type="html">&lt;div &gt; Haynes et al. in the article "Engineering bacteria to solve the Burnt Pancake Problem" [ &lt;a href="http://www.jbioleng.org/content/2/1/8#IDAJQH0E" rel="nofollow" target="_blank"&gt;http://www.jbioleng.org/content/2/1/8#IDAJQH0E&lt;/a&gt; ] demonstrate how one can take advantage of direction sense embedded in DNA by coding 5'-3' as 0 and 3'-5' as 1 binary coding to convert cells into computers.  &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:B32929BC-0A55-47FC-88CD-D030DBC98704:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/b78ac3e4-d402-4ed9-bd11-c31d7745b3ea/B32929BC-0A55-47FC-88CD-D030DBC98704/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.msnbc.msn.com/id/24880713/page/2/" href="http://www.msnbc.msn.com/id/24880713/page/2/" style="font-size: 11px;"&gt;www.msnbc.msn.com&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.msnbc.msn.com/id/24880713/page/2/"&gt;&lt;P class="textBodyBlack"&gt;&lt;SPAN id="byLine"&gt;&lt;/SPAN&gt;Ron Weiss, an assistant professor of electrical engineering and molecular biology at &lt;A target="_blank" href="http://weisswebserver.ee.princeton.edu/"&gt;Princeton University&lt;/A&gt;, said the new study provides a “nice demonstration that there’s some capability to instruct cells to carry out computational tasks. And I think this certainly brings a new aspect to what’s been demonstrated before.” Weiss, who wasn’t involved with the research, said the effort is another sign that the field is progressing, despite its relative infancy. “We really are at the beginning, at the vacuum tube stage or something like that, if you use the comparison with computer electronics,” he said.&lt;/P&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/B32929BC-0A55-47FC-88CD-D030DBC98704/blog/" title="blog or email this clip"&gt;&lt;img src="http://content8.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- END_CLIP_CONTENT --&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-316284004431991678?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/F1Eqkds6pcNd8UJy4eZKBlAcuBw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/F1Eqkds6pcNd8UJy4eZKBlAcuBw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/F1Eqkds6pcNd8UJy4eZKBlAcuBw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/F1Eqkds6pcNd8UJy4eZKBlAcuBw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/e1voasiPdFo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/316284004431991678/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=316284004431991678&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/316284004431991678?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/316284004431991678?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/e1voasiPdFo/biocomputing.html" title="Biocomputing" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/06/biocomputing.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkYBSX4ycCp7ImA9WxdQEks.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-1881059733733159526</id><published>2008-06-07T21:44:00.002+05:30</published><updated>2008-06-12T16:25:58.098+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-06-12T16:25:58.098+05:30</app:edited><title>International Conference on Functional Programming 2008</title><content type="html">&lt;div&gt; The 11th  ICFP ( &lt;a href="http://icfpcontest.org/" rel="nofollow" target="_blank"&gt;http://icfpcontest.org&lt;/a&gt;/ ) Programming Contest is from Friday, July 11, 2008 to Monday, July 14, 2008. More details on what the contest is like, check out &lt;a href="http://cpoucet.wordpress.com/2008/06/11/icfp-contest-2008/"&gt;http://cpoucet.wordpress.com/2008/06/11/icfp-contest-2008/&lt;/a&gt; .&lt;br /&gt;Mail queries to Tim Sheard at &lt;a href="mailto:sheard@cs.pdx.edu"&gt;sheard@cs.pdx.edu&lt;/a&gt;. &lt;/div&gt;&lt;table style="border: 4px solid rgb(229, 229, 229); margin: 12px 0px; background: rgb(255, 255, 255) none repeat scroll 0% 50%; font-family: arial; color: rgb(51, 51, 51); -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 100%; clear: left;" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:A7944C91-8869-4243-8378-C31E4968B9CB:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px; background-color: rgb(255, 255, 255);"&gt;&lt;div style="border-bottom: 1px solid rgb(220, 220, 220); white-space: nowrap; margin-bottom: 8px; background-color: rgb(238, 238, 238); background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: rgb(102, 102, 102); font-size: 10px;"&gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/30473a71-8219-488b-ae9a-bc08d09a2ee3/A7944C91-8869-4243-8378-C31E4968B9CB/" alt="" style="border: medium none ; margin: 0px 4px; vertical-align: middle; display: inline; float: none;" border="0" height="19" width="19" /&gt;&lt;/a&gt;clipped from &lt;a title="http://lambda-the-ultimate.org/node/2840" href="http://lambda-the-ultimate.org/node/2840" style="font-size: 11px;"&gt;lambda-the-ultimate.org&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="border: medium none ; margin: 4px 0px 8px; padding: 0px 8px; background: transparent none repeat scroll 0% 50%; text-align: left; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" cite="http://lambda-the-ultimate.org/node/2840"&gt;&lt;p&gt; The ICFP Programming Contest is one of the most advanced and&lt;br /&gt;prestigious programming contests, as well as being a chance to show&lt;br /&gt;off your programming skills, your favorite languages and tools, and&lt;br /&gt;your ability to work as a team. The contest is affiliated with the&lt;br /&gt;International Conference on Functional Programming. Teams consisting&lt;br /&gt;of one or more participants, from any part of the world, using any&lt;br /&gt;programming language, may enter.&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="padding: 0px; font-size: 11px; border-spacing: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="border-width: 0px; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt; &lt;/td&gt;&lt;td style="border-width: 0px; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 107px;" align="right" width="107"&gt;&lt;a href="http://clipmarks.com/share/A7944C91-8869-4243-8378-C31E4968B9CB/blog/" title="blog or email this clip"&gt;&lt;img src="http://content6.clipmarks.com/images/c2b-foot.png" alt="blog it" style="border-width: 0px; margin: 0px; padding: 0px;" border="0" height="17" width="107" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- END_CLIP_CONTENT --&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-1881059733733159526?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/SxUleizPpaJ9m_aCG4figWuM5i4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SxUleizPpaJ9m_aCG4figWuM5i4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/SxUleizPpaJ9m_aCG4figWuM5i4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SxUleizPpaJ9m_aCG4figWuM5i4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/_f212nuzgLM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/1881059733733159526/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=1881059733733159526&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/1881059733733159526?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/1881059733733159526?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/_f212nuzgLM/nternational-conference-on-functional.html" title="International Conference on Functional Programming 2008" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/06/nternational-conference-on-functional.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A08HQXw6cCp7ImA9WxdRFEQ.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-8356141195501006191</id><published>2008-06-03T18:45:00.003+05:30</published><updated>2008-06-03T19:00:30.218+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-06-03T19:00:30.218+05:30</app:edited><title>Unofficial Google Shell</title><content type="html">&lt;div&gt; I have been waiting for google shell. I thought they will name it gshell, but it turns out:&lt;br /&gt;goosh.org - the unofficial google shell ( &lt;a href="http://goosh.org/" rel="nofollow" target="_blank"&gt;http://goosh.org&lt;/a&gt;/ ).&lt;br /&gt;It is pretty neat and useful in its neonatal state itself, like to read a feed, you can type, for eg:&lt;br /&gt;&lt;br /&gt;r &lt;a href="http://www.google.com/reader/public/atom/user/11136726768885096694/label/cbn-roll" rel="nofollow" target="_blank"&gt;http://www.google.com/reader/public/atom/user/11136726768885096694/label/cbn-roll&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;and gets default 4 latest feeds, or you can check out a ncbi accession by typing, for eg:&lt;br /&gt;&lt;br /&gt;NP_001108376&lt;br /&gt;&lt;br /&gt;and get to the Fugu fish refseq link.&lt;br /&gt;&lt;br /&gt;The most useful thing is the fact that it it text based and quite easy to parse visually as well as via scripts.&lt;br /&gt;Another cool feature for me right now is the shell translation, like to get the english word for the norwegian word 'hvor', all I have to do is type:&lt;br /&gt;&lt;br /&gt;t no en hvor&lt;br /&gt;&lt;br /&gt;which correctly says:&lt;br /&gt;translating "hvor" from "no" to "en":&lt;br /&gt;&lt;br /&gt;"where"&lt;br /&gt;&lt;br /&gt;More discussion going on at http://tech.slashdot.org/article.pl?sid=08/06/02/222234&amp;amp;from=rss .&lt;br /&gt;Enjoy! &lt;/div&gt;&lt;table style="border: 4px solid rgb(229, 229, 229); margin: 12px 0px; background: rgb(255, 255, 255) none repeat scroll 0% 50%; font-family: arial; color: rgb(51, 51, 51); -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 100%; clear: left;" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:3B78FE77-8B7D-4C9F-AB73-10FCF5B98BA6:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px; background-color: rgb(255, 255, 255);"&gt;&lt;div style="border-bottom: 1px solid rgb(220, 220, 220); white-space: nowrap; margin-bottom: 8px; background-color: rgb(238, 238, 238); background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: rgb(102, 102, 102); font-size: 10px;"&gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/a25b2ff5-140a-42b8-83b7-c33a0b2b3a7f/3B78FE77-8B7D-4C9F-AB73-10FCF5B98BA6/" alt="" style="border: medium none ; margin: 0px 4px; vertical-align: middle; display: inline; float: none;" border="0" height="19" width="19" /&gt;&lt;/a&gt;clipped from &lt;a title="http://goosh.org/" href="http://goosh.org/" style="font-size: 11px;"&gt;goosh.org&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="border: medium none ; margin: 4px 0px 8px; padding: 0px 8px; background: transparent none repeat scroll 0% 50%; text-align: left; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" cite="http://goosh.org/"&gt;&lt;span class="less"&gt;Goosh goosh.org 0.4.3-beta #1 Mon, 02 Jun 08 22:28:01 UTC Google/Ajax&lt;/span&gt;&lt;/blockquote&gt;&lt;div style="border-bottom: 1px solid rgb(245, 245, 245); margin: 2px 4px; background: rgb(220, 220, 220) none repeat scroll 0% 50%; height: 2px; font-size: 2px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;/div&gt;&lt;blockquote style="border: medium none ; margin: 4px 0px 8px; padding: 0px 8px; background: transparent none repeat scroll 0% 50%; text-align: left; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" cite="http://goosh.org/"&gt;&lt;pre&gt;&lt;span class="info"&gt;help&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table class="help" border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class="less"&gt;command&lt;/td&gt;&lt;td class="less"&gt;aliases&lt;/td&gt;&lt;td class="less"&gt;parameters&lt;/td&gt;&lt;td class="less"&gt;function&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;web&lt;/td&gt;&lt;td&gt;(search,s,w)&lt;/td&gt;&lt;td&gt;[keywords]&lt;/td&gt;&lt;td&gt;google web search&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;lucky&lt;/td&gt;&lt;td&gt;(l)&lt;/td&gt;&lt;td&gt;[keywords]&lt;/td&gt;&lt;td&gt;go directly to first result&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;images&lt;/td&gt;&lt;td&gt;(image,i)&lt;/td&gt;&lt;td&gt;[keywords]&lt;/td&gt;&lt;td&gt;google image search&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;wiki&lt;/td&gt;&lt;td&gt;(wikipedia)&lt;/td&gt;&lt;td&gt;[keywords]&lt;/td&gt;&lt;td&gt;wikipedia search&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;clear&lt;/td&gt;&lt;td&gt;(c)&lt;/td&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;td&gt;clear the screen&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;help&lt;/td&gt;&lt;td&gt;(man,h,?)&lt;/td&gt;&lt;td&gt;[command]&lt;/td&gt;&lt;td&gt;displays help text&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;news&lt;/td&gt;&lt;td&gt;(n)&lt;/td&gt;&lt;td&gt;[keywords]&lt;/td&gt;&lt;td&gt;google news search&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;blogs&lt;/td&gt;&lt;td&gt;(blog,b)&lt;/td&gt;&lt;td&gt;[keywords]&lt;/td&gt;&lt;td&gt;google blog search&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;feeds&lt;/td&gt;&lt;td&gt;(feed,f)&lt;/td&gt;&lt;td&gt;[keywords]&lt;/td&gt;&lt;td&gt;google feed search&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;open&lt;/td&gt;&lt;td&gt;(o)&lt;/td&gt;&lt;td&gt;&amp;lt;url&amp;gt;&lt;/td&gt;&lt;td&gt;open url in new window&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;go&lt;/td&gt;&lt;td&gt;(g)&lt;/td&gt;&lt;td&gt;&amp;lt;url&amp;gt;&lt;/td&gt;&lt;td&gt;open url&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;more&lt;/td&gt;&lt;td&gt;(m)&lt;/td&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;td&gt;get more results&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;in&lt;/td&gt;&lt;td&gt;(site)&lt;/td&gt;&lt;td&gt;&amp;lt;url&amp;gt; &amp;lt;keywords&amp;gt;&lt;/td&gt;&lt;td&gt;search in a specific website&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;load&lt;/td&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;td&gt;&amp;lt;extension_url&amp;gt;&lt;/td&gt;&lt;td&gt;load an extension&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;video&lt;/td&gt;&lt;td&gt;(videos,v)&lt;/td&gt;&lt;td&gt;[keywords]&lt;/td&gt;&lt;td&gt;google video search&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;read&lt;/td&gt;&lt;td&gt;(rss,r)&lt;/td&gt;&lt;td&gt;&amp;lt;url&amp;gt;&lt;/td&gt;&lt;td&gt;read feed of url&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;place&lt;/td&gt;&lt;td&gt;(places,map,p)&lt;/td&gt;&lt;td&gt;[address]&lt;/td&gt;&lt;td&gt;google maps search&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;lang&lt;/td&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;td&gt;&amp;lt;language&amp;gt;&lt;/td&gt;&lt;td&gt;change language&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;addengine&lt;/td&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;td&gt;add goosh to firefox search box&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;translate&lt;/td&gt;&lt;td&gt;(trans,t)&lt;/td&gt;&lt;td&gt;[lang1] [lang2] &amp;lt;words&amp;gt;&lt;/td&gt;&lt;td&gt;google translation&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="padding: 0px; font-size: 11px; border-spacing: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="border-width: 0px; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="border-width: 0px; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 107px;" align="right" width="107"&gt;&lt;a href="http://clipmarks.com/share/3B78FE77-8B7D-4C9F-AB73-10FCF5B98BA6/blog/" title="blog or email this clip"&gt;&lt;img src="http://content7.clipmarks.com/images/c2b-foot.png" alt="blog it" style="border-width: 0px; margin: 0px; padding: 0px;" border="0" height="17" width="107" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- END_CLIP_CONTENT --&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-8356141195501006191?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/zkLrlUnE6m-VEqmfzbAxLb6bm_c/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zkLrlUnE6m-VEqmfzbAxLb6bm_c/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/zkLrlUnE6m-VEqmfzbAxLb6bm_c/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zkLrlUnE6m-VEqmfzbAxLb6bm_c/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/L-LbKWM5d1w" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/8356141195501006191/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=8356141195501006191&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/8356141195501006191?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/8356141195501006191?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/L-LbKWM5d1w/unofficial-google-shell.html" title="Unofficial Google Shell" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/06/unofficial-google-shell.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0AAQXwzeCp7ImA9WxdRE0w.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-1317795600169513434</id><published>2008-06-01T16:59:00.001+05:30</published><updated>2008-06-01T16:59:00.280+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-06-01T16:59:00.280+05:30</app:edited><title>Conserved Domain Database (CDD) has been updated</title><content type="html">&lt;div &gt; The CDD [ &lt;a href="http://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml" rel="nofollow" target="_blank"&gt;http://www.ncbi.nlm.nih.gov/Structure/cdd/cdd.shtml&lt;/a&gt; ] and the its search tool [ &lt;a href="http://www.ncbi.nlm.nih.gov/Structure/cdd/wrpsb.cgi" rel="nofollow" target="_blank"&gt;http://www.ncbi.nlm.nih.gov/Structure/cdd/wrpsb.cgi&lt;/a&gt; ] has been recently updated. Also check out the latest approach for "automatically assigning subcellular locations" to protein from Newberg and Murphy [ &lt;a href="http://pubs.acs.org/cgi-bin/abstract.cgi/jprobs/asap/abs/pr7007626.html" rel="nofollow" target="_blank"&gt;http://pubs.acs.org/cgi-bin/abstract.cgi/jprobs/asap/abs/pr7007626.html&lt;/a&gt; ], more at &lt;a href="http://www.sciencedaily.com/releases/2008/05/080512145232.htm" rel="nofollow" target="_blank"&gt;http://www.sciencedaily.com/releases/2008/05/080512145232.htm&lt;/a&gt; . &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:1441E857-A643-4AEC-ABF1-F87B40D4A597:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/8c146c72-f15e-4b4f-9e9a-4ede17256103/1441E857-A643-4AEC-ABF1-F87B40D4A597/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://beckerinfo.net/bioinformatics/2008/05/16/conserved-domain-database-cdd-updates/" href="http://beckerinfo.net/bioinformatics/2008/05/16/conserved-domain-database-cdd-updates/" style="font-size: 11px;"&gt;beckerinfo.net&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://beckerinfo.net/bioinformatics/2008/05/16/conserved-domain-database-cdd-updates/"&gt;&lt;div align="center"&gt;&lt;img src="http://content6.clipmarks.com/blog_cache/beckerinfo.net/img/D9EDDA2D-89C4-4D63-83E2-149D189929BD" alt="CDD help" /&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/1441E857-A643-4AEC-ABF1-F87B40D4A597/blog/" title="blog or email this clip"&gt;&lt;img src="http://content7.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- END_CLIP_CONTENT --&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-1317795600169513434?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/COzNegD3UgElvOY5Cqm-P6lRgHI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/COzNegD3UgElvOY5Cqm-P6lRgHI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/COzNegD3UgElvOY5Cqm-P6lRgHI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/COzNegD3UgElvOY5Cqm-P6lRgHI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/qCzOIBAJZPw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/1317795600169513434/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=1317795600169513434&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/1317795600169513434?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/1317795600169513434?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/qCzOIBAJZPw/conserved-domain-database-cdd-has-been.html" title="Conserved Domain Database (CDD) has been updated" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/06/conserved-domain-database-cdd-has-been.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEcFQHg7eCp7ImA9WxdRE0w.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-5239363320312985870</id><published>2008-06-01T14:50:00.001+05:30</published><updated>2008-06-01T14:50:11.600+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-06-01T14:50:11.600+05:30</app:edited><title>CQNCer , players in dna sequencing </title><content type="html">&lt;div &gt; So finally we see Helicos in action (via &lt;a href="http://microarray.wordpress.com/2008/04/11/entire-genome-sequencing-from-single-molecule-dna" rel="nofollow" target="_blank"&gt;http://microarray.wordpress.com/2008/04/11/entire-genome-sequencing-from-single-molecule-dna&lt;/a&gt;/ ) , &lt;a href="http://www.sciencemag.org/cgi/content/full/320/5872/106" rel="nofollow" target="_blank"&gt;http://www.sciencemag.org/cgi/content/full/320/5872/106&lt;/a&gt; .&lt;br/&gt;They have sequenced the M13 phage virus (about .3 mill bases) ... sometime back I was surveying the trends in sequencing and captured them at &lt;a href="http://www.slideshare.net/sharma_animesh/cqncer" rel="nofollow" target="_blank"&gt;http://www.slideshare.net/sharma_animesh/cqncer&lt;/a&gt; . &lt;br/&gt;These strategies are generally being used for reqsequencing or sequencing smaller genomes. Though I see that even smaller genomes like Stenotrophomonas maltophilia ( Steno, &lt;a href="http://genomebiology.com/2008/9/4/R74" rel="nofollow" target="_blank"&gt;http://genomebiology.com/2008/9/4/R74&lt;/a&gt; ) done the old way... more at &lt;a href="http://www.biologynews.net/archives/2008/05/07/superbug_genome_sequenced.html" rel="nofollow" target="_blank"&gt;http://www.biologynews.net/archives/2008/05/07/superbug_genome_sequenced.html&lt;/a&gt; . Same goes for recently sequenced Platypus gnome ( &lt;a href="http://www.nature.com/nature/journal/v453/n7192/abs/nature06936.html" rel="nofollow" target="_blank"&gt;http://www.nature.com/nature/journal/v453/n7192/abs/nature06936.html&lt;/a&gt; , &lt;a href="http://www.eurekalert.org/pub_releases/2008-05/embl-pgs050608.php" rel="nofollow" target="_blank"&gt;http://www.eurekalert.org/pub_releases/2008-05/embl-pgs050608.php&lt;/a&gt; ) and the Papaya genome draft ( &lt;a href="http://www.nature.com/nature/journal/v452/n7190/abs/nature06856.html" rel="nofollow" target="_blank"&gt;http://www.nature.com/nature/journal/v452/n7190/abs/nature06856.html&lt;/a&gt; , &lt;a href="http://www.biologynews.net/archives/2008/05/14/scientists_decipher_fruit_tree_genome_for_the_first_time.html" rel="nofollow" target="_blank"&gt;http://www.biologynews.net/archives/2008/05/14/scientists_decipher_fruit_tree_genome_for_the_first_time.html&lt;/a&gt; ) but given these new cheaper sequencing technologies and better algorithms, we are bound to see cooler changes in Tree-of-Life ( &lt;a href="http://www.boston.com/news/science/articles/2008/04/28/tree_of_life_continues_to_evolve" rel="nofollow" target="_blank"&gt;http://www.boston.com/news/science/articles/2008/04/28/tree_of_life_continues_to_evolve&lt;/a&gt;/ ) ! &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:7FF49959-C831-44AE-BA0B-4B130CE5625C:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/de0852e4-f49f-4417-be06-6b002a9b3e23/7FF49959-C831-44AE-BA0B-4B130CE5625C/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.ncbi.nlm.nih.gov/sites/entrez?db=genome" href="http://www.ncbi.nlm.nih.gov/sites/entrez?db=genome" style="font-size: 11px;"&gt;www.ncbi.nlm.nih.gov&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.ncbi.nlm.nih.gov/sites/entrez?db=genome"&gt;&lt;div align="center"&gt;&lt;img src="http://content6.clipmarks.com/blog_cache/www.ncbi.nlm.nih.gov/img/CA891A81-F5B6-4A32-A470-BA9C09C213DC" alt="" /&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.ncbi.nlm.nih.gov/sites/entrez?db=genome"&gt;&lt;br /&gt;The &lt;LAYER id="google-toolbar-hilite-5"&gt;Genome&lt;/LAYER&gt; database provides views for a variety of genomes, complete chromosomes, &lt;br /&gt;sequence maps with contigs, and integrated genetic and physical maps.&lt;br /&gt;The database is organized in six major organism groups: &lt;A href="http://www.ncbi.nlm.nih.gov/genomes/static/a.html"&gt;Archaea&lt;/A&gt;,&lt;br /&gt;&lt;A href="http://www.ncbi.nlm.nih.gov/genomes/static/eub.html"&gt;Bacteria&lt;/A&gt;, &lt;A href="http://www.ncbi.nlm.nih.gov/genomes/static/euk.html"&gt; Eukaryotae&lt;/A&gt;,&lt;br /&gt;&lt;A href="http://www.ncbi.nlm.nih.gov/genomes/static/vis.html"&gt;Viruses&lt;/A&gt;, &lt;A href="http://www.ncbi.nlm.nih.gov/genomes/static/vid.html"&gt;Viroids&lt;/A&gt;, and&lt;br /&gt;&lt;A href="http://www.ncbi.nlm.nih.gov/genomes/static/o.html"&gt;Plasmids&lt;/A&gt; and includes complete chromosomes, organelles and plasmids as well as draft&lt;br /&gt;&lt;LAYER id="google-toolbar-hilite-6"&gt;genome&lt;/LAYER&gt; assemblies.&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/7FF49959-C831-44AE-BA0B-4B130CE5625C/blog/" title="blog or email this clip"&gt;&lt;img src="http://content7.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- END_CLIP_CONTENT --&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-5239363320312985870?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/iFoopwuPXR7TjInFPMwCyps1oEU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/iFoopwuPXR7TjInFPMwCyps1oEU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/iFoopwuPXR7TjInFPMwCyps1oEU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/iFoopwuPXR7TjInFPMwCyps1oEU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/a_QMlcaSaNc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/5239363320312985870/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=5239363320312985870&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/5239363320312985870?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/5239363320312985870?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/a_QMlcaSaNc/cqncer-players-in-dna-sequencing.html" title="CQNCer , players in dna sequencing " /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/06/cqncer-players-in-dna-sequencing.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A04FRHo5cCp7ImA9WxdREk4.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-3422838243829794294</id><published>2008-05-31T18:48:00.001+05:30</published><updated>2008-05-31T18:48:35.428+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-05-31T18:48:35.428+05:30</app:edited><title>Predicting what you thinking ...</title><content type="html">&lt;div &gt; Mitchell [ machine learning guru, author of the most lucid book on the subject, &lt;a href="http://www.cs.cmu.edu/%7Etom/mlbook.html" rel="nofollow" target="_blank"&gt;http://www.cs.cmu.edu/%7Etom/mlbook.html&lt;/a&gt; ] et al. in the article titled "Predicting Human Brain Activity Associated with the Meanings of Nouns" [ &lt;a href="http://www.sciencemag.org/cgi/content/abstract/320/5880/1191" rel="nofollow" target="_blank"&gt;http://www.sciencemag.org/cgi/content/abstract/320/5880/1191&lt;/a&gt; ] have developed a computational model based on fMRI scans predicting what you thinking ... more at &lt;a href="http://www.nature.com/news/2008/080529/full/news.2008.864.html" rel="nofollow" target="_blank"&gt;http://www.nature.com/news/2008/080529/full/news.2008.864.html&lt;/a&gt; . &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:01179D4C-D81F-4051-95E1-897CE28ADF91:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/3dd225d0-8534-4713-875b-9e9ad3d8b12e/01179D4C-D81F-4051-95E1-897CE28ADF91/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.nature.com/news/2008/080529/full/news.2008.864.html" href="http://www.nature.com/news/2008/080529/full/news.2008.864.html" style="font-size: 11px;"&gt;www.nature.com&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.nature.com/news/2008/080529/full/news.2008.864.html"&gt;&lt;P&gt;A computer model has been developed that can predict what word you are thinking of. The model may help to resolve questions about how the brain processes words and language, and might even lead to techniques for decoding people’s thoughts. &lt;/P&gt;&lt;/blockquote&gt;&lt;div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.nature.com/news/2008/080529/full/news.2008.864.html"&gt;&lt;P&gt; The team then used functional magnetic resonance imaging (fMRI) to scan the brains of 9 volunteers as they looked at images of the nouns. The researchers then fed the model 58 of the 60 nouns to train it. For each noun, the model sorted through a trillion-word body of text to find how it was related to the 25 verbs, and how that related to the activation pattern. &lt;/P&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/01179D4C-D81F-4051-95E1-897CE28ADF91/blog/" title="blog or email this clip"&gt;&lt;img src="http://content8.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- END_CLIP_CONTENT --&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-3422838243829794294?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/G_n-675t2Y4vv5HgZldZATlxgP4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/G_n-675t2Y4vv5HgZldZATlxgP4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/G_n-675t2Y4vv5HgZldZATlxgP4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/G_n-675t2Y4vv5HgZldZATlxgP4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/zQH6YPJyrWI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/3422838243829794294/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=3422838243829794294&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/3422838243829794294?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/3422838243829794294?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/zQH6YPJyrWI/predicting-what-you-thinking.html" title="Predicting what you thinking ..." /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/05/predicting-what-you-thinking.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEEFR3o9fSp7ImA9WxdSFEU.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-5062931384292037920</id><published>2008-05-23T01:33:00.001+05:30</published><updated>2008-05-23T01:33:36.465+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-05-23T01:33:36.465+05:30</app:edited><title>Music from DNA string</title><content type="html">&lt;div &gt; Had this thought of converting DNA strings to MIDI music files using Sean [ &lt;a href="http://groups.google.com/groups/profile?enc_user=N0KQ5w8AAAD0VD270uUpCbIPP1utz--x" rel="nofollow" target="_blank"&gt;http://groups.google.com/groups/profile?enc_user=N0KQ5w8AAAD0VD270uUpCbIPP1utz--x&lt;/a&gt; ] 's MIDI module for PERL way back [ &lt;a href="http://groups.google.com/group/DNA-Music/about" rel="nofollow" target="_blank"&gt;http://groups.google.com/group/DNA-Music/about&lt;/a&gt; ] in JNU days when I was working on improving fourier transform based coding region prediction [ &lt;a href="http://www.ncbi.nlm.nih.gov/pubmed/11927773" rel="nofollow" target="_blank"&gt;http://www.ncbi.nlm.nih.gov/pubmed/11927773&lt;/a&gt; ] . &lt;br/&gt;Recently I got this opportunity to participate in YSR [ &lt;a href="http://www.sars.no/seminars/Retreat_2008_invitation.pdf" rel="nofollow" target="_blank"&gt;http://www.sars.no/seminars/Retreat_2008_invitation.pdf&lt;/a&gt; ] where I finally hacked together these ideas of converting the DNA strings to MIDI music. I am just coming back from there. The evening was full of serious biology talks from mostly experimental biologist [ &lt;a href="http://www.uib.no/People/ash022/BYSR08_program_HR_GB.pdf" rel="nofollow" target="_blank"&gt;http://www.uib.no/People/ash022/BYSR08_program_HR_GB.pdf&lt;/a&gt; ] where I hope, I lived up to the reputations of being a Bioinformatician, for not just having fun with computers but justifying out salary by plugging in the biological data somehow &lt;img src="http://clipmarks.com/images/icons/smilies/happy.gif?r=2" style="margin-bottom: -4px;" alt="" /&gt;&lt;br/&gt;The presentation tries to explain the flowchart in 4 slides [slideshare: &lt;a href="http://www.slideshare.net/sharma_animesh/ysr-presentation-animesh-rev" rel="nofollow" target="_blank"&gt;http://www.slideshare.net/sharma_animesh/ysr-presentation-animesh-rev&lt;/a&gt;/ , pdf: &lt;a href="http://sharma.animesh.googlepages.com/YSR_Presentation_Animesh_Rev.pdf" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/YSR_Presentation_Animesh_Rev.pdf&lt;/a&gt; ]. &lt;br/&gt;The code [ &lt;a href="http://sharma.animesh.googlepages.com/create_music_from_string.pl" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/create_music_from_string.pl&lt;/a&gt; ] depends on Sean's MIDI module for PERL which can be downloaded from CPAN [ &lt;a href="http://search.cpan.org/~sburke/MIDI-Perl-0.81/lib/MIDI/Simple.pm" rel="nofollow" target="_blank"&gt;http://search.cpan.org/~sburke/MIDI-Perl-0.81/lib/MIDI/Simple.pm&lt;/a&gt; ] takes in sequence in fasta format [ eg: &lt;a href="http://sharma.animesh.googlepages.com/telo.fas" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/telo.fas&lt;/a&gt; , it does accept multiple sequences ] and outputs a MIDI file [ eg: &lt;a href="http://sharma.animesh.googlepages.com/telo.fas.0.midi" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/telo.fas.0.midi&lt;/a&gt; ] and DFT values [ eg: &lt;a href="http://sharma.animesh.googlepages.com/telo.fas.0.fft" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/telo.fas.0.fft&lt;/a&gt; , NOTE: for multiple sequences, the counter starts from 0 for 1st sequence and goes to N-1 for Nth sequence]. &lt;br/&gt;To play the midi files [ eg: &lt;a href="http://sharma.animesh.googlepages.com/FLJ20436.fas.0.midi" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/FLJ20436.fas.0.midi&lt;/a&gt; generated from &lt;a href="http://sharma.animesh.googlepages.com/FLJ20436.fas" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/FLJ20436.fas&lt;/a&gt; ] in Linux, I would recommend to install timidity [ &lt;a href="http://timidity.sourceforge.net" rel="nofollow" target="_blank"&gt;http://timidity.sourceforge.net&lt;/a&gt;/ ]. &lt;br/&gt;Lots need to be done to make this thing do something practical, like I need to change the code to to Fast Fourier transform, employ a window based strategy to walk through the whole genome and create region based music ...&lt;br/&gt;By the way, there is a good use to look at the other generated file *.ff [ eg: &lt;a href="http://sharma.animesh.googlepages.com/telo.fas.0.fft" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/telo.fas.0.fft&lt;/a&gt; ] as well, it says a lot about the repeat length hidden in the sequence. &lt;br/&gt;Like the sequence ( &lt;a href="http://sharma.animesh.googlepages.com/telo.fas" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/telo.fas&lt;/a&gt; ) I used initially is:&lt;br/&gt;&amp;gt;teloseq&lt;br/&gt;AGGGTTAGGGTTAGGGTTAGG&lt;br/&gt;which has telomere repeat signal TTAGGG of length 6, now when we look at its fft file ( &lt;a href="http://sharma.animesh.googlepages.com/telo.fas.0.fft" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/telo.fas.0.fft&lt;/a&gt; ) and plot it ( &lt;a href="http://sharma.animesh.googlepages.com/telo.jpg" rel="nofollow" target="_blank"&gt;http://sharma.animesh.googlepages.com/telo.jpg&lt;/a&gt; ), we observe a peak (defined in the original paper as more then signal of 4) around 6 and 3. &lt;br/&gt;Coding regions generally show a peak at 3, hypothesis being the codon usage bias in the coding strand, while non-coding regions lack this property (not useful in eucaryotic sequences as they have introns too)... so in a way if you input a sequence from coding region to this code, you might find a peak at 3 in the *.fft generated.&lt;br/&gt;To read more about MIDI encoding, I would suggest "The Musician's Guide to MIDI by Christian Braut" [ &lt;a href="http://www.amazon.com/Musicians-Guide-Sybex-Macintosh-library/dp/0782112854" rel="nofollow" target="_blank"&gt;http://www.amazon.com/Musicians-Guide-Sybex-Macintosh-library/dp/0782112854&lt;/a&gt; ].&lt;br/&gt;Now I need to train my ears to listen to lots of coding and non-coding region music and then given some unknown sequence, predict if it belongs to either of these regions just by listening to its midi file &lt;img src="http://clipmarks.com/images/icons/smilies/happy.gif?r=2" style="margin-bottom: -4px;" alt="" /&gt; &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:E41D4969-60EF-4CE2-8C51-9DFD5D214417:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/6a5c878e-5e1a-4a0f-9426-a2e54141a637/E41D4969-60EF-4CE2-8C51-9DFD5D214417/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.sars.no/seminars/" href="http://www.sars.no/seminars/" style="font-size: 11px;"&gt;www.sars.no&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.sars.no/seminars/"&gt;&lt;table background="undefined" bgcolor=""&gt;&lt;tr&gt;&lt;TD&gt;Young Scientist's Retreat - Bergen 2008, &lt;A href="http://www.sars.no/seminars/Retreat_2008_invitation.pdf"&gt;Invitation&lt;/A&gt;&lt;br /&gt;Open to all phd students and postdocs at MBI, Dept. of Informatics,&lt;br /&gt;Dept of Biomedicine, Sars Centre and CBU.&lt;br /&gt;To register contact &lt;A href="http://www.sars.no/seminars/mailto:stale.ellingsen@mbi.uib.no"&gt;Ståle Ellingsen&lt;/A&gt;.&lt;/TD&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.sars.no/seminars/"&gt;&lt;table background="undefined" bgcolor=""&gt;&lt;tr&gt;&lt;TD&gt;May 22&lt;/TD&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.sars.no/seminars/"&gt;&lt;table background="undefined" bgcolor=""&gt;&lt;tr&gt;&lt;TD&gt;Sydneshaugen Skole 12:00-18:00&lt;br /&gt;Host:  MCB Research School&lt;/TD&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/E41D4969-60EF-4CE2-8C51-9DFD5D214417/blog/" title="blog or email this clip"&gt;&lt;img src="http://content8.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- END_CLIP_CONTENT --&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-5062931384292037920?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KsMbtkiyfn3JzY0D8QQPB5PuAv4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KsMbtkiyfn3JzY0D8QQPB5PuAv4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KsMbtkiyfn3JzY0D8QQPB5PuAv4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KsMbtkiyfn3JzY0D8QQPB5PuAv4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/nmWB2tXqxtE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/5062931384292037920/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=5062931384292037920&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/5062931384292037920?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/5062931384292037920?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/nmWB2tXqxtE/music-from-dna-string.html" title="Music from DNA string" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/05/music-from-dna-string.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUQMRH8_eip7ImA9WxdSE00.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-6078538459620042082</id><published>2008-05-20T22:39:00.001+05:30</published><updated>2008-05-20T22:39:45.142+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-05-20T22:39:45.142+05:30</app:edited><title>Faster way to screen nonribosomal peptides</title><content type="html">&lt;div &gt; Bandeira et al. in the paper "De Novo Sequencing of Nonribosomal Peptides" ( &lt;a href="http://www.springerlink.com/content/n532545722750915" rel="nofollow" target="_blank"&gt;http://www.springerlink.com/content/n532545722750915&lt;/a&gt;/ ) outline a strategy based on MS alignment leading to faster nonribosomal peptides (example penicillin) screening. This has potential to hasten the process of finding new drugs (better say candidates?). &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:77694BA6-8D8F-429F-98F5-1A258992A5EA:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/c81f140f-8fa2-44fa-a379-6804a604b01f/77694BA6-8D8F-429F-98F5-1A258992A5EA/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.genengnews.com/news/bnitem.aspx?name=32947641" href="http://www.genengnews.com/news/bnitem.aspx?name=32947641" style="font-size: 11px;"&gt;www.genengnews.com&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.genengnews.com/news/bnitem.aspx?name=32947641"&gt;&lt;P&gt;If you imagine the structure of an NRP as a cyclic string of beads, then the new algorithms both decipher the mass of each bead based on the mass spectrometry and determine the order of the beads within the ring  crucial pieces of information for uncovering both the structure of the molecule and its pharmacological activities.&lt;/P&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/77694BA6-8D8F-429F-98F5-1A258992A5EA/blog/" title="blog or email this clip"&gt;&lt;img src="http://content6.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- END_CLIP_CONTENT --&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-6078538459620042082?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/N1VYOingYg7E1yWPb1kMyviNgKs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/N1VYOingYg7E1yWPb1kMyviNgKs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/N1VYOingYg7E1yWPb1kMyviNgKs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/N1VYOingYg7E1yWPb1kMyviNgKs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/xKeh_vNvYUE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/6078538459620042082/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=6078538459620042082&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/6078538459620042082?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/6078538459620042082?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/xKeh_vNvYUE/faster-way-to-screen-nonribosomal.html" title="Faster way to screen nonribosomal peptides" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/05/faster-way-to-screen-nonribosomal.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE4BRnc4eip7ImA9WxRaEE8.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-9067426304090367007</id><published>2008-05-12T00:50:00.006+05:30</published><updated>2008-12-12T00:45:57.932+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-12T00:45:57.932+05:30</app:edited><title>Rosendal Meet</title><content type="html">&lt;a href="http://3.bp.blogspot.com/_G-rkAhN7n20/SCdLy13yM1I/AAAAAAAAC3o/YZtZ3WvwFYY/s1600-h/DSC_6466.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5199207631649125202" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_G-rkAhN7n20/SCdLy13yM1I/AAAAAAAAC3o/YZtZ3WvwFYY/s320/DSC_6466.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;I was attending the &lt;a href="http://www.baroniet.no/en/index.php?kategori=3"&gt;Rosendal &lt;/a&gt;meet (from 6-8 th May, 2008) between members of &lt;a href="http://www.cbu.uib.no/"&gt;CBU&lt;/a&gt; (Computational Biology Unit ... and Department of Informatics, University of Bergen, Norway) and &lt;a href="http://mathbio.nimr.mrc.ac.uk/wiki/Division_of_Mathematical_Biology_at_NIMR"&gt;MB-NIMR &lt;/a&gt;(Division of Mathematical Biology at National Institute for Medical Research, MRC, London group, UK). &lt;/div&gt;&lt;div&gt;Thanks to &lt;a href="http://noncoding.blogspot.com/"&gt;Xianjun&lt;/a&gt; for posting the pictures from the trip at &lt;a href="http://picasaweb.google.com/sterding/Rosendal2008"&gt;http://picasaweb.google.com/sterding/Rosendal2008&lt;/a&gt; (the beautiful pic above is coming from there) and &lt;a href="http://ranzensama.blogspot.com/"&gt;Anders&lt;/a&gt; at &lt;a href="http://flickr.com/photos/lanzen/sets/72157605097913531/"&gt;http://flickr.com/photos/lanzen/sets/72157605097913531/&lt;/a&gt; . The ones from my camera are available at &lt;a href="http://picasaweb.google.com/sharma.animesh/Rosendal_meet?authkey=wFgJVxkGwTU"&gt;http://picasaweb.google.com/sharma.animesh/Rosendal_meet?authkey=wFgJVxkGwTU&lt;/a&gt; . &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-9067426304090367007?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/NRcEmnM5jbkO2UIgypDEMWiLjvE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NRcEmnM5jbkO2UIgypDEMWiLjvE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/NRcEmnM5jbkO2UIgypDEMWiLjvE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NRcEmnM5jbkO2UIgypDEMWiLjvE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/Oyw6szTz5dk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/9067426304090367007/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=9067426304090367007&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/9067426304090367007?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/9067426304090367007?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/Oyw6szTz5dk/rosendal-meet.html" title="Rosendal Meet" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_G-rkAhN7n20/SCdLy13yM1I/AAAAAAAAC3o/YZtZ3WvwFYY/s72-c/DSC_6466.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/05/rosendal-meet.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkYESXo4eip7ImA9WxZaGUk.&quot;"><id>tag:blogger.com,1999:blog-5337144561125559548.post-7333031597306116547</id><published>2008-05-05T03:58:00.001+05:30</published><updated>2008-05-05T03:58:28.432+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-05-05T03:58:28.432+05:30</app:edited><title>Workshop: BREW 2008</title><content type="html">&lt;div &gt; I was in Bielefeld, Germany for BREW2008 workshop. I was quite suspicious of this place as people (&lt;a href="http://www.cebitec.uni-bielefeld.de/index.php?option=com_cudbhome&amp;amp;task=show&amp;amp;cudbname=sniemeie" rel="nofollow" target="_blank"&gt;http://www.cebitec.uni-bielefeld.de/index.php?option=com_cudbhome&amp;amp;task=show&amp;amp;cudbname=sniemeie&lt;/a&gt; , &lt;a href="http://www.cebitec.uni-bielefeld.de/index.php?option=com_cudbhome&amp;amp;task=show&amp;amp;cudbname=twittkop" rel="nofollow" target="_blank"&gt;http://www.cebitec.uni-bielefeld.de/index.php?option=com_cudbhome&amp;amp;task=show&amp;amp;cudbname=twittkop&lt;/a&gt; ) informed me that Bielefeld  does not exist ( &lt;a href="http://en.wikipedia.org/wiki/Bielefeld_Conspiracy" rel="nofollow" target="_blank"&gt;http://en.wikipedia.org/wiki/Bielefeld_Conspiracy&lt;/a&gt; )! So I went out and took loads of snaps ( &lt;a href="http://picasaweb.google.com/sharma.animesh/BREW2008?authkey=ranwczoE2-Q" rel="nofollow" target="_blank"&gt;http://picasaweb.google.com/sharma.animesh/BREW2008?authkey=ranwczoE2-Q&lt;/a&gt; ) to prove its existence ... well on second thought map is not the territory ( &lt;a href="http://en.wikipedia.org/wiki/Thomas_Kuhn" rel="nofollow" target="_blank"&gt;http://en.wikipedia.org/wiki/Thomas_Kuhn&lt;/a&gt; ).&lt;br/&gt;Coming back to the workshop, this is a nice event with a great concept ( &lt;a href="http://bib.oxfordjournals.org/cgi/content/abstract/9/3/250" rel="nofollow" target="_blank"&gt;http://bib.oxfordjournals.org/cgi/content/abstract/9/3/250&lt;/a&gt; ) organised by and for people from:&lt;br/&gt;    * International Graduate School in Bioinformatics and Genome Research, University of Bielefeld, Germany ( &lt;a href="http://www.cebitec.uni-bielefeld.de/gradschool" rel="nofollow" target="_blank"&gt;http://www.cebitec.uni-bielefeld.de/gradschool&lt;/a&gt;/ )&lt;br/&gt;    * Molecular and Computational Biology Research School, University of Bergen, Norway ( &lt;a href="http://www.mcb.uib.no" rel="nofollow" target="_blank"&gt;http://www.mcb.uib.no&lt;/a&gt;/ )&lt;br/&gt;    * Max Planck Research School for Computational Biology and Scientific Computing (IMPRS-CBSC), Berlin, Germany ( &lt;a href="http://www.imprs-cbsc.mpg.de" rel="nofollow" target="_blank"&gt;http://www.imprs-cbsc.mpg.de&lt;/a&gt;/ )&lt;br/&gt;    * EBI PhD Program, European Bioinformatics Institute, England ( &lt;a href="http://www.ebi.ac.uk" rel="nofollow" target="_blank"&gt;http://www.ebi.ac.uk&lt;/a&gt;/ )&lt;br/&gt;    * ComBi Program, University of Helsinki, Finland ( &lt;a href="http://www.cs.helsinki.fi" rel="nofollow" target="_blank"&gt;http://www.cs.helsinki.fi&lt;/a&gt;/ )&lt;br/&gt;I had a great time there and would recommend people from the above list to go for BREW 2009 which is tentatively scheduled after a year at &lt;a href="http://www.cs.helsinki.fi" rel="nofollow" target="_blank"&gt;http://www.cs.helsinki.fi&lt;/a&gt;/ ... (?) &lt;/div&gt;&lt;table cellpadding="0" cellspacing="0" style="margin: 12px 0px; font-family: arial; color: #333333; background: #ffffff; border: solid 4px #e5e5e5; width: 100%; clear: left;"&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;!-- BEGIN_CLIP_CONTENT ID:E19ACAEF-D48C-4114-ACAC-93E61EDACD20:0 CLIPMARKS.COM --&gt;&lt;div class="CM_CTB_Content_Wrap" style="margin: 0px; padding: 0px;background-color: #ffffff;"&gt;&lt;div style="border-bottom: solid 1px #dcdcdc; white-space: nowrap; margin-bottom: 8px; background-color: #eeeeee ;background-image: url(http://clipmarks.com/images/source-bg.gif); background-repeat: repeat-x; height: 24px; line-height: 24px; vertical-align: middle; padding-bottom: 4px; color: #666666; font-size: 10px;" &gt;&lt;a href="http://clipmarks.com/clip-to-blog/" title="clipmarks' clip-to-blog"&gt;&lt;img src="http://content.clipmarks.com/blog_icon/2ef38049-0dca-4058-9f93-cd1a44dc3d0e/E19ACAEF-D48C-4114-ACAC-93E61EDACD20/" alt="" width="19" height="19" border="0" style="vertical-align: middle; margin: 0px 4px; display: inline; border: none; float:none;" /&gt;&lt;/a&gt;clipped from &lt;a title="http://www.techfak.uni-bielefeld.de/GK635/termine/workshops/brew2008/index.html" href="http://www.techfak.uni-bielefeld.de/GK635/termine/workshops/brew2008/index.html" style="font-size: 11px;"&gt;www.techfak.uni-bielefeld.de&lt;/a&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.techfak.uni-bielefeld.de/GK635/termine/workshops/brew2008/index.html"&gt;&lt;H1&gt;BREW 2008&lt;/H1&gt;&lt;/blockquote&gt;&lt;div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.techfak.uni-bielefeld.de/GK635/termine/workshops/brew2008/index.html"&gt;&lt;P&gt;Bioinformatics Research and Education Workshop, Bielefeld, Germany April 28-30 2008&lt;/P&gt;&lt;/blockquote&gt;&lt;div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.techfak.uni-bielefeld.de/GK635/termine/workshops/brew2008/index.html"&gt;&lt;UL&gt;&lt;br /&gt;    &lt;li style="margin-left:16px;padding-left: 0px;"&gt;March 1th --   Abstract submission deadline&lt;/LI&gt;&lt;br /&gt;    &lt;li style="margin-left:16px;padding-left: 0px;"&gt;March 7th --   Paper submission deadline&lt;/LI&gt;&lt;br /&gt;    &lt;li style="margin-left:16px;padding-left: 0px;"&gt;March 20th --   Review deadline&lt;/LI&gt;&lt;br /&gt;    &lt;li style="margin-left:16px;padding-left: 0px;"&gt;April 11th --   Deadline for final version of paper&lt;/LI&gt;&lt;br /&gt;    &lt;li style="margin-left:16px;padding-left: 0px;"&gt;April 28th  --   Meeting in Bielefeld&lt;/LI&gt;&lt;br /&gt;  &lt;/UL&gt;&lt;/blockquote&gt;&lt;div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.techfak.uni-bielefeld.de/GK635/termine/workshops/brew2008/index.html"&gt;&lt;H1&gt;About BREW&lt;/H1&gt;&lt;/blockquote&gt;&lt;div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.techfak.uni-bielefeld.de/GK635/termine/workshops/brew2008/index.html"&gt;&lt;P&gt;BREW aims to give an introduction to scientific conferences, including submission, peer review &lt;br /&gt;  and presentation of scientific papers. All participants must submit a paper &lt;br /&gt;and take part in reviewing papers from other participants in order to attend the workshop. &lt;br /&gt;  After the review deadline, you have a chance to make alterations to your paper &lt;br /&gt;  and deliver a final version. All participants will present their paper at the meeting in April.  &lt;br /&gt;&lt;/P&gt;&lt;/blockquote&gt;&lt;div style="height: 2px; font-size: 2px; background: #dcdcdc; border-bottom: solid 1px #f5f5f5; margin: 2px 4px;"&gt;&lt;/div&gt;&lt;blockquote style="text-align: left; padding: 0px 8px; margin: 4px 0px 8px 0px; background: transparent; border: none;" cite="http://www.techfak.uni-bielefeld.de/GK635/termine/workshops/brew2008/index.html"&gt;&lt;P&gt;&lt;br /&gt;BREW is held in an around-robin fashion each year at the participating PhD programs:&lt;br /&gt;&lt;A href="http://www.cbu.uib.no/BREW"&gt; Bergen (2007)&lt;/A&gt;,&lt;br /&gt;&lt;A href="http://www.ebi.ac.uk/~gaudan/BREW2006/"&gt; Cambridge (2006)&lt;/A&gt;,&lt;br /&gt;&lt;A href="http://cmb.molgen.mpg.de/brew/call.html"&gt; Berlin (2005)&lt;/A&gt;, &lt;br /&gt;&lt;A href="http://www.cs.helsinki.fi/hiit_bru/brew2004/"&gt; Helsinki (2004)&lt;/A&gt;, &lt;br /&gt;&lt;A href="http://www.techfak.uni-bielefeld.de/GK635/termine/workshops/brew2003/"&gt; Bielefeld (2003)&lt;/A&gt;, and &lt;br /&gt;&lt;A href="http://www.ebi.ac.uk/microarray/General/Events/BREW/BREW.html"&gt; Hinxton (2002)&lt;/A&gt;.&lt;br /&gt;&lt;/P&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;div style="margin: 0px 6px 6px 4px;"&gt;&lt;table style="font-size: 11px;border-spacing: 0px;padding: 0px;" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tr&gt;&lt;td style="background:transparent;border-width:0px;padding:0px;"&gt;&amp;nbsp;&lt;/td&gt;&lt;td align="right" style="background:transparent;border-width:0px;padding:0px;width:107px" width="107"&gt;&lt;a href="http://clipmarks.com/share/E19ACAEF-D48C-4114-ACAC-93E61EDACD20/blog/" title="blog or email this clip"&gt;&lt;img src="http://content6.clipmarks.com/images/c2b-foot.png" border="0" alt="blog it" width="107" height="17" style="border-width:0px;padding:0px;margin:0px;" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- END_CLIP_CONTENT --&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5337144561125559548-7333031597306116547?l=computationalbiologynews.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ypxq6laacY7HEhGXoA8zm_FPPvc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ypxq6laacY7HEhGXoA8zm_FPPvc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ypxq6laacY7HEhGXoA8zm_FPPvc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ypxq6laacY7HEhGXoA8zm_FPPvc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/LuPcC/~4/FtVPf3o2hZ0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://computationalbiologynews.blogspot.com/feeds/7333031597306116547/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=5337144561125559548&amp;postID=7333031597306116547&amp;isPopup=true" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/7333031597306116547?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5337144561125559548/posts/default/7333031597306116547?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/LuPcC/~3/FtVPf3o2hZ0/workshop-brew-2008.html" title="Workshop: BREW 2008" /><author><name>Animesh Sharma</name><uri>https://profiles.google.com/116652754764170659317</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh4.googleusercontent.com/-zlZCIhGx1l4/AAAAAAAAAAI/AAAAAAAAwtc/65AG9_avlWM/s512-c/photo.jpg" /></author><thr:total>2</thr:total><feedburner:origLink>http://computationalbiologynews.blogspot.com/2008/05/workshop-brew-2008.html</feedburner:origLink></entry></feed>

