<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Dammit Jim!</title>
	<atom:link href="http://scott.sherrillmix.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://scott.sherrillmix.com/blog</link>
	<description>I'm a biologist not a...</description>
	<pubDate>Sat, 17 May 2008 18:58:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Hosting Problems and How to Restore Lost Pings</title>
		<link>http://scott.sherrillmix.com/blog/blogger/hosting-problems-and-how-to-restore-lost-pings/</link>
		<comments>http://scott.sherrillmix.com/blog/blogger/hosting-problems-and-how-to-restore-lost-pings/#comments</comments>
		<pubDate>Tue, 06 May 2008 14:02:34 +0000</pubDate>
		<dc:creator>ScottS-M</dc:creator>
		
		<category><![CDATA[Blogger]]></category>

		<category><![CDATA[Programmer]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[hosting]]></category>

		<category><![CDATA[lost]]></category>

		<category><![CDATA[pings]]></category>

		<category><![CDATA[problems]]></category>

		<category><![CDATA[recover]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/?p=109</guid>
		<description><![CDATA[I just checked in here and found the last couple days of comments missing. Luckily, they were stored in gmail and I think I restored them all. But if you left a comment recently and it isn't here now, it's not that I don't like you (just that my host apparently doesn't like me).
A couple [...]]]></description>
			<content:encoded><![CDATA[<p>I just checked in here and found the last couple days of comments missing. Luckily, they were stored in gmail and I think I restored them all. But if you left a comment recently and it isn't here now, it's not that I don't like you (just that my host apparently doesn't like me).</p>
<p>A couple of the comments were pings and I wouldn't have know how to get them back if I hadn't messed around with pinging for my <a href="http://scott.sherrillmix.com/blog/blogger/wp_pingpreserver/">WP_PingPreserver</a> plugin, so I figured it might be useful to put up a quick bit on how to recover lost pings. You'll need to know a little bit about php to use it I guess but if you don't know php and need to restore some pings let me know and I'll make up a quick plugin. So here's some simple (i.e. probably not perfectly to specifications) php code to restore lost pings on Wordpress:</p>

<div class="syntax_hilite"><span class="langName">PHP:</span><br /><div id="php-2">
<div class="php"><ol><li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;?php</span> </div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$linkingPost</span>=<span style="color:#FF0000;">'http://LinkingBlog.com/Their-Post-Title/'</span>;</div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$myPost</span>=<span style="color:#FF0000;">'http://MyBlog.com/My-Post-Title/'</span>;</div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$myBlogHome</span>=<span style="color:#FF0000;">'http://MyBlog.com'</span>;</div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$ch</span> = curl_init<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">curl_setopt<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$ch</span>, CURLOPT_URL, <span style="color:#0000FF;">$myBlogHome</span>.<span style="color:#FF0000;">'/xmlrpc.php'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$data</span> = <span style="color:#FF0000;">"&lt;?xml version='1.0'?&gt;</span></div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;methodCall&gt;</span></div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &lt;methodName&gt;pingback.ping&lt;/methodName&gt;</span></div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &lt;params&gt;</span></div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; &lt;param&gt;</span></div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; &nbsp; &nbsp; &lt;value&gt;$linkingPost&lt;/value&gt;</span></div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; &lt;/param&gt;</span></div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; &lt;param&gt;</span></div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; &nbsp; &nbsp; &lt;value&gt;$myPost&lt;/value&gt;</span></div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; &lt;/param&gt;</span></div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &lt;/params&gt;</span></div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;/methodCall&gt;</span></div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">"</span>;</div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">curl_setopt<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$ch</span>, CURLOPT_POST, <span style="color:#000000; font-weight:bold;">true</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">curl_setopt<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$ch</span>, CURLOPT_POSTFIELDS, <span style="color:#0000FF;">$data</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">curl_setopt<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$ch</span>, CURLOPT_RETURNTRANSFER, <span style="color:#000000; font-weight:bold;">true</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$output</span>=curl_exec<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$ch</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">curl_close<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$ch</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <span style="color:#0000FF;">$output</span>;</div></li>
<li style="font-weight: bold;color:#26536A;"><div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">?&gt;</span> </div></li></ol></div>
</div></div><br />
<p>It's not very pretty but it gets the job done. Just replace the top three lines with the appropriate links, save it to your host and visit the file in your browser. Hopefully your host won't mysteriously lose your pings but if they do now you know what to do.</p>]]></content:encoded>
			<wfw:commentRss>http://scott.sherrillmix.com/blog/blogger/hosting-problems-and-how-to-restore-lost-pings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tangled Bank #104</title>
		<link>http://scott.sherrillmix.com/blog/blogger/tangled-bank-104/</link>
		<comments>http://scott.sherrillmix.com/blog/blogger/tangled-bank-104/#comments</comments>
		<pubDate>Thu, 01 May 2008 15:58:08 +0000</pubDate>
		<dc:creator>ScottS-M</dc:creator>
		
		<category><![CDATA[Biologist]]></category>

		<category><![CDATA[Blogger]]></category>

		<category><![CDATA[biology]]></category>

		<category><![CDATA[carnival]]></category>

		<category><![CDATA[links]]></category>

		<category><![CDATA[tangled bank]]></category>

		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/?p=108</guid>
		<description><![CDATA[

Welcome to the 104th edition of the Tangled Bank blog carnival (a biweekly showcase of good biology posts selected by the authors themselves). Rigorous calculations and archaelogical research have revealed that this is the Tangled Bank's 4th birthday. In the birthday spirit, several people sent appropriately themed presents.

Chris gave some great gifts (with a few [...]]]></description>
			<content:encoded><![CDATA[<a href="http://tangledbank.net"><img src="/res/images/tbbadge.gif" alt="Tangled Bank Icon" class="left"/></a>
<a href="http://www.youtube.com/watch?v=eaGgpGLxLQw"><img src="/res/images/myers_darwin_cake.jpg" alt="Myers, Darwin and cake" class="right"/></a>
<p>Welcome to the 104th edition of the <a href="http://tangledbank.net">Tangled Bank</a> blog carnival (a biweekly showcase of good biology posts selected by the authors themselves). Rigorous <a href="http://www.google.com/search?q=104%2F26">calculations</a> and <a href="http://pharyngula.org/index/weblog/comments/tangled_bank_1/">archaelogical research</a> have revealed that this is the Tangled Bank's 4th birthday. In the birthday spirit, several people sent appropriately themed presents.</p>

<p><a href="http://ouroboros.wordpress.com">Chris</a> gave some great gifts (with a few caveats); a <a href="http://ouroboros.wordpress.com/2008/04/21/dbc1-stimulates-p53-by-inhibiting-sirt1/">protien to resist radiation</a> (may cause cancer), an <a href="http://ouroboros.wordpress.com/2008/04/25/baby-i-was-born-to-run-the-pepck-cmus-mouse/">enzyme to live longer, slimmer and stronger</a> (but anti-socially and so far only in mice), and a
<a href="http://ouroboros.wordpress.com/2008/04/22/reversing-dermal-aging-by-inhibiting-nf%ce%bab/">transcription factor that can reverse skin aging</a> (also in mice).</p> 

<a href="/res/images/flu.jpg"><img src="/res/images/flu.jpg" alt="Flu virus" class="right"/></a>
<p>Even more microbiological gifts came in. <a href="http://skeptalchemist.blogspot.com/">steppen wolf</a> wrapped up a nice box of <a href="http://skeptalchemist.blogspot.com/2008/04/ras-is-regulated-by-mirnas.html">cancer-fighting microRNA</a> while <a href="http://nimravid.wordpress.com/">Nimravid</a> added some <a href="http://nimravid.wordpress.com/2008/04/23/gene-networks-bacteria-robust/">surprisingly robust bacterial gene networks</a>. Finally, <a href="http://scienceblogs.com/notrocketscience/">Ed</a> chipped in a <a href="http://scienceblogs.com/notrocketscience/2008/04/enormous_bacterium_uses_thousands_of_genome_copies_to_its_ad.php">giant symbiotic bacteria with 40,000 copies of DNA</a> and some influenza virus (straight from the <a href="http://scienceblogs.com/notrocketscience/2008/04/new_flu_viruses_emerge_in_tropical_asia_before_going_on_onew.php">flu's tropical Asian source</a>) and I contributed some <a href="http://scott.sherrillmix.com/blog/biologist/cancer-fighting-bacteria/">cancer fighting bacteria</a>.</p>

<p>I'm running out of synonyms for "give" and ways to twist submissions into presents, so let's leave the birthday party behind and see the rest of the submissions.</p>

<p>First some plant related posts. <a href="http://islandrambles.blogspot.com/">Ocean Rambles</a> has a bunch of <a href="http://islandrambles.blogspot.com/2008/04/garry-oak-ecosystem-and-spring-flowers.html">nice pictures of the endangered Garry Oak ecosystem</a> (and spring flowers) on Vancouver Island. Also concerned for plants, <a href="http://network.nature.com/blogs/user/ennis">rENNISance woman</a> links to the new idea of <a href="http://network.nature.com/blogs/user/ennis/2008/04/23/arabidopsis-abuse-and-cruelty-to-carrots">plant dignity</a> (and a very odd stem cell comment thread).</p>

<p>On cultivated plants, <a href="http://jeremycherfas.net/wp">Jeremy</a> warns that relatively <a href="http://agro.biodiver.se/2008/04/crossroads-roundabout-maze-entrance-wtf-are-we/">little money is being spent on farming research</a>, especially for developing countries that need it most, and urges farmers to stop being <a href="http://jeremycherfas.net/wp/Archive/2008/04/22/just-say-no/">pushed around by an agricultural corporation</a> that sounds like the RIAA of farming (plus health effects).</p>  

<p>Continuing the topic of corporate machinations, <a href="http://www.biotunes.org/bioblog/">Biotunes</a> describes an article (and personal experience) about <a href="http://www.biotunes.org/bioblog/2008/04/mercks-fraud-is-standard-industry.html">bias in medical publications</a>. On the lighter side of medicine, you can <a href="http://larryferlazzo.edublogs.org/2008/04/16/space-doctor-game/">play doctor in space</a> with a cool little flash game from the BBC.</p>

<a href="http://sciencenotes.wordpress.com/2008/04/16/whos-zoomin-who/"><img src="/res/images/flagellum_model.jpg" alt="Flagellum model" class="right"/></a>

<p>Moving on to scheming of the creationist sort, <a href="http://scienceblogs.com/gregladen/">Greg</a> theorizes why physics doesn't have <i lang="la">argumentum ad Nazium</i> documentaries and points out that <a href="http://scienceblogs.com/gregladen/2008/04/expelled_induced_conversations.php">biology at the molecular scale is difficult to comprehend</a>. <a href="http://sciencenotes.wordpress.com/">Monado</a> gives an example of this difficulty by comparing creationist drawings to <a href="http://sciencenotes.wordpress.com/2008/04/16/whos-zoomin-who/">a real electron micrograph of a flagellum</a>. <ins datetime="2008-05-02T19:43:47+00:00"><i>Late update:</i> On the topic of pseudoscience, <a href="http://podblack.wordpress.com/">Podblack Cat</a> asks "<a href="http://podblack.wordpress.com/2008/04/22/women-and-superstitions-part-one/">are women more superstitious?</a>" (and throws in quite a literature review for the topic).</ins></p>

<p>As an antidote to that intelligent design, <a href="http://www.sharpbrains.com/blog/">Alvaro</a> has details on <a href="http://www.sharpbrains.com/blog/2008/04/25/new-neurons-good-news-bad-news/">making new neurons</a> and a bunch of <a href="http://www.sharpbrains.com/blog/2008/04/23/brain-research-interview-series/">interviews of neuroscientists and cognitive psychologists</a>.</p>

<p>Finally, <a href="http://10000birds.com/">10,000 Birds</a> (the only returning blog from Tangled Bank #1 [<a href="http://10000birds.com/american-trash-bird.htm">this post</a> if you're curious]) describes <a href="http://10000birds.com/coots.htm">coots</a> (the bird, not the elderly).</p>

<p>I hope you enjoyed this Tangled Bank. The next edition is at the <a href="http://thebeagleproject.blogspot.com/">Beagle Project</a>. You can email submissions to the hosts directly <a href="mailto:&#107;ar&#101;&#110;&#64;&#116;&#104;&#101;b&#101;&#97;&#103;&#108;e&#112;&#114;&#111;j&#101;&#99;&#116;.&#99;&#111;m">here</a>
 or <a href="mailto:pe&#116;&#101;&#114;&#64;&#116;&#104;&#101;&#98;&#101;&#97;&#103;&#108;&#101;&#112;&#114;o&#106;&#101;&#99;&#116;&#46;&#99;&#111;m">here</a>
 or to the standard <a href="mailto:&#104;o&#115;t&#64;&#116;&#97;&#110;&#103;&#108;&#101;&#100;&#98;&#97;&#110;&#107;&#46;&#110;&#101;&#116;">&#104;ost&#64;t&#97;&#110;&#103;&#108;&#101;&#100;&#98;a&#110;k&#46;&#110;&#101;&#116;</a>
 before May 14th. Here's to four years of biology blogging carnivals and hopefully many more. </p>]]></content:encoded>
			<wfw:commentRss>http://scott.sherrillmix.com/blog/blogger/tangled-bank-104/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gravatar Adds MonsterIDs and Identicons</title>
		<link>http://scott.sherrillmix.com/blog/blogger/gravatar-adds-monsterids-and-identicons/</link>
		<comments>http://scott.sherrillmix.com/blog/blogger/gravatar-adds-monsterids-and-identicons/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 02:32:54 +0000</pubDate>
		<dc:creator>ScottS-M</dc:creator>
		
		<category><![CDATA[Blogger]]></category>

		<category><![CDATA[Programmer]]></category>

		<category><![CDATA[Web]]></category>

		<category><![CDATA[avatar]]></category>

		<category><![CDATA[gravatar]]></category>

		<category><![CDATA[identicon]]></category>

		<category><![CDATA[monsterid]]></category>

		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/?p=107</guid>
		<description><![CDATA[
It looks like Gravatar has added Identicons and MonsterIDs to their system. I'd been wondering when they would add something like this since it seems like such a simple and useful addition. I was thinking my plugins wouldn't get much use now but it seems like they've gotten quite a few hits in the last [...]]]></description>
			<content:encoded><![CDATA[<img src="/res/images/gravatar.gif" alt="Gravatar" class="right"/>
<p>It looks like <a href="http://blog.gravatar.com/2008/04/22/identicons-monsterids-and-wavatars-oh-my/">Gravatar</a> has added <a href="http://www.docuverse.com/blog/donpark/2007/01/18/visual-security-9-block-ip-identification">Identicons</a> and <a href="http://www.splitbrain.org/projects/monsterid">MonsterIDs</a> to their system. I'd been wondering when they would add something like this since it seems like such a simple and useful addition. I was thinking my plugins wouldn't get much use now but it seems like they've gotten quite a few hits in the last few days. Not sure if that's related to Gravatar or just random but I guess some people are still finding them useful.</p>
<p>So I guess I'll keep maintaining the plugins since unfortunately Gravatar doesn't really give you all the configuration possibilities of <a href="http://scott.sherrillmix.com/blog/blogger/wp_identicon/">WP_Identicon</a> or the hand drawn monsters of <a href="http://scott.sherrillmix.com/blog/blogger/wp_monsterid/">WP_MonsterID</a>.</p>
<a href="http://nomoretangerines.com/blog/"><img src="/res/images/lemm_goblin.png" alt="Goblin art by Lemm" class="left"/></a>
<p>Speaking of hand drawn, <a href="http://rocketworm.com/">Lemm</a>, the kind illustrator that drew up the new monsters, has (re?)started <a href="http://nomoretangerines.com/blog/">No More Tangerines</a>, a blog showing off some of her art. It's pretty cool to see the <a href="http://nomoretangerines.com/blog/2008/03/30/goblin-progress/">progression</a> her <a href="http://nomoretangerines.com/blog/2008/04/03/plodding-along/">drawings</a> go <a href="http://nomoretangerines.com/blog/2008/04/08/goblin-wip-three/">through</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://scott.sherrillmix.com/blog/blogger/gravatar-adds-monsterids-and-identicons/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cancer Fighting Bacteria</title>
		<link>http://scott.sherrillmix.com/blog/biologist/cancer-fighting-bacteria/</link>
		<comments>http://scott.sherrillmix.com/blog/biologist/cancer-fighting-bacteria/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 20:25:07 +0000</pubDate>
		<dc:creator>ScottS-M</dc:creator>
		
		<category><![CDATA[Biologist]]></category>

		<category><![CDATA[bacteria]]></category>

		<category><![CDATA[cancer]]></category>

		<category><![CDATA[DNA]]></category>

		<category><![CDATA[genetics]]></category>

		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/?p=105</guid>
		<description><![CDATA[

I was doing a bit of background reading and came across an interesting paper about mutating normal bacteria into cancer-fighting bacteria. The paper centers around a single gene called inv (short for invasin) that can give an otherwise mild-mannered noninfectious bacteria the ability to invade cells.

Now this might seem like a pretty bad idea since [...]]]></description>
			<content:encoded><![CDATA[<a href="http://www.researchblogging.org"><img alt="ResearchBlogging.org" src="http://www.researchblogging.org/images/rbicons/ResearchBlogging-Medium-Trans.png" width="80" height="50" class="left"/></a>

<p>I was doing a bit of background reading and came across an interesting paper about mutating normal bacteria into cancer-fighting bacteria. The paper centers around a single gene called <i class="gene">inv</i> (short for invasin) that can give an otherwise mild-mannered noninfectious bacteria the ability to invade cells.</p>

<p>Now this might seem like a pretty bad idea since there are probably enough infectious bacteria in the world already but this was only the first step of the research. Anderson and colleagues attached <i class="gene">inv</i> to a genetic switch (normally used for bacterial metabolism control) that turns on when arabinose (a type of sugar) is present. Unfortunately this switch was a little leaky. So even bacteria without arabinose were still infectious. Not ones to let that stop them, the researchers took out the ribosome (protein-making organelle) binding region of the gene, randomly mutated it and tested to find bacteria that were off by default but still able to turn on.</p>

<p>Once they got that working, they decided to attach a sensor to the infective gene. Bacteria often do things like switch metabolisms when they run out of oxygen. The researchers picked one of the bacteria genes that turns on when oxygen is low and replaced the arabinose switch from the previous bit with the oxygen sensing switch from this gene. Again the switch was leaky and they had to mutate it so it stayed off by default. Once that was done they had a bacteria that was only invasive in anaerobic environments. That's pretty cool because tumors are often anaerobic (since they're big lumps of fast growing dense tissue).</p>
<img src="/res/images/density_infection_bacteria.png" alt="Plasmid for density dependent infectious bacteria" class="right"/>
<p>To go even further, the researchers tried to create bacteria that only turn on when there are many bacteria in one location. This will be useful because tumors often have higher concentrations of bacteria due to leaking nutrients and poor immune response. By creating a switch that only turns on when a bunch of bacteria are present, the bacteria can be further targeted to cancerous cells. To do this they used a gene from an ocean-dwelling bacteria that only turns on when many bacteria are present (the ocean bacteria uses the gene to detect when it has reached the light organ of squid). It seems odd that bacteria can communicate but it comes down to a simple mechanism made up of two genes. One gene encodes an enzyme that makes a chemical, called AI-1, that easily disperses in and out of the cell membrane. The second encodes a gene activator that is turned on by high concentrations of AI-1. When there are many bacteria, the environment becomes rich in AI-1 and the gene activator turns on even more production of AI-1 and gene activators. This positive feedback causes creates a sensitive switch that switches quickly from all off to all on when bacterial concentration crosses a certain level. By linking these genes to the infectious <i class="gene">inv</i> gene, the researchers created a bacteria that was only infectious when in high concentrations.</p>

<p>So now we have bacteria that might be able to selectively infect tumor cells. By combining this selective invasiveness with cell killing or immune response activating mechanisms, bacteria could become helpful tools for treating cancer (although there is still a pretty long way to go). The paper makes it look easy but that must have taken a good bit of work to get it all working so nicely. They ended up using DNA from three different bacteria species and many different bacterial systems. It's always really cool to see how scientists can take DNA "parts" and combine them together to create new and useful functions and even edit the DNA directly when the parts don't fit correctly.</p>

<p>I guess the next step in the research is to figure out how to get a bacteria to sense both an anaerobic <em>and</em> a high density environment. This might be a bit tricky since the two sensors would have to interact but I see some of the same researchers also have a paper on creating bacterial AND gates so I'll have to give that one a read too.</p>

<h3>Reference</h3>
<p><span class="Z3988" title="ctx_ver=Z39.88-2004&#038;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&#038;rft.aulast=ANDERSON&#038;rft.aufirst=J&#038;rft.au=J+ ANDERSON&#038;rft.au=E+CLARKE&#038;rft.au=A+ARKIN&#038;rft.au=C+VOIGT&#038;rft.title=Journal+of+Molecular+Biology&#038;rft.atitle=Environmentally+Controlled+Invasion+of+Cancer+Cells+by+Engineered+Bacteria&#038;rft.date=2006&#038;rft.volume=355&#038;rft.issue=4&#038;rft.spage=619&#038;rft.epage=627&#038;rft.genre=article&#038;rft.id=info:DOI/10.1016%2Fj.jmb.2005.10.076"></span>Anderson, J., Clarke, E., Arkin, A., Voigt, C. (2006). Environmentally Controlled Invasion of Cancer Cells by Engineered Bacteria. <span style="font-style: italic;">Journal of Molecular Biology, 355</span>(4), 619-627. DOI: <a rev="review" href="http://dx.doi.org/10.1016/j.jmb.2005.10.076">10.1016/j.jmb.2005.10.076</a></p>]]></content:encoded>
			<wfw:commentRss>http://scott.sherrillmix.com/blog/biologist/cancer-fighting-bacteria/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Upcoming Tangled Bank</title>
		<link>http://scott.sherrillmix.com/blog/biologist/upcoming-tangled-bank/</link>
		<comments>http://scott.sherrillmix.com/blog/biologist/upcoming-tangled-bank/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 13:44:40 +0000</pubDate>
		<dc:creator>ScottS-M</dc:creator>
		
		<category><![CDATA[Biologist]]></category>

		<category><![CDATA[biology]]></category>

		<category><![CDATA[carnival]]></category>

		<category><![CDATA[tangled bank]]></category>

		<guid isPermaLink="false">http://scott.sherrillmix.com/blog/?p=106</guid>
		<description><![CDATA[It looks like I'm the next host of the biology blog carnival Tangled Bank (if you're not familiar see the last couple sessions for some good collections of biology reading). Pretty exciting since it's my first hosting. Feel free to drop off any suggestions for stories in the comments here or email &#104;&#111;&#115;&#116;&#64;t&#97;&#110;gle&#100;b&#97;&#110;&#107;&#46;&#110;&#101;&#116;
 (I think [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/res/images/tbbadge.gif" alt="Tangled Bank Badge" class="right"/>It looks like I'm the next host of the biology blog carnival <a href="http://tangledbank.net/">Tangled Bank</a> (if you're not familiar see the last <a href="http://ianramjohn.wordpress.com/2008/04/02/tangled-bank-102/">couple</a> <a href="http://network.nature.com/blogs/user/ennis/2008/04/16/the-103rd-edition-of-the-tangled-bank">sessions</a> for some good collections of biology reading). Pretty exciting since it's my first hosting. Feel free to drop off any suggestions for stories in the comments here or email <a href="mailto:&#104;o&#115;&#116;&#64;&#116;&#97;ng&#108;ed&#98;&#97;&#110;&#107;&#46;n&#101;&#116;">&#104;&#111;&#115;&#116;&#64;t&#97;&#110;gle&#100;b&#97;&#110;&#107;&#46;&#110;&#101;&#116;</a>
 (I think those end up coming to me somehow).</p>]]></content:encoded>
			<wfw:commentRss>http://scott.sherrillmix.com/blog/biologist/upcoming-tangled-bank/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
