<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments for O|B|F News</title>
	<atom:link href="http://news.open-bio.org/news/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://news.open-bio.org/news</link>
	<description>Open Source Bioinformatics news</description>
	<pubDate>Sun, 23 Nov 2008 09:52:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Julian Lombardi will present keynote at BOSC 2008 by Evolving Bits</title>
		<link>http://news.open-bio.org/news/2008/05/julian-lombardi-will-present-keynote-at-bosc-2008/comment-page-1/#comment-157</link>
		<dc:creator>Evolving Bits</dc:creator>
		<pubDate>Mon, 19 May 2008 06:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://news.open-bio.org/news/?p=148#comment-157</guid>
		<description>&lt;strong&gt;Julian Lombardi will speak at&#160;BOSC&lt;/strong&gt;

As has been announced recently on the home page of this year&#8217;s BOSC (the Bioinformatics Open Source Conference) and as I just posted on the O&#124;B&#124;F News, Julian Lombardi will be giving the keynote address this year at the conference.
I am serving ...
</description>
		<content:encoded><![CDATA[<p><strong>Julian Lombardi will speak at&nbsp;BOSC</strong></p>
<p>As has been announced recently on the home page of this year&#8217;s BOSC (the Bioinformatics Open Source Conference) and as I just posted on the O|B|F News, Julian Lombardi will be giving the keynote address this year at the conference.<br />
I am serving &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BioPerl Mailing List Summaries by Chris Fields</title>
		<link>http://news.open-bio.org/news/2006/04/bioperl-mailing-list-summaries/comment-page-1/#comment-94</link>
		<dc:creator>Chris Fields</dc:creator>
		<pubDate>Sat, 24 Jun 2006 14:12:53 +0000</pubDate>
		<guid isPermaLink="false">http://bioperl.org/news/2006/04/11/bioperl-mailing-list-summaries/#comment-94</guid>
		<description>You should be posting this to the mail list and not here:

http://bioperl.org/mailman/listinfo/bioperl-l

BTW,  Bio::Tools::Run::Phylo::PAML::Yn00/codeml were recently updated to deal with results from PAML 3.15 which could be your problem, but you'll have to update from CVS.</description>
		<content:encoded><![CDATA[<p>You should be posting this to the mail list and not here:</p>
<p><a href="http://bioperl.org/mailman/listinfo/bioperl-l" rel="nofollow">http://bioperl.org/mailman/listinfo/bioperl-l</a></p>
<p>BTW,  Bio::Tools::Run::Phylo::PAML::Yn00/codeml were recently updated to deal with results from PAML 3.15 which could be your problem, but you&#8217;ll have to update from CVS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BioPerl Mailing List Summaries by todaewon</title>
		<link>http://news.open-bio.org/news/2006/04/bioperl-mailing-list-summaries/comment-page-1/#comment-93</link>
		<dc:creator>todaewon</dc:creator>
		<pubDate>Sat, 24 Jun 2006 13:38:29 +0000</pubDate>
		<guid isPermaLink="false">http://bioperl.org/news/2006/04/11/bioperl-mailing-list-summaries/#comment-93</guid>
		<description>I just coded according to howto manual
but I can't get any result. there is no error message~!~

what's happen??


use lib "/usr/local/lib/perl5/site_perl/5.8.7";
use Bio::Tools::Run::Phylo::PAML::Yn00;
use Bio::AlignIO;
my $alignio =  new Bio::AlignIO(-format =&#62; 'phylip',
                                -file    =&#62; '/r1/people/daewon_kim/ Oranutan_cDNA/2.Processing/4.CodonC/dNdSGene1.phylip',

                                -idlength=&#62;12,
                                -interleaved =&#62; 1);
                                 my $aln = $alignio-&#62;next_aln;

my $yn = new Bio::Tools::Run::Phylo::PAML::Yn00();
$yn-&#62;alignment($aln);
my ($rc,$parser) = $yn-&#62;run();

if(my $result = $parser-&#62;next_result) {
   my @otus = $result-&#62;get_seqs();
   my $MLmatrix = $result-&#62;get_MLmatrix();
   # 0 and 1 correspond to the 1st and 2nd entry in the @otus array
   my $dN = $MLmatrix-&#62;[0]-&#62;[1]-&#62;{dN};
   my $dS = $MLmatrix-&#62;[0]-&#62;[1]-&#62;{dS};
   my $kaks =$MLmatrix-&#62;[0]-&#62;[1]-&#62;{omega};
   print "Ka = $dN Ks = $dS Ka/Ks = $kaks\n";
}</description>
		<content:encoded><![CDATA[<p>I just coded according to howto manual<br />
but I can&#8217;t get any result. there is no error message~!~</p>
<p>what&#8217;s happen??</p>
<p>use lib &#8220;/usr/local/lib/perl5/site_perl/5.8.7&#8243;;<br />
use Bio::Tools::Run::Phylo::PAML::Yn00;<br />
use Bio::AlignIO;<br />
my $alignio =  new Bio::AlignIO(-format =&gt; &#8216;phylip&#8217;,<br />
                                -file    =&gt; &#8216;/r1/people/daewon_kim/ Oranutan_cDNA/2.Processing/4.CodonC/dNdSGene1.phylip&#8217;,</p>
<p>                                -idlength=&gt;12,<br />
                                -interleaved =&gt; 1);<br />
                                 my $aln = $alignio-&gt;next_aln;</p>
<p>my $yn = new Bio::Tools::Run::Phylo::PAML::Yn00();<br />
$yn-&gt;alignment($aln);<br />
my ($rc,$parser) = $yn-&gt;run();</p>
<p>if(my $result = $parser-&gt;next_result) {<br />
   my @otus = $result-&gt;get_seqs();<br />
   my $MLmatrix = $result-&gt;get_MLmatrix();<br />
   # 0 and 1 correspond to the 1st and 2nd entry in the @otus array<br />
   my $dN = $MLmatrix-&gt;[0]-&gt;[1]-&gt;{dN};<br />
   my $dS = $MLmatrix-&gt;[0]-&gt;[1]-&gt;{dS};<br />
   my $kaks =$MLmatrix-&gt;[0]-&gt;[1]-&gt;{omega};<br />
   print &#8220;Ka = $dN Ks = $dS Ka/Ks = $kaks\n&#8221;;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on mediawiki 1.6.7 by why does frontpage keep trying to install when loading website? &#187; blueabe162</title>
		<link>http://news.open-bio.org/news/2006/06/mediawiki-167/comment-page-1/#comment-152</link>
		<dc:creator>why does frontpage keep trying to install when loading website? &#187; blueabe162</dc:creator>
		<pubDate>Sun, 11 Jun 2006 14:56:07 +0000</pubDate>
		<guid isPermaLink="false">http://bioperl.org/news/2006/06/07/mediawiki-167/#comment-152</guid>
		<description>[...] mediawiki 1.6.7 [...]</description>
		<content:encoded><![CDATA[<p>[...] mediawiki 1.6.7 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mailing list reading with GMANE by Chris Fields</title>
		<link>http://news.open-bio.org/news/2006/04/mailing-list-reading-with-gmane/comment-page-1/#comment-38</link>
		<dc:creator>Chris Fields</dc:creator>
		<pubDate>Wed, 05 Apr 2006 18:01:04 +0000</pubDate>
		<guid isPermaLink="false">http://bioperl.org/news/2006/04/05/mailing-list-reading-with-gmane/#comment-38</guid>
		<description>I'll add this to the mailing list for the wiki since using Google seems incomplete and the openbio search is still down.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll add this to the mailing list for the wiki since using Google seems incomplete and the openbio search is still down.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on sort order for Bio::Tree::Node each_Descendent by Jason Stajich</title>
		<link>http://news.open-bio.org/news/2005/11/sort-order-for-each_descendent/comment-page-1/#comment-4</link>
		<dc:creator>Jason Stajich</dc:creator>
		<pubDate>Mon, 27 Feb 2006 14:30:56 +0000</pubDate>
		<guid isPermaLink="false">http://bioperl.open-bio.org/?p=15#comment-4</guid>
		<description>Sounds good - don't let me stop you from writing it... =)

I think what is best is to add some of these comments to the module page on the wiki when someone has time so we can build a todo list on that page which everyone can edit and update when finished.</description>
		<content:encoded><![CDATA[<p>Sounds good - don&#8217;t let me stop you from writing it&#8230; =)</p>
<p>I think what is best is to add some of these comments to the module page on the wiki when someone has time so we can build a todo list on that page which everyone can edit and update when finished.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on sort order for Bio::Tree::Node each_Descendent by marino</title>
		<link>http://news.open-bio.org/news/2005/11/sort-order-for-each_descendent/comment-page-1/#comment-3</link>
		<dc:creator>marino</dc:creator>
		<pubDate>Fri, 24 Feb 2006 21:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://bioperl.open-bio.org/?p=15#comment-3</guid>
		<description>Great job Jason!

I have been trying to order nodes by similarity and the method 'height' works very well in most instances. It would be nice to have a 'revheight' method as well. I presume that the two methods would be similar to the "Ladderise" left and right from TreeView.

I also think that it would be useful to have a leaf ordering algorithm similar to the one published by Bar-Joseph Z, Gifford DK and Jaakkola TS.Fast optimal leaf ordering for hierarchical clustering. Bioinformatics. 2001;17 Suppl 1:S22-9.</description>
		<content:encoded><![CDATA[<p>Great job Jason!</p>
<p>I have been trying to order nodes by similarity and the method &#8216;height&#8217; works very well in most instances. It would be nice to have a &#8216;revheight&#8217; method as well. I presume that the two methods would be similar to the &#8220;Ladderise&#8221; left and right from TreeView.</p>
<p>I also think that it would be useful to have a leaf ordering algorithm similar to the one published by Bar-Joseph Z, Gifford DK and Jaakkola TS.Fast optimal leaf ordering for hierarchical clustering. Bioinformatics. 2001;17 Suppl 1:S22-9.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Discussions about modules that run BLAST by Jason Stajich</title>
		<link>http://news.open-bio.org/news/2006/02/discussions-about-modules-which-run-blast/comment-page-1/#comment-8</link>
		<dc:creator>Jason Stajich</dc:creator>
		<pubDate>Tue, 07 Feb 2006 22:37:25 +0000</pubDate>
		<guid isPermaLink="false">http://bioperl.org/news/2006/02/07/discussions-about-modules-which-run-blast/#comment-8</guid>
		<description>Fixed them, some sort of weird xhref in link instead of href, maybe javascript was screwed up when I was editing the post.

Also I promoted you to author so you can post news I think.</description>
		<content:encoded><![CDATA[<p>Fixed them, some sort of weird xhref in link instead of href, maybe javascript was screwed up when I was editing the post.</p>
<p>Also I promoted you to author so you can post news I think.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Discussions about modules that run BLAST by cjfields</title>
		<link>http://news.open-bio.org/news/2006/02/discussions-about-modules-which-run-blast/comment-page-1/#comment-7</link>
		<dc:creator>cjfields</dc:creator>
		<pubDate>Tue, 07 Feb 2006 22:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://bioperl.org/news/2006/02/07/discussions-about-modules-which-run-blast/#comment-7</guid>
		<description>Jason, sorry to bother you about this but the additional links that you added at the end don't link for some reason.  Not really sure why, but I tried it in Firefox and IE (ugh) and got nothing.  I can see the links when I logged in.

Also, any reason why comments need to be approved?  I tried posting several times and got nothing, but then I checked the coments section of this page when I logged in and (voila!) there they are!</description>
		<content:encoded><![CDATA[<p>Jason, sorry to bother you about this but the additional links that you added at the end don&#8217;t link for some reason.  Not really sure why, but I tried it in Firefox and IE (ugh) and got nothing.  I can see the links when I logged in.</p>
<p>Also, any reason why comments need to be approved?  I tried posting several times and got nothing, but then I checked the coments section of this page when I logged in and (voila!) there they are!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Publications and projects which reference BioPerl by jason</title>
		<link>http://news.open-bio.org/news/2006/01/publications-and-projects-which-reference-bioperl/comment-page-1/#comment-6</link>
		<dc:creator>jason</dc:creator>
		<pubDate>Mon, 30 Jan 2006 15:15:51 +0000</pubDate>
		<guid isPermaLink="false">http://bioperl.open-bio.org/news/2006/01/17/publications-and-projects-which-reference-bioperl/#comment-6</guid>
		<description>I do use ISI but it of course only lists when people cite the 2002 Genome Res paper (132 citations as of today) but a majority of people using the project for published work are saying "we used BioPerl 1.4" or "we used the following tools Bioperl (http://www.bioperl.org)" which are not indexed by ISI so do not count as a citation.</description>
		<content:encoded><![CDATA[<p>I do use ISI but it of course only lists when people cite the 2002 Genome Res paper (132 citations as of today) but a majority of people using the project for published work are saying &#8220;we used BioPerl 1.4&#8243; or &#8220;we used the following tools Bioperl (http://www.bioperl.org)&#8221; which are not indexed by ISI so do not count as a citation.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
