<?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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>
<channel>
	<title>Your bones got a little machine &#187; synthetic biology</title>
	<atom:link href="http://blog.pansapiens.com/category/synthetic-biology/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pansapiens.com</link>
	<description>Ideas are cheap, implementation is expensive; act accordingly.</description>
	<lastBuildDate>Sat, 28 Jan 2012 03:00:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<creativeCommons:license>http://creativecommons.org/publicdomain/zero/1.0/</creativeCommons:license>
		<item>
		<title>A mobile interface to the Registry of Standard Biological Parts</title>
		<link>http://blog.pansapiens.com/2010/10/24/a-mobile-interface-to-the-registry-of-standard-biological-parts/</link>
		<comments>http://blog.pansapiens.com/2010/10/24/a-mobile-interface-to-the-registry-of-standard-biological-parts/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 08:37:47 +0000</pubDate>
		<dc:creator>Andrew Perry</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[synthetic biology]]></category>
		<category><![CDATA[app engine]]></category>
		<category><![CDATA[gae]]></category>
		<category><![CDATA[Google App Engine]]></category>
		<category><![CDATA[igem]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[jQTouch]]></category>
		<category><![CDATA[mobile]]></category>
		<guid isPermaLink="false">http://blog.pansapiens.com/?p=241</guid>
		<description><![CDATA[Recently I developed a simple mobile interface to the Registry of Standard Biological Parts &#8211; the database that is currently the focal point for parts-based synthetic biology. I&#8217;ve called this mobile interface mPartsRegistry and I thought it would be worth outlining it&#8217;s features and sharing some notes about the project, in case someone else finds [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I developed a simple mobile interface to the <a href="http://partsregistry.org/">Registry of Standard Biological Parts</a> &#8211; the database that is currently the focal point for parts-based synthetic biology. I&#8217;ve called this mobile interface <a href="http://mpartsregistry.appspot.com/">mPartsRegistry</a> and I thought it would be worth outlining it&#8217;s features and sharing some notes about the project, in case someone else finds it useful.</p>
<p><a href="http://mpartsregistry.appspot.com/">mPartsRegistry</a> is a simple interface to the Registry of Standard Biological Parts aimed at mobile smartphone browsers. It&#8217;s powered by the <a href="http://partsregistry.org/Registry_API">Parts Registry API</a>, which provides a simple RESTful interface to key metadata about parts in the database. It features:</p>
<ul>
<li>. A simple interface tailored for mobile WebKit browsers (Android browser, mobile Safari, probably others). Web-based, zero-installation required.</li>
<li>. Basic search of the Registry by part name.</li>
<li>. &#8220;Favorite parts&#8221; to locally bookmark parts on your device.</li>
<li>. Provides basic metadata associated with parts, including size, description, authors, DNA sequence, categories and availability.</li>
<li>. Freely available and recyclable source code, released under the MIT License (<a href="http://github.com/pansapiens/mPartsRegistry">fork it on GitHub</a>).</li>
</ul>
<p><img class="alignleft" style="border: 2px solid black;" src="http://mpartsregistry.appspot.com/img/screenshot1.png" alt="" width="224" height="336" /></p>
<p>The idea for a mobile interface to the Registry came out of a moment in the wet lab, where I was supervising the Monash iGEM team, and someone asked &#8220;How many basepairs is that part again ?&#8221;. I&#8217;ve found most ideas for smartphone apps in the lab a little contrived; nothing more than an excuse to jump on the Android or iOS app bandwagon, with limited practical utility. This was a situation where I could genuinely see a use for a simple mobile interface to look up some reference information, so I thought I&#8217;d create it.</p>
<p>The goal is not to completely replicate the functionality of the Registry (at this stage the API would not allow that anyhow), but to provide simple mobile-friendly interface to quickly look up important data about a Biobrick(tm) parts in a laboratory setting, where accessing a desktop computer is often less convenient. In this context, you generally know the part name (eg B0034) that is written on a tube, but would like to quickly lookup some details.</p>
<p>The project consists of two main parts: the web frontend, build using <a href="http://jqtouch.com/">jQTouch</a> and Django templates hosted on <a href="http://code.google.com/appengine/">Google App Engine</a>, and the parser backend (<em>partsregistry.py</em>) that deals with directly querying the Registry API.</p>
<p><img class="alignright" style="border: 2px solid black;" src="http://mpartsregistry.appspot.com/img/screenshot2.png" alt="" width="224" height="336" /></p>
<p>The application uses <a href="http://www.crummy.com/software/BeautifulSoup/">BeautifulSoup</a> on the server side to parse the XML served by the Registry&#8217;s API. This parser may be useful as a generic Python interface to the Registry API for other projects, although it is not yet feature complete. Why parse the XML on the server rather than the client ? The Registry API does not offer JSONP callbacks, making direct client-to-API queries by a web app served from another domain tricky (Same Origin Policy, yadda yadda). While this <em>probably</em> could have been done in straight clientside Javascript if I&#8217;d used some type of cross-domain AJAX hack, parsing on the server side also opens the possibility in the future to &#8216;value-add&#8217; to the data in some way, potentially incorporating extra data not served directly by the Registry API, before it&#8217;s sent to the client.</p>
<p>Google App Engine works as a cheap hosting solution for a low traffic app like this, which is likely to stay within the free quotas. Also, GAE supports Python, and I like Python. <a href="http://jqtouch.com/">jQTouch</a> makes for a reasonable cross-platform mobile web interface, since it is optimized for WebKit-based browsers. While officially jQTouch supports iPhone/iPod Touch and doesn&#8217;t have official Android support, in my hands it works well enough on Android (and in fact displayed some minor bugs on Mobile Safari that were not evident on Android). Typically when using jQTouch you are expected to load multiple &#8216;pages&#8217; all into several div-sections, lumped into a single HTML document. jQTouch then does the Javascript+CSS magic to render fast page switching, which actually working within a single HTML document. Since the main action of this app is to &#8216;search&#8217;, we don&#8217;t yet know what the results page will be, so this nice feature of jQTouch is barely used.</p>
<p>Searching for the same part all the time can get annoying, so mPartsRegistry provides a simple &#8216;bookmarking&#8217; feature where a list of favorite parts can be managed and stored on the device. This is implemented via HTML5 localStorage &#8211; if there was demand then this could easily be turned into server side storage, but I doubt it&#8217;s necessary. In the future, it might make sense to pre-cache the metadata for any of these &#8220;favorite parts&#8221; so that the fast page switching features in jQTouch can be used to full advantage.</p>
<p>Currently, the interface does not show information about sequence features, subparts and twins, however I plan to implement these at some point. The Registry API currently does not provide information about samples, literature references or lab groups, but once these are enabled I plan to support this metadata within mPartsRegistry too.</p>
<p>Okay, that&#8217;s all kids .. and remember .. take off your gloves before using your smartphone in the lab !</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pansapiens.com/2010/10/24/a-mobile-interface-to-the-registry-of-standard-biological-parts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/publicdomain/zero/1.0/</creativeCommons:license>
	</item>
		<item>
		<title>Synthetic Biology 4.0 : highlights and reflections</title>
		<link>http://blog.pansapiens.com/2008/10/30/synthetic-biology-40-highlights-and-reflections/</link>
		<comments>http://blog.pansapiens.com/2008/10/30/synthetic-biology-40-highlights-and-reflections/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 03:55:46 +0000</pubDate>
		<dc:creator>Andrew Perry</dc:creator>
				<category><![CDATA[meetings]]></category>
		<category><![CDATA[synthetic biology]]></category>
		<guid isPermaLink="false">http://blog.pansapiens.com/?p=84</guid>
		<description><![CDATA[Update: The videos of the talks from Synthetic Biology 4.0 are here ! Around three weeks ago I attended the Synthetic Biology 4.0 meeting in Hong Kong, hosted by the Hong Kong University of Science and Technology. I&#8217;ve taken a little time to allow all the new and exciting ideas to sink in. I really [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>Update:</strong> The <a href="http://www.youtube.com/user/BioBricksFoundation">videos of the talks from Synthetic Biology 4.0 are here</a> !</em></p>
<p>Around three weeks ago I attended the <a href="http://sb4.biobricks.org/">Synthetic Biology 4.0 meeting</a> in Hong Kong, hosted by the Hong Kong University of Science and Technology. I&#8217;ve taken a little time to allow all the new and exciting ideas to sink in. I really enjoyed the meeting, and while it was a little short it was an effective way to quickly sample the current developments in synthetic biology, as it stands.</p>
<p><span id="more-84"></span></p>
<h3>Some highlights</h3>
<p>Here are some summaries on a few highlight presentations. Due to parallel sessions, I couldn&#8217;t see every talk; luckily I&#8217;ll be able to catch up on those I missed once the videos appear online.</p>
<p><strong>Clyde Hutchison (J. Craig Venter Institute)</strong>, spoke about genome construction, specifically about rebuilding the minimal genome on <a href="http://en.wikipedia.org/wiki/Mycoplasma_genitalium"><em>Mycoplasma genitalium</em></a> by synthesis of large fragments and subsequent stepwise assembly. This is probably not brand new work, but it was the first time I&#8217;d seen it presented. Turns out they could fully assemble the genome into a yeast vector from 25 large fragments using a &#8216;shot-gun&#8217; approach with subsequent PCR screening to identify the correctly assembled construct.</p>
<p><strong>Christopher Voight (UCSF) (and a poster presentation by Travis Bayer <em>et al</em>): Bio-MeX: A Novel Route from Biomass to Gasoline and Petrochemicals. </strong>Chris spoke about the work his lab is doing on producing methyl halides in <em>E. coli</em> and yeast. Methyl halides are a common feedstock in the petrochemical industry for producing many other organic chemicals, so a non-fossil fuel source will be useful in the future. I&#8217;ve always been a little skeptical about ocean metagenomic studies that sell themselves as the solution to the worlds energy problems, based on the notion that an amazing new enzyme will be discovered in marine bacteria. Well, this work coming out of Chris&#8217; lab could prove me wrong &#8230; after screening 89 putative homologs of a methyl halide transferases from the various kingdoms of life (most annotated &#8216;methyl transferase&#8217; in sequence database), the best one turned out the be from an &#8220;uncultured marine bacteria&#8221;, discovered by the Sargasso Sea Sequencing Project.</p>
<p><strong>Eric Winfree (CalTech) </strong>spoke about his experiments with DNA tile-based crystals, as a potential model system for pre-biotic life. Crystal growth, breakage and regrowth models replication, the tiled &#8216;layers&#8217; of different crystal variants form the genome. Don&#8217;t be mislead and assume that Eric is proposing that DNA of this nature was actually around in the primordial soup &#8230; it&#8217;s simply being used as a well understood system enabling specific molecular complementarity and template based replication (with errors); in theory this type of system could be built using any &#8216;crystal&#8217; with similar properties.</p>
<p><strong>Jay Keasling (UC Berkley, LBNL): Fuel and Drug Production:</strong> Jay gave some facts and figures about biofuel production from the metabolically engineered organisms which are ultimately being commercialised at Amyris. It was noted in the opening slides of several talks at this conference: Ethanol is not considered a very good gasoline replacement (lower energy density, too hydroscopic for existing pipeline infrastructure, high octane rating) when compared with n-butanol (higher energy density, less hydroscopic, controlled volitility, similar octane rating to gasoline). Watch the video for some well handled but potentially hairy questions about the source of feedstocks for biofuels production. On the science-side, Jay showed some interesting results from studies testing the effect of scaffolds for co-localising enzymes in a biosynthetic pathway of interest (as fusion proteins to PDZ, SH3 etc domains). After screening a library of scaffolds that would arrange different numbers of enzymes in different orders, one specific arrangment (&#8220;A-B-B-C-C&#8221;) worked better than other variations. No rational explaination, but interesting nonetheless.</p>
<p><strong>Patrick Boyle <em>et al</em> from Pamela Silvers lab:Â  (poster presentation, </strong><em><strong>The Synthetic Hydrogenosome: Subcellular Engineering for Biohydrogen production</strong></em><strong>):</strong> showed how he was engineering yeast mitochondria for hydrogen production by introducing components of the pathway responsible from <a href="http://en.wikipedia.org/wiki/Hydrogenosome">hydrogenosomes</a>. This work caught my interest since for the past few years I&#8217;ve worked on aspects of protein import into mitochondria and related organelles (including a little bit of collaborative work on hydrogenosomes recently). Early versions of the engineered strain were producing small amounts of hydrogen compared with wildtype yeast &#8230; it will be interesting to see how far this can be optimized in the future (I don&#8217;t expect it to fuel a hydrogen economy anytime soon, but it&#8217;s early days).</p>
<p><strong>Priscilla Purnick (Yale)</strong> spoke about her work helping engineer embryonic stem cells with genetic circuits to precisely control proliferation, differentiation and cell death, with the ultimate goal of treating Type I Diabetes with self-regulating beta-like insulin secreting cells. I couldn&#8217;t do justice to the technical details in a short summary here, needless to say it&#8217;s complex and impressive looking work. This was a spin off project from the Princeton iGEM team using many &#8216;off the shelf&#8217; <a href="http://partsregistry.org/Main_Page">BioBricks</a>(tm). While still in the early stages, the talk showed a nice mix of systems biology style modeling and hard experimental data.</p>
<p>I sat in on an open discussion session, entitled <strong>Legal Schemes and Rights</strong>. The key point that surprised me here was how little had actually been figured out surrounding the &#8216;intellectual property&#8217; law of sharing, modifying, combining and (potentially) commercializing individual BioBrick[tm]-style parts, and devices built with such parts. I&#8217;d been under the delusion that the legal side was figured out early on, and that BioBrick parts were shared under some sort of MIT-like or BSD-like license. This is apparently not the case. Various possible legal frameworks were outlined, but I think the most insightful advice I heard was something to the effect of (paraphrased) .. <em>&#8220;Don&#8217;t sit around treating this like an interesting academic problem .. pretty soon (~12 months ?) community norms for licensing parts will emerge by necessity and under the force of commercial interests, not by careful or considered design, and if you haven&#8217;t worked to establish things in the way that is best for proliferation of the technology and all stakeholders, it will be too late to change course. We have seen this has happen in other industries, it will happen here too&#8221;</em>. Watch the videos once they appear if you want the correct quote, I can&#8217;t remember who said it now <img src='http://blog.pansapiens.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve half written a &#8220;part 2&#8243; to this post, outlining some ideas on the current state of Synthetic Biology as a field &#8230; but I&#8217;ll probably never publish it since it&#8217;s mostly just me organizing my slightly opinionated thoughts out loud. The summary is: there is currently a lot of excitement, potentially a little hype (see <a href="http://en.wikipedia.org/wiki/Technology_hype">Gartner&#8217;s hype cycle</a>, pick where you think Synthetic Biology currently sits on the curve). It will be interesting how this pans out, particularly if expectations have been unrealistically inflated. There has also been a bit of <a href="http://blog.openwetware.org/freegenes/2008/04/13/synthetic-biology-rant-link/">quibbling</a> over the <a href="http://blog-msb.embo.org/blog/2008/03/synthetic_biology_nsabb_and_cr.html#comment-1651">definition of Synthetic Biology</a>; those engineers that have forged the field are probably pretty bored of the old &#8216;definition debate&#8217; by now, but many biologists still don&#8217;t really know what Synthetic Biology is. Based on discussions I&#8217;ve had with colleagues about the conference content upon returning, the average molecular biologist doesn&#8217;t always see how Synthetic Biology is very different to what various bioscientists have been doing under the banner of Biotechnology for many years. My simplest explaination is that the underlying technologies are essentially the same, but the approach, the application of <em>formal engineering principles</em> and their use in a rational way to create useful &#8216;devices&#8217;, is different from past practices that have largely focused on discovering new knowledge about biological systems with many useful technologies arising in a more &#8216;undirected&#8217; and opportunistic fashion. It&#8217;s great to be living in a time when the foundational knowledge in biology, built on decades (centuries?) of basic research, are slowly beginning to come to fruition in rationally designed technologies.</p>
<p>For another perspective, and little more on the buzz outside of the formal presentations, see <a href="http://88proof.com/synthetic_biology/blog/archives/tag/sb40"><span class="entry-author author vcard"><span class="url fn n">Jonathan Cline</span></span>s &#8220;Word on the Street @ SB 4.0&#8243; posts</a>.<abbr class="published posted_date" title="2008-10-12T07:04:30-06:00" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pansapiens.com/2008/10/30/synthetic-biology-40-highlights-and-reflections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/publicdomain/zero/1.0/</creativeCommons:license>
	</item>
		<item>
		<title>Synthetic biology 4.0: reflections on the state of play</title>
		<link>http://blog.pansapiens.com/2008/10/16/synthetic-biology-4-0-reflections-on-the-state-of-play/</link>
		<comments>http://blog.pansapiens.com/2008/10/16/synthetic-biology-4-0-reflections-on-the-state-of-play/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 06:35:36 +0000</pubDate>
		<dc:creator>Andrew Perry</dc:creator>
				<category><![CDATA[meetings]]></category>
		<category><![CDATA[synthetic biology]]></category>
		<guid isPermaLink="false">http://blog.pansapiens.com/?p=86</guid>
		<description><![CDATA[Note to the reader: I wrote most of this in October 2008, then revised it a little in January 2010. It never really turned into the insightful and coherent essay I envisioned, but I&#8217;ve decided to publish it here anyhow, for posterity. Some opinion, analysis This is a blog, so a post like this wouldn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Note to the reader: I wrote most of this in October 2008, then revised it a little in January 2010. It never really turned into the insightful and coherent essay I envisioned, but I&#8217;ve decided to publish it here anyhow, for posterity.</em></strong></p>
<h3>Some opinion, analysis</h3>
<p>This is a blog, so a post like this wouldn&#8217;t be complete without some opinionated analysis <img src='http://blog.pansapiens.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . My daily work involves molecular biology, structural biology encompassing some basic protein engineering, and some bioinformatics. I don&#8217;t currently practise anything I would consider <em>bona fide</em> synthetic biology, although I&#8217;m comfortable with the technology, concepts and language used. Synthetic Biology is a relatively new field (or as some would argue, a relatively new term for the intersection of some established fields), and as a result things are developing rapidly, both on the technology side, and on the ethical/social/legal side. The push to acquire mindshare and funding for exciting but speculative biotechnologies has generated some big claims, and some big expectations.</p>
<p><a href="http://blog.pansapiens.com/wp-content/uploads/2008/10/sb_gartner_hype_cycle.png" rel="lightbox[86]"><img class="size-medium wp-image-85" title="Synthetic biology: where is it on the hype cycle ?" src="http://blog.pansapiens.com/wp-content/uploads/2008/10/sb_gartner_hype_cycle-300x194.png" alt="Modified from Jeremy Kemps version at Wikipedia, used under Creave Commons Attribution-ShareAlike 3.0 license." width="300" height="194" /></a></p>
<p><a href="http://en.wikipedia.org/wiki/Technology_hype">Gartner&#8217;s hype cycle</a> <em><span style="color: #808080;">(modified version used under a </span></em><a href="http://creativecommons.org/licenses/by-sa/3.0/"><em><span style="color: #808080;">CC Share-alike license, 3.0</span></em></a><em><span style="color: #808080;">, original image by </span></em><a href="http://en.wikipedia.org/wiki/User:Jeremykemp"><em><span style="color: #808080;">Jeremy Kemp</span></em></a><em><span style="color: #808080;">).</span></em></p>
<p>My overall feeling is that we are just passing the peak of inflated expectations. Although to be fair, it&#8217;s a little tough to pick a single point on the hype curve for &#8220;Synthetic Biology&#8221; at this point. It seems like there are lots of &#8220;micro-hype curves&#8221; already playing out, as different groups use the the new tools that have become accessible to engineer something cool and useful and test their design. Sometimes things work reasonably well, other times it becomes clear that the biological systems that have evolved under natural environmental pressure are not always modular and easily abstracted. That is not to say the once those systems are adopted, tweaked and tested by engineers (potentially via <a href="http://en.wikipedia.org/wiki/Directed_evolution">directed evolution</a>), that they will not become predictable, modular and abstractable components; this is the assumption that the success of synthetic biology as an engineering disipline is relying on. Tweaking and characterization of basic components is still a work in progress. The outcome of the ongoing standardization of <a href="http://parts.mit.edu">parts</a> and subsequent predictability of completed devices should reveal just how soon and how deep the impending &#8220;Trough of Dissillusionment&#8221; will be.</p>
<p>(it should be noted that the common cry from biologist that &#8216;biology is not aways predictable&#8217; and &#8216;what about emergent behaviour&#8217; can be simply avoided by not using the parts that don&#8217;t behave. This could be a severe limitation, where parts with certain functions are scarce or unavailable due to their unpredictable nature. The same biologists dismissive of the claim that biological components can be abstracted and standardized will turn around and defend their use of GFP / FLAG and HA-tags as a standard method for detecting the location of proteins in cells. Unpredictable behaviour in these systems often occurs, but is often downplayed).</p>
<h3>Overheard at the banquet: &#8220;I wish people would just stop trying to define it&#8221;.</h3>
<p>As with any new field in the process of carving out an identity, there have been various <a href="http://www.nature.com/msb/journal/v3/n1/full/msb4100202.html">attempts</a> to <a href="http://blog-msb.embo.org/blog/2008/03/synthetic_biology_nsabb_and_cr.html#comment-1651">define &#8220;Synthetic Biology&#8221;</a>, and as expected <a href="http://blog.openwetware.org/freegenes/2008/04/13/synthetic-biology-rant-link/">not everyone agrees</a>. In fact, I get the sense that people working on <em>bona fide</em> synthetic biology projects seem to have become a little sensitive about it, to the point that I half expect to be &#8216;flamed&#8217; for speculating about the technology hype curve above, and chastised for dredging up the definition debate again (which has probably become pretty stale and repetitious for some).</p>
<p>I think the <a href="ftp://ftp.cordis.lu/pub/nest/docs/syntheticbiology_b5_eur21796_en.pdf">definition from the NEST High Level Expert Group</a> is reasonable:</p>
<blockquote><p>&#8216;Synthetic biology is the engineering of biology: the synthesis of complex, biologically based (or inspired) systems, which display functions that do not exist in nature. This engineering perspective may be applied at all levels of the hierarchy of biological structuresâ€”from individual molecules to whole cells, tissues and organisms. In essence, synthetic biology will enable the design of &#8216;biological systems&#8217; in a rational and systematic way&#8217;</p></blockquote>
<p>The key term here is <em>engineering</em> &#8230; not as in &#8216;genetic engineering&#8217; which historically has been more haphazard due to the limitations of the tools available, but engineering based on strict engineering principles. Compared with most other scientists who are using effectively the same technologies and protocols in molecular biology, the &#8216;synthetic biology engineer&#8217; aims not only to understand the system that they are studying, but pragmatically take well understood biological components and systems and put them to good use.</p>
<p>From large parts of the scientific program from the SB 4.0 conference, you could be lead to believe it was all about metabolic engineering. Or maybe whole genome synthesis, or genetic circuits. The <a href="http://sb4.biobricks.org/field/">SB 4.0 website</a> defines it as:</p>
<blockquote><p>Synthetic Biology is a new approach to engineering biology, with an emphasis on technologies to write DNA. Recent advances make the <em>de novo</em> chemical synthesis of long DNA polymers routine and precise. Foundational work, including the standardization of DNA-encoded parts and devices, enables them to be combined to create programs to control cells.</p></blockquote>
<p>It goes on to list examples of some real-world applications for synthetic biology: <em>BioEnergy, Drug Production, Materials</em> and <em>Medicine</em> (aka programmed cells as therapeutics). All of these examples, other than &#8220;Medicine&#8221;, ultimately relate to metabolc engineering &#8230; heavily tweaking (or entirely rebuilding) a biosynthetic pathway in a host cell, usually <em>E. coli</em> or yeast, to produce something we currently dig up from the ground and transform into fuel, chemicals or materials through the petrochemical industry.</p>
<p>Another angle is <a href="http://www.nature.com/msb/journal/v3/n1/full/msb4100202.html">Luis Serrano&#8217;s distinction between Biotechnology vs. Synthetic Biology</a>:</p>
<blockquote><p>Thus, improving the production of a certain metabolite by tinkering with some of the components of a metabolic network will fall within the realm of Biotechnology. On the other hand, the introduction of several exogenous enzymes in an organism to produce a new compound will fall within the scope of Synthetic Biology.</p></blockquote>
<p>I find it hard to agree with this particular division. The introduction of heterologus genes, and the production of a &#8216;new compound&#8217; seems like a logical extension of advanced metabolic engineering, as a subfield of &#8216;biotechnology&#8217;, and barely warrant reclassification into an entirely new field. Unless you need a name change for marketing purposes &#8230;</p>
<p>There is a proven model for attracting interest (and hence funding) to a field by changing the name in response to new possibilities through some enabling technology; think gene sequencing vs. genomics, protein identification vs. proteomics, studying metabolism and cell signalling pathways vs. systems biology. In this case, cheap high-throughput sequencing and relatively cheap DNA synthesis are allowing engineers to do things they couldn&#8217;t before. So the biotechnology and genetic engineering of the past becomes &#8230; synthetic biology.</p>
<p>Names and definitions aside, (synbio)technology has got the the point where we are able to do some pretty cool things using biological systems &#8230; and if a little re-definition helps people acknowledge that, then all the better.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pansapiens.com/2008/10/16/synthetic-biology-4-0-reflections-on-the-state-of-play/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/publicdomain/zero/1.0/</creativeCommons:license>
	</item>
	</channel>
</rss>

