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

<channel>
	<title>Fuzzier Logic</title>
	<atom:link href="http://blog.fuzzierlogic.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.fuzzierlogic.com</link>
	<description>Logic. Just a bit woolier.</description>
	<lastBuildDate>Fri, 11 Jun 2010 09:39:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Parsing Thermo Finnigan RAW files</title>
		<link>http://blog.fuzzierlogic.com/archives/346</link>
		<comments>http://blog.fuzzierlogic.com/archives/346#comments</comments>
		<pubDate>Fri, 11 Jun 2010 09:34:38 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=346</guid>
		<description><![CDATA[In a rare move, I&#8217;m going to largely copy across a post from my work blog, because I hope it contains useful information. For background, I&#8217;m trying to write a simple python script that extracts particular metadata from a .RAW file, produced by a Thermo Finnigan mass spectrometer. Tools that exist for parsing these files [...]]]></description>
			<content:encoded><![CDATA[<p>In a rare move, I&#8217;m going to largely copy across a post from my work blog, because I hope it contains useful information. For background, I&#8217;m trying to write a simple python script that extracts particular metadata from a .RAW file, produced by a Thermo Finnigan mass spectrometer. Tools that exist for parsing these files require access to proprietary XCalibur libraries, which I do not have.</p>
<p>Thermo provided a link to <a title="MSFileReader" href="http://sjsupport.thermofinnigan.com/public/detail.asp?id=624" target="_blank">MSFileReader</a>, a &#8216;freeware&#8217; COM object that should allow interaction with RAW files without an XCalibur installation. They also sent a <a title="PDF - MSFileReader Reference" href="http://blog.fuzzierlogic.com/wp-content/uploads/2010/06/MSFileReader_Reference.pdf" target="_blank">PDF guide</a> to the COM object. Although this will allow XCalibur to be avoided, the work is still Windows-bound.</p>
<p><strong>Python and COM objects</strong></p>
<p><strong></strong>Python can talk to COM objects, through the <a title="pywin32" href="http://sourceforge.net/projects/pywin32/" target="_blank">win32com.client</a> package. As a test, I installed Python and MSFileReader and the pywin32 libs on my netbook (which is a Windows 7 machine). Can import the required Python module, but need to extent the PATH somewhat:</p>
<div class="geshi no python">
<ol>
<li class="li1">
<div class="de1"><span class="sy0">&gt;&gt;&gt;</span> <span class="kw3">sys</span>.<span class="me1">path</span>.<span class="me1">append</span><span class="br0">&#40;</span><span class="st0">&#39;C:<span class="es0">\\</span>Python26<span class="es0">\\</span>Lib<span class="es0">\\</span>site-packages<span class="es0">\\</span>win32&#39;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="sy0">&gt;&gt;&gt;</span> <span class="kw3">sys</span>.<span class="me1">path</span>.<span class="me1">append</span><span class="br0">&#40;</span><span class="st0">&#39;C:<span class="es0">\\</span>Python26<span class="es0">\\</span>Lib<span class="es0">\\</span>site-packages<span class="es0">\\</span>win32<span class="es0">\\</span>lib&#39;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="sy0">&gt;&gt;&gt;</span> <span class="kw1">from</span> win32com.<span class="me1">client</span> <span class="kw1">import</span> Dispatch</div>
</li>
<li class="li1">
<div class="de1"><span class="sy0">&gt;&gt;&gt;</span> x = Dispatch<span class="br0">&#40;</span><span class="st0">&quot;NAME&quot;</span><span class="br0">&#41;</span></div>
</li>
</ol>
</div>
<p>The key thing here is &#8220;NAME&#8221;: </p>
<p>The provided PDF gives C snippets for each method available in the COM object. This only provides one clue as to the possible name of the COM object</p>
<div class="geshi no c">
<ol>
<li class="li1">
<div class="de1"><span class="co1">// example for Open </span></div>
</li>
<li class="li1">
<div class="de1">TCHAR<span class="sy0">*</span> szPathName<span class="br0">&#91;</span><span class="br0">&#93;</span> <span class="sy0">=</span> _T<span class="br0">&#40;</span>“c<span class="sy0">:</span>\\xcalibur\\examples\\data\\steroids15.<span class="me1">raw</span>”<span class="br0">&#41;</span>; </div>
</li>
<li class="li1">
<div class="de1"><span class="kw4">long</span> nRet <span class="sy0">=</span> XRawfileCtrl.<span class="me1">Open</span><span class="br0">&#40;</span> szPathName <span class="br0">&#41;</span>; </div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span><span class="br0">&#40;</span> nRet <span class="sy0">!=</span> <span class="nu0">0</span> <span class="br0">&#41;</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="sy0">::</span><span class="me2">MessageBox</span><span class="br0">&#40;</span> <span class="kw2">NULL</span>, _T<span class="br0">&#40;</span>“Error opening file”<span class="br0">&#41;</span>, _T<span class="br0">&#40;</span>“Error”<span class="br0">&#41;</span>, MB_OK <span class="br0">&#41;</span>; </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &#8230;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
<p>XRawfileCtrl is used to call the Open() method. However, this and MSFileReader as &#8220;NAME&#8221; both fail (Invalid class string).</p>
<p>Found &#8216;<a href="http://blais.dfci.harvard.edu/index.php?id=63">multiplierz</a>&#8216; which seems to use MSFileReader to create mzAPI &#8211; which focusses on access to the actual data, rather than the metadata. The <a href="http://multiplierz.svn.sourceforge.net/viewvc/multiplierz/source/mzAPI/raw.py?revision=191&amp;view=markup">code</a> gives some good clues as to how to use the COM object. [doi:<a href="http://dx.doi.org/10.1186/1471-2105-10-364">10.1186/1471-2105-10-364</a>]</p>
<p><strong>MSFileReader.XRawfile</strong> is used as &#8220;NAME&#8221; in this code.</p>
<p>So:</p>
<div class="geshi no python">
<ol>
<li class="li1">
<div class="de1"><span class="sy0">&gt;&gt;&gt;</span> <span class="kw3">sys</span>.<span class="me1">path</span>.<span class="me1">append</span><span class="br0">&#40;</span><span class="st0">&#39;C:<span class="es0">\\</span>Python26<span class="es0">\\</span>Lib<span class="es0">\\</span>site-packages<span class="es0">\\</span>win32&#39;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="sy0">&gt;&gt;&gt;</span> <span class="kw3">sys</span>.<span class="me1">path</span>.<span class="me1">append</span><span class="br0">&#40;</span><span class="st0">&#39;C:<span class="es0">\\</span>Python26<span class="es0">\\</span>Lib<span class="es0">\\</span>site-packages<span class="es0">\\</span>win32<span class="es0">\\</span>lib&#39;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="sy0">&gt;&gt;&gt;</span> <span class="kw1">from</span> win32com.<span class="me1">client</span> <span class="kw1">import</span> Dispatch</div>
</li>
<li class="li1">
<div class="de1"><span class="sy0">&gt;&gt;&gt;</span> x = Dispatch<span class="br0">&#40;</span><span class="st0">&quot;MSFileReader.XRawfile&quot;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="sy0">&gt;&gt;&gt;</span> x.<span class="me1">Open</span><span class="br0">&#40;</span><span class="st0">&quot;C:<span class="es0">\\</span>Users<span class="es0">\\</span>path<span class="es0">\\</span>to<span class="es0">\\</span>file<span class="es0">\\</span>msfile.RAW&quot;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="sy0">&gt;&gt;&gt;</span></div>
</li>
</ol>
</div>
<p>To be continued&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/346/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
	</item>
		<item>
		<title>Telomerase &#8211; make your skin immortal!</title>
		<link>http://blog.fuzzierlogic.com/archives/342</link>
		<comments>http://blog.fuzzierlogic.com/archives/342#comments</comments>
		<pubDate>Wed, 31 Mar 2010 09:25:21 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[science]]></category>
		<category><![CDATA[badscience]]></category>
		<category><![CDATA[beauty]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/342</guid>
		<description><![CDATA[I know that the beauty industry has made a habit of twisting science somewhat for it&#8217;s own ends (see this and this for instance), but this one takes the biscuit. The wife spotted a piece in Harper&#8217;s Bazaar while she was in the hairdressers yesterday, about an amazing new beauty treatment (the article itself is [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">I know that the beauty industry has made a habit of twisting science somewhat for it&#8217;s own ends (see <a href="http://www.badscience.net/2007/05/410/">this</a> and <a href="http://www.badscience.net/2003/11/because-youre-worth-it/">this</a> for instance), but this one takes the biscuit.<br />
The wife spotted a piece in Harper&#8217;s Bazaar while she was in the hairdressers yesterday, about an amazing new beauty treatment (the article itself is hard to link to, but it&#8217;s number 3 in the list of &#8220;<a href="http://www.harpersbazaar.com/beauty/beauty-articles/skin-care-0310">9 Skin Secrets for Spring</a>&#8220;). Injections of telomerase for $1,500 a pop. Apparently it &#8216;stimulates resting stem cells&#8217;. Obviously the Harper&#8217;s piece has guff about it being Nobel-prize winning technology.</div>
<div class="posterous_autopost"></div>
<div class="posterous_autopost">Telomerase is an enzyme that amplifies DNA repeats at the ends of chromosomes, without this activity, the telomeres would get progressively shorter until the &#8220;Hayflick limit&#8221; is reached and the cell will stop dividing, or undergo programmed cell death (there&#8217;s a reasonable review of the role of telomerase here: <a href="http://www.jco.ascopubs.org/cgi/content/full/18/13/2626">http://www.jco.ascopubs.org/cgi/content/full/18/13/2626</a>).</div>
<div class="posterous_autopost"></div>
<div class="posterous_autopost">Now I&#8217;m no expert, but as far as I know, telomerase is turned off in normal somatic cells, and telomerase activity has been associated with up to 90% of cancers (even its <a href="http://en.wikipedia.org/wiki/Telomerase">Wikipedia entry</a> will tell me this much, a rather old paper with some concrete figures can be found here: <a href="http://dx.doi.org/%2010.1016/S0959-8049%2897%2900062-2">http://dx.doi.org/10.1016/S0959-8049(97)00062-2</a>). I&#8217;m not suggesting for a second that injecting telomerase will give you cancer (the overwhelming probability is it will do nothing at all), but this seems to be an amazing example of abusing science in the name of &#8216;beauty&#8217;.</div>
<div class="posterous_autopost">
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://sjcockell.posterous.com/telomerase-make-your-skin-immortal">Simon&#8217;s posterous</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/342/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
	</item>
		<item>
		<title>Stack Overflow, BioStar and &#8211; shock, horror &#8211; some code</title>
		<link>http://blog.fuzzierlogic.com/archives/339</link>
		<comments>http://blog.fuzzierlogic.com/archives/339#comments</comments>
		<pubDate>Fri, 12 Mar 2010 10:12:30 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/339</guid>
		<description><![CDATA[Stack Overflow reached critical mass a few months ago now. The site gets upwards of 6 million unique visitors a month. The chances are, if you write code, you know it exists, and you&#8217;ve received some sort of help there, whether directly or by proxy. In its wake, Stack Overflow has spawned Stack Exchange, a [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">
<p><a href="http://stackoverflow.com/" target="_blank">Stack Overflow</a> reached critical mass a few months ago now. The site gets upwards of 6 million unique visitors a month. The chances are, if you write code, you know it exists, and you&#8217;ve received some sort of help there, whether directly or by proxy. In its wake, Stack Overflow has spawned <a href="http://stackexchange.com/" target="_blank">Stack Exchange</a>, a question and answer platform that anyone can buy into, and set up a site. So there&#8217;s now Stack Overflow type sites for any <a href="http://mathoverflow.net/" target="_blank">number</a> <a href="http://paleohacks.com/" target="_blank">of</a> <a href="http://moms4mom.com/" target="_blank">topics</a>.</p>
<div>Amongst these sites, there have been a couple of attempts to set up science Stack Exchanges (<a href="http://asksci.com/" target="_blank">http://asksci.com/</a> &amp; <a href="http://science.stackexchange.com/" target="_blank">http://science.stackexchange.com/</a>), but to my mind, science as a whole is not specific enough, even biology is probably too broad an area for Stack Exchange to work as a platform. As a result questions are too hand-wavy, and communities have not really seemed to build. The key to Stack Overflow&#8217;s success is that it has very tightly defined boundaries, only questions about programming are accepted, anything else is removed for being off-topic. The site&#8217;s creators even set up more sites, <a href="http://superuser.com/" target="_blank">Super User</a>, and <a href="http://serverfault.com/" target="_blank">Server Fault</a>, to keep Stack Overflow on topic.</div>
<div>
<p>It seems, then, that bioinformatics is the perfect use case for Stack Exchange. A more narrow domain than science or biology, with an already web savvy community ready to coalesce around a useful focal point. Until recently, however, no one had made the site. Then a couple of weeks ago, <a href="http://biostar.stackexchange.com/" target="_blank">http://biostar.stackexchange.com/</a> started to get some attention on <a href="http://twitter.com/" target="_blank">Twitter</a> and <a href="http://friendfeed.com/" target="_blank">FriendFeed</a>. It&#8217;s early days, but the site has made a good start, some interesting questions, with some good, intelligent, answers. My main concerns would be:</p>
</div>
<ul>
<li>Not enough users, no critical mass achieved.
<ul>
<li>The site seems to be gaining some traction, and getting more active by the day.</li>
</ul>
</li>
<li>Not enough questions, no reason for users to keep coming back.
<ul>
<li> This does remain an area for concern, but is also starting to pick up a little.</li>
</ul>
</li>
<li>No financial backing, the site may disappear after the test period comes to an end.
<ul>
<li>Stack Exchange is not a cheap platform, and a site like this will need funding to continue. However, the administrator, <a href="http://www.personal.psu.edu/iua1/" target="_blank">Istvan Albert</a>, has insisted on the <a href="http://groups.google.com/group/biostar-central/" target="_blank">Google Group</a>, set up for &#8216;meta&#8217; discussion surrounding the site, that the site is funded for a year at least.</li>
</ul>
</li>
</ul>
<div></div>
<div>Finally, the real motivation for this post&#8230; A question on BioStar made me revisit some semi-abandoned code in order to post an answer, and I thought it was quite a nice snippet. About 15 lines of Python that utilises the UniProt ID Mapping service to automate protein ID conversion. I&#8217;ve stuck the code into a gist, and I thought I&#8217;d stick it up here too.</div>
<div></div>
<div><script src="http://gist.github.com/329730.js?file=uniprot_mapping.py"></script></div>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://sjcockell.posterous.com/stack-overflow-biostar-and-shock-horror-some">Simon&#8217;s posterous</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/339/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Impact factors, Colossus and the Wakefield retraction.</title>
		<link>http://blog.fuzzierlogic.com/archives/336</link>
		<comments>http://blog.fuzzierlogic.com/archives/336#comments</comments>
		<pubDate>Tue, 02 Feb 2010 21:19:28 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[MMR]]></category>
		<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/336</guid>
		<description><![CDATA[(Graphs from The Independent (London), 21 June 2008) Today was one of those days where lots of interesting stuff turns up. On the BBC, there was 2 very good pieces about the flaws in the scientific process, specifically closed peer review and impact factors. I also notice that the BBC are running a daily piece [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost"><img src="http://posterous.com/getfile/files.posterous.com/sjcockell/vexOYXAbLPhn6qo6DUiiOeMS2OcA4bYk8nX8ehdIANf187ZEPkYegUM00FRp/measles-graphs-2008.jpg" alt="" width="400" height="664" /></div>
<div class="posterous_autopost">(Graphs from The Independent (London), 21 June 2008)</div>
<div class="posterous_autopost">
<p>Today was one of those days where lots of interesting stuff turns up. On the BBC, there was 2 very good pieces about the flaws in the scientific process, specifically <a title="BBC News - Stem cell research held back by peer review?" href="http://news.bbc.co.uk/1/hi/sci/tech/8490291.stm" target="_blank">closed peer review</a> <a href="http://news.bbc.co.uk/1/hi/sci/tech/8490291.stm" target="_blank"></a>and <a title="BBC News - Impact Factors killing innovation" href="http://news.bbc.co.uk/1/hi/sci/tech/8490481.stm" target="_blank">impact factors</a>.</p>
<p>I also notice that the BBC are running a daily piece about the history of computing in the UK this week, parts <a title="History of Computing - Part 1" href="http://news.bbc.co.uk/1/hi/technology/8490464.stm" target="_blank">one</a> and <a title="History of Computing - Part 2" href="http://news.bbc.co.uk/1/hi/technology/8492762.stm" target="_blank">two</a> have already been published. Today&#8217;s article about Colossus is especially good.</p>
<p>Also, after last week&#8217;s excellent, and damning, judgement from the GMC -</p>
<p><object id="doc_141146900968520" style="outline: none;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="555" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="doc_141146900968520" /><param name="data" value="http://d1.scribdassets.com/ScribdViewer.swf" /><param name="wmode" value="opaque" /><param name="bgcolor" value="#ffffff" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="FlashVars" value="document_id=25983372&amp;access_key=key-27x5rsp0u15vnaecm7bq&amp;page=1&amp;viewMode=list" /><param name="src" value="http://d1.scribdassets.com/ScribdViewer.swf" /><embed id="doc_141146900968520" style="outline: none;" type="application/x-shockwave-flash" width="500" height="555" src="http://d1.scribdassets.com/ScribdViewer.swf" flashvars="document_id=25983372&amp;access_key=key-27x5rsp0u15vnaecm7bq&amp;page=1&amp;viewMode=list" allowscriptaccess="always" allowfullscreen="true" bgcolor="#ffffff" wmode="opaque" data="http://d1.scribdassets.com/ScribdViewer.swf" name="doc_141146900968520"></embed></object></p>
<p>- regarding Andrew Wakefield&#8217;s reprehensible behaviour in his research into the &#8216;link&#8217; between MMR and autism, today The Lancet finally pulled the paper in which his findings were published 12 years ago. Wakefield <em>et al</em> (1998) (<span>doi:<span>10.1016/S0140-6736(97)11096-0)</span></span> has now been retracted from the public record after the Lancet concluded that the claims made by the researchers were &#8216;false&#8217; (<a href="http://www.thelancet.com/journals/lancet/article/PIIS0140-6736%2810%2960175-7/fulltext" target="_blank">http://www.thelancet.com/journals/lancet/article/PIIS0140-6736%2810%2960175-7/fulltext</a> &#8211; apologies for paywall).</p>
<div></div>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://sjcockell.posterous.com/impact-factors-colossus-and-the-wakefield-ret">Simon&#8217;s posterous</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/336/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://posterous.com/getfile/files.posterous.com/sjcockell/vexOYXAbLPhn6qo6DUiiOeMS2OcA4bYk8nX8ehdIANf187ZEPkYegUM00FRp/measles-graphs-2008.jpg" />
		<media:content url="http://posterous.com/getfile/files.posterous.com/sjcockell/vexOYXAbLPhn6qo6DUiiOeMS2OcA4bYk8nX8ehdIANf187ZEPkYegUM00FRp/measles-graphs-2008.jpg" medium="image" />
	</item>
		<item>
		<title>Wildlife photographer stripped of award</title>
		<link>http://blog.fuzzierlogic.com/archives/333</link>
		<comments>http://blog.fuzzierlogic.com/archives/333#comments</comments>
		<pubDate>Thu, 21 Jan 2010 09:21:52 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/333</guid>
		<description><![CDATA[via news.bbc.co.uk The winner of the Wildlife Photographer of the Year award has been disqualified after judges ruled that the featured wolf was probably a &#8220;model&#8221;. It is tough to imagine how you would go about getting this photo of a wild animal. The story given by the photographer on winning the prize was reasonably [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">
<div class="posterous_bookmarklet_entry"><img src="http://posterous.com/getfile/files.posterous.com/sjcockell/xeBworDAvrsBCatHbrAwfaHryqxnCjEwtggsIebxFzlqGgHEzwBpxtCxDBJu/media_httpnewsimgbbcc_mdxIl.jpg.scaled500.jpg" alt="" width="466" height="260" /></p>
<div class="posterous_quote_citation">via <a href="http://news.bbc.co.uk/1/hi/sci/tech/8470962.stm">news.bbc.co.uk</a></div>
<blockquote><p>The winner of the Wildlife Photographer of the Year award has been disqualified after judges ruled that the featured wolf was probably a &#8220;model&#8221;.</p></blockquote>
<p>It is tough to imagine how you would go about getting this photo of a wild animal. The <a title="BBC News" href="http://news.bbc.co.uk/1/hi/8318226.stm" target="_blank">story given by the photographer</a> on winning the prize was reasonably convincing, however.</p>
</div>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via web</a> from <a href="http://sjcockell.posterous.com/bbc-news-wildlife-photographer-stripped-of-aw-1">Simon&#8217;s posterous</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/333/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://posterous.com/getfile/files.posterous.com/sjcockell/xeBworDAvrsBCatHbrAwfaHryqxnCjEwtggsIebxFzlqGgHEzwBpxtCxDBJu/media_httpnewsimgbbcc_mdxIl.jpg.scaled500.jpg" />
		<media:content url="http://posterous.com/getfile/files.posterous.com/sjcockell/xeBworDAvrsBCatHbrAwfaHryqxnCjEwtggsIebxFzlqGgHEzwBpxtCxDBJu/media_httpnewsimgbbcc_mdxIl.jpg.scaled500.jpg" medium="image" />
	</item>
		<item>
		<title>Summary of the BBSRC Systems Biology Grant Holders&#8217; Workshop 2010</title>
		<link>http://blog.fuzzierlogic.com/archives/322</link>
		<comments>http://blog.fuzzierlogic.com/archives/322#comments</comments>
		<pubDate>Thu, 14 Jan 2010 17:42:20 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[posterous]]></category>
		<category><![CDATA[systems-biology]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/322</guid>
		<description><![CDATA[You could be forgiven for thinking that this meeting was doomed from the outset, heavy snow across the UK making travel very difficult, even for those already in Edinburgh. Those of us in Newcastle just about managed to arrive on time, but there were plenty that didn&#8217;t. Despite this, a high proportion of posters still [...]]]></description>
			<content:encoded><![CDATA[<p>You could be forgiven for thinking that this meeting was doomed from the outset, heavy snow across the UK making travel very difficult, even for those already in Edinburgh. Those of us in Newcastle just about managed to arrive on time, but there were plenty that didn&#8217;t. Despite this, a high proportion of posters still made it, and all but one talk was delivered, though admittedly not by the intended speaker in all cases. Indeed, the first day was like an extended and cruel session of Powerpoint karaoke at one point, with people delivering talks having never seen the slides.</p>
<p>What emerged was a healthy picture of a vibrant systems biology community in the UK, although one tinged by an uncertainty lurking in the not too distant future. Talks from the Centres for Integrated Systems Biology (CISB) directors on the first afternoon gave a flavour of the kind of research being done, and more detailed talks over the following day and a half filled in the picture.<br />
<strong> </strong></p>
<p><strong><span style="text-decoration: underline;">Talks of note</span> </strong>(to me at least)<br />
I really enjoyed the keynote, from Peter Smith, of the University of Aberdeen. He is certainly doing systems biology, but not in the way most people first think of it. The &#8216;system&#8217; he is concerned with is not a cell, an organ, or even a whole organism &#8211; it&#8217;s a whole ecosystem, or sometimes maybe even larger than that. Systems biology on a continental scale. He painted a very interesting picture of how taking biological factors into account in warming models can make a real difference to predictions. There was also an interesting story of using ecological models to predict bioenergy crop yield, and how this can feed into efforts to introduce certain traits into plants, in order to increase their yields in desirable parts of the globe.</p>
<p>The MCISB talk was great, a really good example of how modelling and &#8216;omics technologies can dovetail really nicely in a properly integrated project. They&#8217;re studying metabolism in yeast, looking at metabolite flux and the reactions that best control it. Flux Balance Analysis, metabolomics, proteomics and &#8216;traditional&#8217; bioinformatics all combine nicely to illuminate different parts of the process, with data being deposited in many public repositories along the way.</p>
<p>The talk from the PRESTA project was also very impressive. Using <em>lots</em> of microarrays in interesting ways to investigate the stress response of <em>Arabadopsis</em> . Examining at more than just the changing expression of genes in isolation, but looking for patterns of genes that change together in interesting ways, in opposition, or a subset that react to the change in another subset, etc.</p>
<p>The BBSRC systems biology initiative is coming to an end. It was intended to kickstart large-scale systems biology research in the UK through a number of large grant awards, including the CISBs and the Systems Approach to Biological Research (SABR) projects. It was clear from some of the discussions at the workshop that some people are concerned that the winding up of these big grants, coupled with the looming shadow of considerable cuts, means that there is little future for the posse of systems biologists who have been produced over the last few years. &#8216;Too generalist&#8217; was the major complaint, suggesting that systems biologists are jacks of all trades but masters of none. I would disagree. Systems biologists are masters of systems biology (I know this sounds rather obvious, but bear with me). Traditional biologists tend to be scared by maths, and modelling, and don&#8217;t really know where it fits in with what they do. Mathematicians and computing scientists tend to not know anything about biology. There is a large cohort here that knows a great deal of both. Mathematicians who are biology literate, and biologists who aren&#8217;t afraid of mathematics and computers. These are skill sets to be prized, not shunned. Systems biology is a discipline in its own right now, and I would be shocked to discover that these researchers do not have a life beyond their Centres.</p>
<p>P.S. I took a poster along, as a part of my role on the Ondex project, it&#8217;s on SlideShare, and I&#8217;ve embedded it here.</p>
<div id="__ss_2833519" style="width: 477px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="An Ondex dataset for in silico drug discovery" href="http://www.slideshare.net/sjcockell/an-ondex-dataset-for-in-silico-drug-discovery">An Ondex dataset for in silico drug discovery</a><object style="margin:0px" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="477" height="510" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayerd.swf?doc=grantholders2010-100105094145-phpapp01&amp;stripped_title=an-ondex-dataset-for-in-silico-drug-discovery" /><param name="allowfullscreen" value="true" /><embed style="margin:0px" type="application/x-shockwave-flash" width="477" height="510" src="http://static.slidesharecdn.com/swf/ssplayerd.swf?doc=grantholders2010-100105094145-phpapp01&amp;stripped_title=an-ondex-dataset-for-in-silico-drug-discovery" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/sjcockell">Simon Cockell</a>.</div>
</div>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://sjcockell.posterous.com/summary-of-the-bbsrc-systems-biology-grant-ho">Simon&#8217;s posterous</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/322/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
	</item>
		<item>
		<title>5 Best Data Visualization Projects of the Year – 2009 &#124; FlowingData</title>
		<link>http://blog.fuzzierlogic.com/archives/317</link>
		<comments>http://blog.fuzzierlogic.com/archives/317#comments</comments>
		<pubDate>Wed, 16 Dec 2009 09:24:06 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[data-visualization]]></category>
		<category><![CDATA[posterous]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/317</guid>
		<description><![CDATA[via flowingdata.com The top visualization project of the year, according to FlowingData, is a project by Ben Fry, which shows changes to the theory of evolution over time. The project takes advantage of the publication of the full works of Darwin online to trace changes in the text of On the Origin of Species over [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_bookmarklet_entry"><a href="http://flowingdata.com/2009/12/16/5-best-data-visualization-projects-of-the-year-2009/"></a><a href="http://posterous.com/getfile/files.posterous.com/sjcockell/EjgzxkgpabdFowvsAggglefoAAnAruBufdCjdiBFiJFaHbJBmGzjfdcbxmsd/media_httpflowingdatacomwpcontentuploadsyapbcacheoriginofspecies1csswzj1b7cowokk40w4kc0cwo8td8r2s3w1cs4kksc4okksgg8thjpeg_jHpocplbcIypesf.jpeg.scaled1000.jpg"><img src="http://posterous.com/getfile/files.posterous.com/sjcockell/EjgzxkgpabdFowvsAggglefoAAnAruBufdCjdiBFiJFaHbJBmGzjfdcbxmsd/media_httpflowingdatacomwpcontentuploadsyapbcacheoriginofspecies1csswzj1b7cowokk40w4kc0cwo8td8r2s3w1cs4kksc4okksgg8thjpeg_jHpocplbcIypesf.jpeg.scaled500.jpg" alt="" width="500" height="267" /></a></p>
<div class="posterous_quote_citation"><span></p>
<p style="font-size: 10px;">via <a href="http://flowingdata.com/2009/12/16/5-best-data-visualization-projects-of-the-year-2009/">flowingdata.com</a></p>
<p></span></div>
<p>The top visualization project of the year, according to <a title="FlowingData" href="http://flowingdata.com" target="_blank">FlowingData</a>, is a project by Ben Fry, which shows changes to the theory of evolution over time. <a title="Ben Fry site" href="http://benfry.com/traces/ " target="_blank">The project </a>takes advantage of the publication of the <a title="Darwin Online" href="http://darwin-online.org.uk/" target="_blank">full works of Darwin</a> online to trace changes in the text of On the Origin of Species over time.<br />
A deserved winner, and very apt, considering the <a title="Darwin200" href="http://www.darwin200.org/ " target="_blank">batch</a> of <a title="Origin150" href="http://www.darwin150.com/" target="_blank">anniversaries</a> that have gone by this year.</div>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via web</a> from <a href="http://sjcockell.posterous.com/5-best-data-visualization-projects-of-the-yea-1">Simon&#8217;s posterous</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/317/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://posterous.com/getfile/files.posterous.com/sjcockell/EjgzxkgpabdFowvsAggglefoAAnAruBufdCjdiBFiJFaHbJBmGzjfdcbxmsd/media_httpflowingdatacomwpcontentuploadsyapbcacheoriginofspecies1csswzj1b7cowokk40w4kc0cwo8td8r2s3w1cs4kksc4okksgg8thjpeg_jHpocplbcIypesf.jpeg.scaled500.jpg" />
		<media:content url="http://posterous.com/getfile/files.posterous.com/sjcockell/EjgzxkgpabdFowvsAggglefoAAnAruBufdCjdiBFiJFaHbJBmGzjfdcbxmsd/media_httpflowingdatacomwpcontentuploadsyapbcacheoriginofspecies1csswzj1b7cowokk40w4kc0cwo8td8r2s3w1cs4kksc4okksgg8thjpeg_jHpocplbcIypesf.jpeg.scaled500.jpg" medium="image" />
	</item>
		<item>
		<title>A geeky selection of birthday books</title>
		<link>http://blog.fuzzierlogic.com/archives/316</link>
		<comments>http://blog.fuzzierlogic.com/archives/316#comments</comments>
		<pubDate>Mon, 14 Dec 2009 10:35:39 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/316</guid>
		<description><![CDATA[&#8220;Beautiful Data&#8221;, &#8220;Coders at Work&#8221; and &#8220;xkcd volume 0&#8243; Posted via web from Simon&#8217;s posterous]]></description>
			<content:encoded><![CDATA[<p><a href='http://posterous.com/getfile/files.posterous.com/sjcockell/slghrnkEfjgDIjJqCozkpaGwiaguojBGAElnjJiggBgtDqJyAHhhCEkljJma/IMG_0000.jpg.scaled1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/sjcockell/slghrnkEfjgDIjJqCozkpaGwiaguojBGAElnjJiggBgtDqJyAHhhCEkljJma/IMG_0000.jpg.scaled500.jpg" width="500" height="667"/></a> </p>
<p>&#8220;Beautiful Data&#8221;, &#8220;Coders at Work&#8221; and &#8220;xkcd volume 0&#8243;
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://sjcockell.posterous.com/a-geeky-selection-of-birthday-books">Simon&#8217;s posterous</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/316/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://posterous.com/getfile/files.posterous.com/sjcockell/slghrnkEfjgDIjJqCozkpaGwiaguojBGAElnjJiggBgtDqJyAHhhCEkljJma/IMG_0000.jpg.scaled500.jpg" />
		<media:content url="http://posterous.com/getfile/files.posterous.com/sjcockell/slghrnkEfjgDIjJqCozkpaGwiaguojBGAElnjJiggBgtDqJyAHhhCEkljJma/IMG_0000.jpg.scaled500.jpg" medium="image" />
	</item>
		<item>
		<title>Google Acquires AppJet &#8211; are there any live, functional alternatives to Etherpad?</title>
		<link>http://blog.fuzzierlogic.com/archives/307</link>
		<comments>http://blog.fuzzierlogic.com/archives/307#comments</comments>
		<pubDate>Fri, 04 Dec 2009 22:40:50 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[posterous]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/307</guid>
		<description><![CDATA[We are happy to announce that AppJet Inc. has been acquired by Google. The EtherPad team will continue its work on realtime collaboration by joining the Google Wave team. [...] The EtherPad site will stay online through March 2010 with some restrictions. [...] No new free public pads may be created. Your pads will no [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_bookmarklet_entry">
<blockquote>
<div><img class="alignleft" src="http://etherpad.com/static/img/wavejet.jpg" alt="" width="200" height="142" />We are happy to announce that AppJet Inc. has been acquired by Google.  The EtherPad team will continue its work on realtime collaboration by  joining the <a href="https://wave.google.com/wave/">Google Wave</a> team.</p>
<p>[...]</p>
<p>The EtherPad site will stay online through March 2010 with some  restrictions.</p>
<p>[...]</p>
<p><strong>No new  free public pads may be created.</strong> Your pads will no longer be accessible  after March 31, 2010, at which time your pads and any associated personally  identifiable information will be deleted.</p>
<p>[...]</p></div>
</blockquote>
<div class="posterous_quote_citation">via <a href="http://etherpad.com/ep/blog/posts/google-acquires-appjet">etherpad.com</a></div>
<div class="posterous_quote_citation"></div>
<p>Etherpad was a nice little tool, very effective at what it offered, I&#8217;m sure the guys who developed it will bring a lot to the Wave party. But seriously, Wave is nowhere near functional yet, it&#8217;s confusing, and glacially slow. So is there a decent alternative to Etherpad that is usable &#8211; right now?</p></div>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via web</a> from <a href="http://sjcockell.posterous.com/google-acquires-appjet-are-there-any-live-fun">Simon&#8217;s posterous</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/307/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://etherpad.com/static/img/wavejet.jpg" />
		<media:content url="http://etherpad.com/static/img/wavejet.jpg" medium="image" />
	</item>
		<item>
		<title>A test post</title>
		<link>http://blog.fuzzierlogic.com/archives/306</link>
		<comments>http://blog.fuzzierlogic.com/archives/306#comments</comments>
		<pubDate>Tue, 01 Dec 2009 22:39:02 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Tests]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/archives/306</guid>
		<description><![CDATA[I&#8217;ve been writing my blog for about 15 months now. In that time I&#8217;ve created a grand total of 33 posts. It&#8217;s mostly original content, and I don&#8217;t have much time for creating original content. I&#8217;ve been trying to think about ways of increasing my posting frequency, and there&#8217;s basically 2 things I can do [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been writing my <a href="http://blog.fuzzierlogic.com/">blog</a> for about 15 months now. In that time I&#8217;ve created a grand total of 33 posts. It&#8217;s mostly original content, and I don&#8217;t have much time for creating original content. I&#8217;ve been trying to think about ways of increasing my posting frequency, and there&#8217;s basically 2 things I can do &#8211; 1) find more time to generate content, or 2) post stuff that takes less time to generate.</p>
<p>Option 1 is basically an impossibility, given our current understanding of the laws of physics. That leaves option 2.</p>
<p>So I&#8217;m going to try cross-posting the content of my <a title="Posterous Main Site" href="http://www.posterous.com" target="_blank">Posterous</a> <a title="My Posterous" href="http://sjcockell.posterous.com/" target="_blank">blog</a> to my main site. I generate more posts at Posterous, mainly because it is recycled content, and the barrier to creating posts is so low, I just send an email, or use the bookmarklet that grabs content right from webpages.</p>
<p>Step 1 &#8211; stop auto-posting Posterous content to Friendfeed. I&#8217;ll let my blog propagate there, and not double-post.</p>
<p>Step 2 &#8211; enable XMLRPC posting on my WordPress site.</p>
<p>Step 3 &#8211; Turn on WordPress cross-posting on Posterous.</p>
<p>Step 4 &#8211; Write this post, and see if it propagates properly.</p>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via web</a> from <a href="http://sjcockell.posterous.com/a-test-post-36">Simon&#8217;s posterous</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/306/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
	</item>
	</channel>
</rss>
