w<?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 &#187; science</title>
	<atom:link href="http://blog.fuzzierlogic.com/archives/category/science/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.fuzzierlogic.com</link>
	<description>Logic. Just a bit woolier.</description>
	<lastBuildDate>Tue, 22 Nov 2011 09:21:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Graphing protein databases</title>
		<link>http://blog.fuzzierlogic.com/archives/425</link>
		<comments>http://blog.fuzzierlogic.com/archives/425#comments</comments>
		<pubDate>Thu, 11 Nov 2010 15:24:57 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[science]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Visualisation]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=425</guid>
		<description><![CDATA[<p>I&#8217;m giving a lecture next week to the Bioinformatics Masters students here about protein structure prediction. As part of the introduction to this topic, I have a traditional &#8216;data explosion&#8217; slide, to illustrate the gap between the quantity of protein sequence data available versus the number of solved protein structures in the PDB (hence the [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="425">
<p>I&#8217;m giving a lecture next week to the Bioinformatics Masters students here about protein structure prediction. As part of the introduction to this topic, I have a traditional &#8216;data explosion&#8217; slide, to illustrate the gap between the quantity of protein sequence data available versus the number of solved protein structures in the PDB (hence the need for bioinformatics to help fill the gap, by good prediction algorithms). When I last gave this talk (scarily, 4 years ago), this slide was just text, a description of the present size of UniProt &amp; the PDB.</p>
<p>Since 2006 my lecturing style has progressed somewhat, I don&#8217;t like to have slides with just words on anymore, so I wanted to replace this slide, rather than just updating the numbers. Graphs of the growing sizes of the databases are easy to find online, but to my mind the real story here is of the gap in the sizes of the 2 databases (UniProt &amp; PDB), and whether it is growing (or are protein structural determination methods catching up). This graph doesn&#8217;t (to my knowledge) exist, so, inspired by <a title="BioStar" href="http://biostar.stackexchange.com/questions/3029/locations-of-plots-of-quantities-of-publicly-available-biological-data" target="_blank">this question on BioStar</a> I set out to draw them.</p>
<p>The first task is to retrieve numbers from each of the databases of their size at particular dates. For the PDB this is simple, because they distribute a CSV file of this information. You can get it too, it&#8217;s <a title="PDB Stats" href="http://www.rcsb.org/pdb/statistics/contentGrowthChart.do?content=total" target="_blank">linked to here</a>. For UniProt, it was non-obvious where to find this information. Every time there&#8217;s a new release, the webpage documenting that release gives the size of UniProt at the point of release (and it&#8217;s components, SwissProt and TrEMBL), but it is hard to find these pages for any release that is not current. So my approach was to download the history of UniProt from their FTP server, and use BioPython to calculate the size of each release:</p>
<pre class="brush: python; title: ; notranslate">
import os
import sys
from Bio import SwissProt

def main():
    dirs = os.listdir(&quot;data&quot;)
    results = map(numbers, dirs)

def numbers(dir):
    directory = &quot;data/&quot;+dir
    h = open(directory+&quot;/reldate.txt&quot;)
    lines = h.readlines()
    h.close()
    date = lines[1].rstrip() #more processing required to return just date
    sh = open(directory+&quot;/uniprot_sprot.dat&quot;)
    descriptions = [record.accessions for record in SwissProt.parse(sh)]
    sprot_size = len(descriptions)
    sh.close()
    th = open(directory+&quot;/uniprot_trembl.dat&quot;) #and the same for trembl
    descriptions = [record.accessions for record in SwissProt.parse(th)]
    trembl_size = len(descriptions)
    th.close()
    return (date,sprot_size,trembl_size)
</pre>
<p>It was only once I was coming to the end of this process (slow, because we&#8217;re dealing with 16 releases of UniProt: 150GB of data) that I found <a href="http://www.expasy.org/sprot/relnotes/" target="_blank">this page</a>, which was fairly hidden away, but gives me the sizes of SwissProt from the last 25 years. Curses! So much effort seemingly gone to waste. However, there doesn&#8217;t appear to be a corresponding page for TrEMBL, which is much larger (being a conceptual translation of EMBL), and I wanted these numbers too, to illustrate the full scope of the problem. So my effort was not in vein.</p>
<p>Now that we have all the numbers in an appropriate format (DATE,DATABASE,SIZE), we can draw some graphs. For this I use the ggplot2 library and R, which seems to be de rigueur for pretty visualisations these days. Here&#8217;s some code:</p>
<pre class="brush: r; title: ; notranslate">
library(ggplot2)
pdb &lt;- read.table(&quot;/path/to/data/pdb.txt&quot;, sep=&quot;,&quot;)
colnames(pdb) = c(&quot;Year&quot;, &quot;Database&quot;, &quot;value&quot;)
pdb$Year &lt;- as.Date(pdb$Year)
png(&quot;/path/to/graphs/uniprot_graphs/pdb.png&quot;, bg=&quot;transparent&quot;, width=800, height=600)
qplot(Year, value, data=pdb, geom=&quot;line&quot;, color=I(&quot;red&quot;)) + scale_x_date(format=&quot;%Y&quot;) + scale_y_continuous(&quot;Entries&quot;, formatter=&quot;comma&quot;)
dev.off()

spdb &lt;- read.table(&quot;/path/to/data/sp_pdb.txt&quot;, sep=&quot;,&quot;)
colnames(spdb) = c(&quot;Year&quot;, &quot;Database&quot;, &quot;value&quot;)
spdb$Year &lt;- as.Date(spdb$Year)
png(&quot;/path/to/graphs/sp_pdb.png&quot;, bg=&quot;transparent&quot;, width=800, height=600)
qplot(Year, value, data=spdb, geom=&quot;line&quot;, group=Database, color=Database) + scale_x_date(format=&quot;%Y&quot;) + scale_y_continuous(&quot;Entries&quot;, formatter=&quot;comma&quot;)
dev.off()

all &lt;- read.table(&quot;/path/to/data/all.txt&quot;, sep=&quot;,&quot;)
colnames(all) = c(&quot;Year&quot;, &quot;Database&quot;, &quot;value&quot;)
all$Year &lt;- as.Date(all$Year)
png(&quot;/path/to/graphs/all.png&quot;, bg=&quot;transparent&quot;, width=800, height=600)
qplot(Year, value, data=all, geom=&quot;line&quot;, group=Database, color=Database) + scale_x_date(format=&quot;%Y&quot;) + scale_y_log10(&quot;Entries&quot;, breaks=c(10^4,10^5,10^6,10^7))
dev.off()
</pre>
<p>This very simple R produces 3 plots, all of which are informative in different ways.</p>
<p style="text-align: center;"><a href="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/pdb1.png"><img class="aligncenter size-full wp-image-439" title="PDB" src="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/pdb1.png" alt="PDB" width="560" height="420" /></a></p>
<p style="text-align: center;">
<p>Plot 1 is a simple restatment of the <a href="http://www.rcsb.org/pdb/statistics/contentGrowthChart.do?content=total" target="_blank">PDB graph</a>, which I produced just so all my graphs would look the same, it&#8217;s a pretty standard exponential curve (though admittedly the numbers are slightly smaller than the numbers you may be used to seeing on such plots).</p>
<p style="text-align: center;"><a href="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/sp_pdb1.png"><img class="aligncenter size-full wp-image-440" title="SwissProt vs PDB" src="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/sp_pdb1.png" alt="SwissProt vs PDB" width="560" height="420" /></a></p>
<p>Plot 2 compares the size of SwissProt with the size of the PDB. I&#8217;m extremely happy with this one, as it shows precisely what I wanted it to, SwissProt being much larger than the PDB, and marching away at an increasing rate. For the record, the most recent size of the PDB and SwissProt in the graph are 68,998 and 522,019 respectively (compared with when I last gave the protein structure lecture: 40,132 &amp; 241,365).</p>
<p style="text-align: center;"><a href="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/all1.png"><img class="aligncenter size-full wp-image-441" title="TrEMBL vs SwissProt vs PDB" src="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/all1.png" alt="TrEMBL vs SwissProt vs PDB" width="560" height="420" /></a></p>
<p>The final plot is just to scare people. It includes TrEMBL, and had to be plotted on a log10 scale, because TrEMBL is another order of magnitude larger than SwissProt (12,347,303 sequences).</p>
<p><strong>Addendum</strong> &#8211; further to all this, the problem of the gap between sequence and structure is actually more stark than presented here. Although the PDB today (11/11/10) contains 69,162 structures, they are highly redundant, and there are only 39,724 unique sequences of known structure.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 425 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/425/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/pdb1-150x150.png" />
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/pdb1.png" medium="image">
			<media:title type="html">PDB</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/pdb1-150x150.png" />
		</media:content>
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/sp_pdb1.png" medium="image">
			<media:title type="html">SwissProt vs PDB</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/sp_pdb1-150x150.png" />
		</media:content>
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/all1.png" medium="image">
			<media:title type="html">TrEMBL vs SwissProt vs PDB</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2010/11/all1-150x150.png" />
		</media:content>
	</item>
		<item>
		<title>While I was away&#8230;</title>
		<link>http://blog.fuzzierlogic.com/archives/385</link>
		<comments>http://blog.fuzzierlogic.com/archives/385#comments</comments>
		<pubDate>Fri, 24 Sep 2010 19:57:22 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Podcasts]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=385</guid>
		<description><![CDATA[<p><a href="http://www.flickr.com/photos/sjcockell/5020631385/"></a>I&#8217;ve just returned from a week away in North Yorkshire, and scanning through my RSS backlog and <a title="FriendFeed" href="http://friendfeed.com/" target="_blank">FriendFeed</a> from while I was away, I notice a few interesting developments.</p> <a href="http://www.zotero.org">Zotero</a> made a <a title="Zotero Everywhere" href="http://www.zotero.org/blog/zoteros-next-big-step/" target="_blank">firm announcement</a> of a standalone version of their excellent open-source reference management tool. I&#8217;ve been [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="385">
<p><a href="http://www.flickr.com/photos/sjcockell/5020631385/"><img class="alignnone" title="Whitby Abbey seen from harbour" src="http://farm5.static.flickr.com/4088/5020631385_e32d91e31e_b.jpg" alt="View of Whitby" width="540" /></a>I&#8217;ve just returned from a week away in North Yorkshire, and scanning through my RSS backlog and <a title="FriendFeed" href="http://friendfeed.com/" target="_blank">FriendFeed</a> from while I was away, I notice a few interesting developments.</p>
<ol>
<li><a href="http://www.zotero.org">Zotero</a> made a <a title="Zotero Everywhere" href="http://www.zotero.org/blog/zoteros-next-big-step/" target="_blank">firm announcement</a> of a standalone version of their excellent open-source reference management tool. I&#8217;ve been keen on Zotero for a while, but have moved away from FireFox as my browser lately (at present, Zotero is only available as a FireFox plugin). I&#8217;m looking forward to using it in earnest again, and trying to integrate it more fully into my workflow (which has been the main problem with other reference managers I&#8217;ve tried). No release date yet that I&#8217;ve found (sadly).</li>
<li><a title="Nodalpoint" href="http://nodalpoint.org/" target="_blank">Nodalpoint</a>, the bioinformatics blog of old, has been reincarnated as a podcast. I love podcasts, and listen to a whole bunch of them (to the point where I don&#8217;t have much of a chance to listen to music on my commute any more), but there&#8217;s not many around that are relevant to what I do with most of my time (apart from the excellent <a title="Coast to Coast Bio Podcast" href="http://www.c2cbio.com/" target="_blank">c2cbio podcast</a> of course). I&#8217;m really looking forward to listening to <a title="Nodalpoint episode one" href="http://www.nodalpoint.org/npconv_s0101_high.mp3" target="_blank">episode one</a>, and hope more follow in due course.</li>
<li>The people behind the &#8216;<a title="Sciebce is Vital" href="http://scienceisvital.org.uk/" target="_blank">Science is Vital</a>&#8216; lobby group, as well as organising a <a title="Attend" href="http://scienceisvital.org.uk/attend-the-demo/" target="_blank">public rally</a>, and a <a title="Lobby" href="http://scienceisvital.org.uk/lobby-parliament/" target="_blank">lobby of Parliament</a>, have set up a <a title="Sign" href="http://scienceisvital.org.uk/sign-the-petition/" target="_blank">petition</a>, I urge everyone (in the UK) to go and sign it. If we don&#8217;t try to protect science in some degree in the forthcoming round of spending cuts, no one else will.</li>
</ol>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 385 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/385/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.nodalpoint.org/npconv_s0101_high.mp3" length="49483974" type="audio/mpeg" />
	
		<media:thumbnail url="http://farm5.static.flickr.com/4088/5020631385_e32d91e31e_b.jpg" />
		<media:content url="http://farm5.static.flickr.com/4088/5020631385_e32d91e31e_b.jpg" medium="image">
			<media:title type="html">Whitby Abbey seen from harbour</media:title>
		</media:content>
	</item>
		<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[science]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=346</guid>
		<description><![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 [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="346">
<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>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 346 -->]]></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 <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 [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="342">
<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>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 342 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/342/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) <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 [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="336">
<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>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 336 -->]]></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>Defining absolute protein abundance</title>
		<link>http://blog.fuzzierlogic.com/archives/297</link>
		<comments>http://blog.fuzzierlogic.com/archives/297#comments</comments>
		<pubDate>Sat, 10 Oct 2009 16:44:41 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Research Blogging]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[proteomics]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=297</guid>
		<description><![CDATA[<p>At the heart of Systems Biology is a vast hunger for measurements. mRNA abundance, metabolite concentration, reactions rates, degradation rates, protein abundance. This last measurement has long been problematic for researchers, mass spectrometers get increasingly accurate and powerful, but are still hindered by the simple fact that observed signal intensity does not necessarily correlate directly with the [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="297">
<p>At the heart of Systems Biology is a vast hunger for measurements. mRNA abundance, metabolite concentration, reactions rates, degradation rates, protein abundance. This last measurement has long been problematic for researchers, mass spectrometers get increasingly accurate and powerful, but are still hindered by the simple fact that observed signal intensity does not necessarily correlate directly with the abundance of that peptide in the sample. Factors such as peptide ionisation efficiencies, dominant neighbour effects, and missing observations all give rise to erroneous estimates of peptide quantities. Until recently, the best way to get close to measures of protein abundance was to use a peptide tagging methodology, but these are typically expensive, and provide only relative quantification (useful for expression proteomics studies, less useful if you need to know the absolute levels of a protein for a Systems Biology study).</p>
<p>Recently, a three step method has been proposed for determining the absolute quantities of proteins in the cell, on a proteome scale. Step one is isoelectric focussing of tryptic digests of whole cell extracts. Step two, calculating the absolute abundance of a small group of proteins by Selective Reaction Monitoring (SRM). SRM uses spike in, isotopically labelled peptides of known concentration as references to calculate the actual abundance of peptides of interest. Finally, step three uses these abundances as reference points to calculate the abundance of all proteins in the sample, using the median intensities from the 3 most intense peptides for each protein.</p>
<div id="attachment_298" class="wp-caption alignright" style="width: 310px"><a href="http://commons.wikimedia.org/wiki/File:Leptospira_interrogans_strain_RGA_01.png"><img class="size-medium wp-image-298" title="Leptospira interrogans (Wikimedia Commons)" src="http://blog.fuzzierlogic.com/wp-content/uploads/2009/10/800px-Leptospira_interrogans_strain_RGA_01-300x198.png" alt="Leptospira interrogans (Wikimedia Commons)" width="300" height="198" /></a><p class="wp-caption-text">Leptospira interrogans (Wikimedia Commons)</p></div>
<p>Using this methodology, the abundances of &gt;50% of the proteome of a human parasite (<em>Leptospira interrogans</em>) have been determined to an accuracy of ~2-fold. These abundance measurements were confirmed by almost literally counting the number of flagellar proteins present in a cell by cryo-electron tomography.</p>
<p>Although current hardware probably limits this technique to a few thousand proteins, that is still a big step forward on what was previously possible. If whole proteome scale absolute abundance measurements become an achievable reality, maybe proteomics can finally take on microarrays as the dominant technique in the post genomics world.</p>
<p><span style="float: left; padding: 5px;"><a href="http://www.researchblogging.org"><img style="border:0;" src="http://www.researchblogging.org/public/citation_icons/rb2_large_gray.png" alt="ResearchBlogging.org" /></a></span><br />
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.jtitle=Nature&amp;rft_id=info%3Adoi%2F10.1038%2Fnature08184&amp;rfr_id=info%3Asid%2Fresearchblogging.org&amp;rft.atitle=Proteome-wide+cellular+protein+concentrations+of+the+human+pathogen+Leptospira+interrogans&amp;rft.issn=0028-0836&amp;rft.date=2009&amp;rft.volume=460&amp;rft.issue=7256&amp;rft.spage=762&amp;rft.epage=765&amp;rft.artnum=http%3A%2F%2Fwww.nature.com%2Fdoifinder%2F10.1038%2Fnature08184&amp;rft.au=Malmstr%C3%B6m%2C+J.&amp;rft.au=Beck%2C+M.&amp;rft.au=Schmidt%2C+A.&amp;rft.au=Lange%2C+V.&amp;rft.au=Deutsch%2C+E.&amp;rft.au=Aebersold%2C+R.&amp;rfe_dat=bpr3.included=1;bpr3.tags=Other%2Cbioinformatics%2C+proteomics%2C+systems+biology">Malmström, J., Beck, M., Schmidt, A., Lange, V., Deutsch, E., &amp; Aebersold, R. (2009). Proteome-wide cellular protein concentrations of the human pathogen Leptospira interrogans <span style="font-style: italic;">Nature, 460</span> (7256), 762-765 DOI: <a rev="review" href="http://dx.doi.org/10.1038/nature08184">10.1038/nature08184</a></span></p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 297 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/297/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/10/800px-Leptospira_interrogans_strain_RGA_01-150x150.png" />
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/10/800px-Leptospira_interrogans_strain_RGA_01.png" medium="image">
			<media:title type="html">Leptospira interrogans (Wikimedia Commons)</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/10/800px-Leptospira_interrogans_strain_RGA_01-150x150.png" />
		</media:content>
		<media:content url="http://www.researchblogging.org/public/citation_icons/rb2_large_gray.png" medium="image">
			<media:title type="html">ResearchBlogging.org</media:title>
		</media:content>
	</item>
		<item>
		<title>Nature Methods</title>
		<link>http://blog.fuzzierlogic.com/archives/213</link>
		<comments>http://blog.fuzzierlogic.com/archives/213#comments</comments>
		<pubDate>Mon, 18 May 2009 09:30:14 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[science]]></category>
		<category><![CDATA[freebie]]></category>
		<category><![CDATA[journal]]></category>
		<category><![CDATA[nature methods]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=213</guid>
		<description><![CDATA[<p><a href="http://blog.fuzzierlogic.com/wp-content/uploads/2009/05/homecover.gif"></a>I love my free <a title="Nature Mathods" href="http://www.nature.com/nmeth/index.html" target="_blank">Nature Methods</a> subscription. It allows me to get my hands on a paper journal, which I rarely get to do these days, and the content is actually pretty marvellous.</p> <p>This month there&#8217;s a <a title="doi:10.1038/nmeth.1318" href="http://www.nature.com/nmeth/journal/v6/n5/abs/nmeth.1318.html" target="_blank">new technique for enzymatic assembly of DNA molecules</a> from the [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="213">
<p><a href="http://blog.fuzzierlogic.com/wp-content/uploads/2009/05/homecover.gif"><img class="alignleft size-full wp-image-214" title="homecover" src="http://blog.fuzzierlogic.com/wp-content/uploads/2009/05/homecover.gif" alt="homecover" width="130" height="171" /></a>I love my <em>free </em><a title="Nature Mathods" href="http://www.nature.com/nmeth/index.html" target="_blank">Nature Methods</a> subscription. It allows me to get my hands on a paper journal, which I rarely get to do these days, and the content is actually pretty marvellous.</p>
<p>This month there&#8217;s a <a title="doi:10.1038/nmeth.1318" href="http://www.nature.com/nmeth/journal/v6/n5/abs/nmeth.1318.html" target="_blank">new technique for enzymatic assembly of DNA molecules</a> from the Venter Institute, a <a title="doi:10.1038/nmeth.1322" href="http://www.nature.com/nmeth/journal/v6/n5/abs/nmeth.1322.html" target="_blank">standardised methodology for proteomics sample preparation</a>, and a great technology feature from Nathan Blow about <a title="doi:10.1038/nmeth0509-389" href="http://www.nature.com/nmeth/journal/v6/n5/abs/nmeth0509-389.html" target="_blank">new proteomics techniques</a>, including surface plasmon resonance (about which I knew nothing before today). Not to mention cool pictures of <a title="doi:10.1038/nmeth0509-319" href="http://www.nature.com/nmeth/journal/v6/n5/full/nmeth0509-319.html" target="_blank">mice having light shone on their brains</a>.</p>
<p>You can still <a title="Apply for free subsctiption - Nature Methods" href="https://www.sunbeltfs.com/forms/nh/subscribe.asp?eid=D901NH" target="_blank">apply for a free subscription</a>, and if you are eligible to do so (individuals in North America               and Europe involved in research within the life sciences or               chemistry), I would urge you to.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 213 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/213/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/05/homecover-130x150.gif" />
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/05/homecover.gif" medium="image">
			<media:title type="html">homecover</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/05/homecover-130x150.gif" />
		</media:content>
	</item>
		<item>
		<title>Save the Scientist, Save the World?</title>
		<link>http://blog.fuzzierlogic.com/archives/101</link>
		<comments>http://blog.fuzzierlogic.com/archives/101#comments</comments>
		<pubDate>Mon, 09 Mar 2009 22:18:43 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[politics]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[doom]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=101</guid>
		<description><![CDATA[<p></p> <p><a title="Gordon Brown saves the world" href="http://www.youtube.com/watch?v=7iPaiylUYW0" target="_self">http://www.youtube.com/watch?v=7iPaiylUYW0</a></p> <p>Gordon Brown has already saved the world once, but it didn&#8217;t take. So the world needs another solution. i humbly suggest that the way to help save the economy, of Britain at least, is to invest heavily in Science and Technology. In the following I try [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="101">
<p><object width="425" height="344" data="http://www.youtube.com/v/7iPaiylUYW0&amp;rel=0&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/7iPaiylUYW0&amp;rel=0&amp;fs=1" /></object></p>
<p><a title="Gordon Brown saves the world" href="http://www.youtube.com/watch?v=7iPaiylUYW0" target="_self">http://www.youtube.com/watch?v=7iPaiylUYW0</a></p>
<p>Gordon Brown has already saved the world once, but it didn&#8217;t take. So the world needs another solution. i humbly suggest that the way to help save the economy, of Britain at least, is to invest heavily in Science and Technology. In the following I try to justify this as anything other than pure selfishness.</p>
<p>Science is very often one of the first casualties of government spending in a recession. This is because it is seen as a luxury, a good-time frippery that is difficult to justify when times are hard. The reverse should be true, science and technology investment are not disposable because they are the generators of future income, the basis of a future successful economy.</p>
<p>The economy of this country has, for a long time now, been based in the service sector. This keeps people employed, which drives the economy because employed people buy things. But we no longer produce anything of note, we don&#8217;t generate significant external input into our economy &#8211; except through the financial sector&#8230; and I think everyone knows what happened there by now. We reached a point where confidence amongst those employed in the service sector collapsed, so they stopped buying things, this means that the service sector looked to the financial sector for support, but the financial sector, to all intents and purposes, no longer existed, so the service sector began collapsing upon itself. This is self-perpetuating, it leads to job losses, which leads to less buying of things, which leads to further job losses&#8230; and so on. (I realise this is a gross simplification of the real situation, and not 100% accurate, but it is pretty close to the real thing, and makes my point).</p>
<p>The government has declared its intention to follow a <a title="Wikipedia - Keynesian Resurgence of 2008-2009" href="http://en.wikipedia.org/wiki/John_Maynard_Keynes#Economics:_The_Keynesian_Resurgence_of_2008.E2.80.932009">Keynesian approach</a> and spend its way out of recession, taking upon itself the responsibility of injecting the cash that the economy needs to rebuild itself. This is a well recognised approach, and has merit, the new investment has to come from somewhere, and no institution has the borrowing power of the government. However, we (as a nation) must be able to recover this investment at some future point. This means we have to create wealth that is not already in the system. We have to make something that the rest of the world wants to buy.</p>
<p>So, invest in science, engineering and technology. Reverse the decline in these disciplines, the unpopularity of Maths and Physics in the classroom, the hemorrhage of the talent we do have overseas. Make the product the rest of the world buy into our innovation. Funding research keeps the current generation of innovators employed (the selfish bit), and creates new opportunities for the next generation. And not just for those lucky enough to have the education to pursue this route. Infrastructure is needed to surround research. Newcastle University is one of the largest employers in the North East.</p>
<p>At this point I am clearly in danger of getting carried away, so it&#8217;s probably best to wrap up. Since I started writing this particular perma-draft, many things have happened. Gordon Brown spoke in congress, about the need to &#8216;<a title="Gordon Brown in Congress, transcript" href="http://www.timesonline.co.uk/tol/news/politics/article5846873.ece?token=null&amp;offset=48&amp;page=5" target="_blank">educate our way out of the downturn, invest and invent our way out of the downturn and re-tool and re-skill our way out of the downturn.</a>&#8216; The US <a title="BBC - Stimulus explained" href="http://news.bbc.co.uk/1/hi/business/7874407.stm" target="_blank">stimulus package</a> has promised vast investment in science and technology. And just today President Obama <a title="BBC News - Obama unfreezes Stem Cell research" href="http://news.bbc.co.uk/1/hi/world/americas/7929690.stm" target="_blank">unfroze research into Stem Cells in the US</a>. All of these are obviously good things, let&#8217;s hope the momentum can be maintained, and the doom merchants don&#8217;t win.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 101 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/101/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
	</item>
		<item>
		<title>Fixing Proteomics</title>
		<link>http://blog.fuzzierlogic.com/archives/158</link>
		<comments>http://blog.fuzzierlogic.com/archives/158#comments</comments>
		<pubDate>Mon, 02 Mar 2009 21:29:50 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[science]]></category>
		<category><![CDATA[data standards]]></category>
		<category><![CDATA[proteomics]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=158</guid>
		<description><![CDATA[<p><a href="http://fixingproteomics.org/"></a>I&#8217;ve only just discovered the Fixing Proteomics Campaign, thanks to <a title="FriendFeed" href="http://friendfeed.com/e/8e05480a-796f-4c2b-b728-d979fb39189c/4-steps-to-Fixing-Proteomics/" target="_blank">a post on FriendFeed</a>. It&#8217;s an initiative that I probably should have known about before, since it appears to originate, at least partly, from <a title="Nonlinear Dynamics" href="http://nonlinear.com/" target="_blank">Nonlinear Dynamics</a>, a Newcastle based proteomics informatics company. The campaign is also dedicated [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="158">
<p><a href="http://fixingproteomics.org/"><img class="alignleft size-full wp-image-159" style="border: 0pt none;" title="Fixing Proteomics" src="http://blog.fuzzierlogic.com/wp-content/uploads/2009/03/wesupport.gif" alt="Fixing Proteomics" width="200" height="63" /></a>I&#8217;ve only just discovered the Fixing Proteomics Campaign, thanks to <a title="FriendFeed" href="http://friendfeed.com/e/8e05480a-796f-4c2b-b728-d979fb39189c/4-steps-to-Fixing-Proteomics/" target="_blank">a post on FriendFeed</a>. It&#8217;s an initiative that I probably should have known about before, since it appears to originate, at least partly, from <a title="Nonlinear Dynamics" href="http://nonlinear.com/" target="_blank">Nonlinear Dynamics</a>, a Newcastle based proteomics informatics company. The campaign is also dedicated to a message I have been trying to spread among the researchers I interact with during my work: experiments must be robustly designed, and an unreproducible experimental result is meaningless.</p>
<p>The website for the campaign contains some useful resources for spreading this message, most effective are <a title="Analogies" href="http://fixingproteomics.org/analogies/cow.asp" target="_blank">the analogies</a> that illustrate the most common experimental design techniques, and the <a title="4-Steps" href="http://fixingproteomics.org/advice/4steps.asp" target="_blank">4-step guide</a> for Fixing Proteomics (the subject of the FF link, above). I have used something akin to the analogies in lectures I have given about experimental design (indeed I have used the apocryphal &#8216;Fahrenheit and the Cow&#8217; story itself), and I will certainly be using the 4-steps in the future, and referencing the Fixing Proteomics website too.</p>
<p>Just one note: as <a title="peanutbutter - Frank's blog" href="http://peanutbutter.wordpress.com" target="_blank">Frank</a> points out in the FriendFeed thread, the <a title="PSI" href="http://www.psidev.info" target="_blank">PSI</a> could be highlighted a little more. Proteomics experiments would not be reproducible at all, particularly cross-site, without the efforts made by the standards community. As <a title="PSIDev - AnalysisXML" href="http://www.psidev.info/index.php?q=node/403" target="_blank">AnalysisXML enters its public comment phase</a>, it is worth remembering the contribution they have made to opening up data formats and making data and metadata available in a non-proprietry way.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 158 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/158/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/03/wesupport-150x63.gif" />
		<media:content url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/03/wesupport.gif" medium="image">
			<media:title type="html">Fixing Proteomics</media:title>
			<media:thumbnail url="http://blog.fuzzierlogic.com/wp-content/uploads/2009/03/wesupport-150x63.gif" />
		</media:content>
	</item>
		<item>
		<title>Blog for Darwin</title>
		<link>http://blog.fuzzierlogic.com/archives/136</link>
		<comments>http://blog.fuzzierlogic.com/archives/136#comments</comments>
		<pubDate>Thu, 12 Feb 2009 09:26:16 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Darwin]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[blogswarm]]></category>

		<guid isPermaLink="false">http://blog.fuzzierlogic.com/?p=136</guid>
		<description><![CDATA[<p><a href="http://citizenship.typepad.com/blogfordarwin"></a>This post forms part of the &#8216;Blog for Darwin&#8217; blog carnival. </p> <p>I wasn&#8217;t going to write this post. I am very much of the opinion that holding up one man as a figurehead for an entire science is a mistake, and sets up too many straw-man arguments for detractors to propound (of the [...]]]></description>
			<content:encoded><![CDATA[<div class="kcite-section" kcite-section-id="136">
<p><a href="http://citizenship.typepad.com/blogfordarwin"><img class="alignleft" title="Blog For Darwin" src="http://citizenship.typepad.com/blogfordarwin/DarwinBadge.gif" alt="" width="135" height="149" /></a><em>This post forms part of the &#8216;Blog for Darwin&#8217; blog carnival. </em></p>
<p>I wasn&#8217;t going to write this post. I am very much of the opinion that holding up one man as a figurehead for an entire science is a mistake, and sets up too many straw-man arguments for detractors to propound (of the nature of: x was mistaken, so his theory y must also be wrong). Darwin lived in the 19th century, limited by the 19th century&#8217;s knowledge of science. A period where &#8216;Biology&#8217; as a science didn&#8217;t really exist. Of course he was wrong about some stuff, and by equating Evolution with Darwinism, we give the denialists a stick with which to beat us (and this also leads to misleading and pernicious headlines like <a title="'Darwin was wrong'" href="http://www.newscientist.com/article/mg20126921.600-why-darwin-was-wrong-about-the-tree-of-life.html" target="_blank">that in the New Scientist</a> a couple of weeks ago). I &#8216;believe&#8217; in the theory of gravity (as supported by the weight (ho ho) of evidence), that doesn&#8217;t make me a Newtonist.</p>
<p>There is no doubting that evolution is more than just Darwin, and that the Darwinian view of evolution probably doesn&#8217;t totally hold water any more, but that is hardly a surprise. It is 150 years old (in its published form). So, much as I admire his achievements, I wasn&#8217;t totally behind the idea of &#8216;Darwin Day&#8217;. Grist to the mill of creationists who see Darwin as the sole pedestal for the Theory of Evolution.</p>
<p>But then you see the <a title="Coffee hallucinations" href="http://www.telegraph.co.uk/scienceandtechnology/science/sciencenews/4227673/Three-cups-of-brewed-coffee-a-day-triples-risk-of-hallucinations.html" target="_blank">amount</a> of <a title="Most depressing day of the year" href="http://www.thesun.co.uk/sol/homepage/features/article2145314.ece" target="_blank">pseudoscience</a> that <a title="Bloody MMR anecdotes" href="http://www.dailymail.co.uk/health/article-1126035/Six-months-MMR-jab--bubbly-little-girl-struggles-speak-walk-feed-herself.html" target="_blank">persists </a>in the mainstream media, and results of surveys like <a title="Guardian report - evolution survey" href="http://www.guardian.co.uk/science/2009/feb/01/evolution-darwin-survey-creationism" target="_blank">this one</a>, which suggests that around 10% of Britons believe the earth was created by a supernatural being sometime in the last 10,000 years, and you think: &#8216;Why should I be churlish about something which is basically pro-science, and is getting a shed-load of <a title="BBC Darwin site" href="http://www.bbc.co.uk/darwin/" target="_blank">high quality</a>, high profile coverage?&#8217;. So, yes, if I can increase the positive noise surrounding February 12th 2009, I will. I will shout about Darwin from the rooftops if it gets something close to actual science in the news pages for a change.</p>
<p>For the rest of this year, this is where the battle will be fought. The hearts and minds of the anti-science luddites must be won over by the elegance and wonder of a beautiful theory, arrived at by a brilliant man who spent many years of his life in painstaking examination of the many glorious wonders of the natural world, and slowly formulating a way in which they were all connected. He truly changed our understanding of the world. Let us celebrate that fact.</p>
<p>Just don&#8217;t call me a Darwinist.</p>
<!-- kcite active, but no citations found -->
</div> <!-- kcite-section 136 -->]]></content:encoded>
			<wfw:commentRss>http://blog.fuzzierlogic.com/archives/136/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:thumbnail url="http://citizenship.typepad.com/blogfordarwin/DarwinBadge.gif" />
		<media:content url="http://citizenship.typepad.com/blogfordarwin/DarwinBadge.gif" medium="image">
			<media:title type="html">Blog For Darwin</media:title>
		</media:content>
	</item>
	</channel>
</rss>

