<?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 Byte Size Biology</title>
	<atom:link href="http://bytesizebio.net/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://bytesizebio.net</link>
	<description>The musings and ravings of a computational biologist about science, computers, music and, you know, stuff</description>
	<lastBuildDate>Fri, 03 Sep 2010 05:37:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on The open source spammer: extracting email addresses from an openoffice.org document by Martin Jambon</title>
		<link>http://bytesizebio.net/index.php/2010/09/01/the-open-source-spammer-extracting-email-addresses-from-an-openoffice-org-document/comment-page-1/#comment-1161</link>
		<dc:creator>Martin Jambon</dc:creator>
		<pubDate>Fri, 03 Sep 2010 05:37:22 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=4031#comment-1161</guid>
		<description>&lt;code&gt;strings&lt;/code&gt; extracts printable ASCII substrings from any file. It&#039;s useful for files like .doc documents:

&lt;pre&gt;
strings foo.doc &#124; egrep -o -i &#039;\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b&#039;
&lt;/pre&gt;

.docx documents are just compressed XML, so the following should work:

&lt;pre&gt;
unzip -c foo.docx &#124; egrep -o -i &#039;\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b&#039;
&lt;/pre&gt;

&lt;code&gt;strings&lt;/code&gt; is also handy for inspecting the bowels of a compiled executable:

&lt;pre&gt;
$ strings `which cat`
/lib64/ld-linux-x86-64.so.2
__gmon_start__
libc.so.6
stpcpy
ioctl
stdout
memmove
getopt_long
...
Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
Copyright %s %d Free Software Foundation, Inc.
%s: %s
literal
shell
shell-always
escape
clocale
memory exhausted
?P&lt;@
@(NULL)
                 0
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p><code>strings</code> extracts printable ASCII substrings from any file. It&#8217;s useful for files like .doc documents:</p>
<pre>
strings foo.doc | egrep -o -i '\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b'
</pre>
<p>.docx documents are just compressed XML, so the following should work:</p>
<pre>
unzip -c foo.docx | egrep -o -i '\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b'
</pre>
<p><code>strings</code> is also handy for inspecting the bowels of a compiled executable:</p>
<pre>
$ strings `which cat`
/lib64/ld-linux-x86-64.so.2
__gmon_start__
libc.so.6
stpcpy
ioctl
stdout
memmove
getopt_long
...
Written by %s, %s, %s,
%s, %s, %s, %s,
%s, and %s.
Written by %s, %s, %s,
%s, %s, %s, %s,
%s, %s, and others.
Copyright %s %d Free Software Foundation, Inc.
%s: %s
literal
shell
shell-always
escape
clocale
memory exhausted
?P< @
@(NULL)
                 0
</pre>
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Changing directions by 96well</title>
		<link>http://bytesizebio.net/index.php/2010/09/02/changing-directions/comment-page-1/#comment-1159</link>
		<dc:creator>96well</dc:creator>
		<pubDate>Thu, 02 Sep 2010 22:54:32 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=4052#comment-1159</guid>
		<description>Wow! Simple and efficient.</description>
		<content:encoded><![CDATA[<p>Wow! Simple and efficient.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The open source spammer: extracting email addresses from an openoffice.org document by Iddo</title>
		<link>http://bytesizebio.net/index.php/2010/09/01/the-open-source-spammer-extracting-email-addresses-from-an-openoffice-org-document/comment-page-1/#comment-1155</link>
		<dc:creator>Iddo</dc:creator>
		<pubDate>Thu, 02 Sep 2010 14:32:43 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=4031#comment-1155</guid>
		<description>&lt;a href=&quot;#comment-1154&quot; rel=&quot;nofollow&quot;&gt;@Martin Jambon &lt;/a&gt; 
Thanks Martin, I never used strings... got an example one-liner using strings?</description>
		<content:encoded><![CDATA[<p><a href="#comment-1154" rel="nofollow">@Martin Jambon </a><br />
Thanks Martin, I never used strings&#8230; got an example one-liner using strings?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The open source spammer: extracting email addresses from an openoffice.org document by Martin Jambon</title>
		<link>http://bytesizebio.net/index.php/2010/09/01/the-open-source-spammer-extracting-email-addresses-from-an-openoffice-org-document/comment-page-1/#comment-1154</link>
		<dc:creator>Martin Jambon</dc:creator>
		<pubDate>Thu, 02 Sep 2010 06:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=4031#comment-1154</guid>
		<description>&quot;strings&quot; is a really cool command for such purpose.</description>
		<content:encoded><![CDATA[<p>&#8220;strings&#8221; is a really cool command for such purpose.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on When is it a good idea to cheat? by Wil</title>
		<link>http://bytesizebio.net/index.php/2010/08/27/when-is-it-a-good-idea-to-cheat/comment-page-1/#comment-1150</link>
		<dc:creator>Wil</dc:creator>
		<pubDate>Wed, 01 Sep 2010 22:11:29 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=3825#comment-1150</guid>
		<description>Nice article. A further comment on evolving cooperation: In order to explain emergence of cooperation in this context, you don&#039;t necessarily need kin selection. If you assume that, supported by geometric issues, different groups of various bacteria form, those groups with a healthy preference towards cooperation will grow faster and overtake areas with selfish, and therefore less performant mixtures.</description>
		<content:encoded><![CDATA[<p>Nice article. A further comment on evolving cooperation: In order to explain emergence of cooperation in this context, you don&#8217;t necessarily need kin selection. If you assume that, supported by geometric issues, different groups of various bacteria form, those groups with a healthy preference towards cooperation will grow faster and overtake areas with selfish, and therefore less performant mixtures.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2010 Homology High-Low Count by Dan Gaston</title>
		<link>http://bytesizebio.net/index.php/2010/08/25/2010-homology-high-low-count/comment-page-1/#comment-1127</link>
		<dc:creator>Dan Gaston</dc:creator>
		<pubDate>Sun, 29 Aug 2010 22:10:36 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=3980#comment-1127</guid>
		<description>@Iddo I should have been clearer and realize I phrased it bad. They are only different semantically. What I meant is that I can see how people using the phrase distantly homologous could create confusion and lead to others to think of degrees of homology.

My overall point though, is that the phrase distant homolog is widely used in molecular evolution circles and is, I feel, quite legitimate. Homolog and homology is still being used as a categorical statement. Either sequences are homologs or they are not. It would of course be more correct to say something like &quot;evolutionarily distant homologs&quot; but given the field the phrase is being used in, the evolutionarily part is understood and implied.</description>
		<content:encoded><![CDATA[<p>@Iddo I should have been clearer and realize I phrased it bad. They are only different semantically. What I meant is that I can see how people using the phrase distantly homologous could create confusion and lead to others to think of degrees of homology.</p>
<p>My overall point though, is that the phrase distant homolog is widely used in molecular evolution circles and is, I feel, quite legitimate. Homolog and homology is still being used as a categorical statement. Either sequences are homologs or they are not. It would of course be more correct to say something like &#8220;evolutionarily distant homologs&#8221; but given the field the phrase is being used in, the evolutionarily part is understood and implied.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I can&#8217;t hear you, the bacteria are too noisy by Iddo</title>
		<link>http://bytesizebio.net/index.php/2010/08/04/i-cant-hear-you-the-bacteria-are-too-noisy/comment-page-1/#comment-1126</link>
		<dc:creator>Iddo</dc:creator>
		<pubDate>Sun, 29 Aug 2010 20:22:25 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=3921#comment-1126</guid>
		<description>&lt;a href=&quot;#comment-1124&quot; rel=&quot;nofollow&quot;&gt;@Lucas &lt;/a&gt; 
Seems like the captcha in the blog carnival submission site is on the blink... so I cannot submit.  You are welcome to submit it yourself, of course. And thanks!</description>
		<content:encoded><![CDATA[<p><a href="#comment-1124" rel="nofollow">@Lucas </a><br />
Seems like the captcha in the blog carnival submission site is on the blink&#8230; so I cannot submit.  You are welcome to submit it yourself, of course. And thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2010 Homology High-Low Count by Iddo</title>
		<link>http://bytesizebio.net/index.php/2010/08/25/2010-homology-high-low-count/comment-page-1/#comment-1125</link>
		<dc:creator>Iddo</dc:creator>
		<pubDate>Sun, 29 Aug 2010 20:13:42 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=3980#comment-1125</guid>
		<description>&lt;a href=&quot;#comment-1118&quot; rel=&quot;nofollow&quot;&gt;@Dan Gaston &lt;/a&gt; 
&quot;Distant homologs&quot; and &quot;distantly homologous&quot;: I fail to see the difference, aside from semantics. &lt;blockquote cite=&quot;#commentbody-1110&quot;&gt;

&lt;strong&gt;&lt;a href=&quot;#comment-1110&quot; rel=&quot;nofollow&quot;&gt;brent&lt;/a&gt; :&lt;/strong&gt;
&lt;p&gt;do you disagree with the use-case of “high homology” where it’s in reference to a syntenic region and not a single gene. e.g. “this region with 34 out of 55 genes retained as orthologs has a high (level of) homology”. i suspect that’s where at least a few of the “highly homologous” came from.&lt;/p&gt;
&lt;/blockquote&gt;

What&#039;s wrong with &quot;(these chromosomal regions...) have a high fraction of homologous genes.&quot;?</description>
		<content:encoded><![CDATA[<p><a href="#comment-1118" rel="nofollow">@Dan Gaston </a><br />
&#8220;Distant homologs&#8221; and &#8220;distantly homologous&#8221;: I fail to see the difference, aside from semantics.<br />
<blockquote cite="#commentbody-1110">
<p><strong><a href="#comment-1110" rel="nofollow">brent</a> :</strong></p>
<p>do you disagree with the use-case of “high homology” where it’s in reference to a syntenic region and not a single gene. e.g. “this region with 34 out of 55 genes retained as orthologs has a high (level of) homology”. i suspect that’s where at least a few of the “highly homologous” came from.</p>
</blockquote>
<p>What&#8217;s wrong with &#8220;(these chromosomal regions&#8230;) have a high fraction of homologous genes.&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I can&#8217;t hear you, the bacteria are too noisy by Lucas</title>
		<link>http://bytesizebio.net/index.php/2010/08/04/i-cant-hear-you-the-bacteria-are-too-noisy/comment-page-1/#comment-1124</link>
		<dc:creator>Lucas</dc:creator>
		<pubDate>Sun, 29 Aug 2010 19:58:01 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=3921#comment-1124</guid>
		<description>One of the most fascinating pieces of work to come out last month! Maybe we will look back in a decade or so and be amazed that we ever thought mRNA levels were a good proxy for protein expression..
Coincidentally, this is also on of the clearest blogposts I read on the subject. Since I&#039;m hosting next edition - would you consider submitting it to the Molbio Carnival (http://blogcarnival.com/bc/cprof_10473.html)?</description>
		<content:encoded><![CDATA[<p>One of the most fascinating pieces of work to come out last month! Maybe we will look back in a decade or so and be amazed that we ever thought mRNA levels were a good proxy for protein expression..<br />
Coincidentally, this is also on of the clearest blogposts I read on the subject. Since I&#8217;m hosting next edition &#8211; would you consider submitting it to the Molbio Carnival (<a href="http://blogcarnival.com/bc/cprof_10473.html)?" rel="nofollow">http://blogcarnival.com/bc/cprof_10473.html)?</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2010 Homology High-Low Count by Dan Gaston</title>
		<link>http://bytesizebio.net/index.php/2010/08/25/2010-homology-high-low-count/comment-page-1/#comment-1118</link>
		<dc:creator>Dan Gaston</dc:creator>
		<pubDate>Fri, 27 Aug 2010 01:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://bytesizebio.net/?p=3980#comment-1118</guid>
		<description>@Iddo:

I still disagree. I agree that saying sequences are &quot;distantly homologous&quot; fits what you are describing, but at least in my area I don&#039;t see that. What I do see is the term &quot;distant homologs&quot;. While the &quot;distant&quot; portion does, as you say, refer in some ways to the low percent identity of the homologs it is meant to refer to the evolutionary distance of the taxa. 

And those that I see use this commonly, including me, like you, harp frequently on the horrible use of phrases like more homologous, less homologous, percent homology, etc. I just don&#039;t think it is the same thing.</description>
		<content:encoded><![CDATA[<p>@Iddo:</p>
<p>I still disagree. I agree that saying sequences are &#8220;distantly homologous&#8221; fits what you are describing, but at least in my area I don&#8217;t see that. What I do see is the term &#8220;distant homologs&#8221;. While the &#8220;distant&#8221; portion does, as you say, refer in some ways to the low percent identity of the homologs it is meant to refer to the evolutionary distance of the taxa. </p>
<p>And those that I see use this commonly, including me, like you, harp frequently on the horrible use of phrases like more homologous, less homologous, percent homology, etc. I just don&#8217;t think it is the same thing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
