-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-evolution.html
More file actions
94 lines (81 loc) · 6.04 KB
/
about-evolution.html
File metadata and controls
94 lines (81 loc) · 6.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
title: Engineering [with] Evolution - Biocompute Lab
section: about-evolution
---
{% include header.html %}
<main>
<div class="container col-xxl-8 px-4 py-1">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img src="{{baseurl}}/images/about/evolution-web.jpg" class="d-block mx-lg-auto img-fluid" width="450" height="30" loading="lazy">
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold lh-1 mb-3 pagetitle">Engineering [with] evolution</h1>
<p class="lead">Evolution is the most powerful creative force on this planet. The Biocompute Lab is exploring ways to harness and integrate evolution into new biological design workflows, as well as searching for avenues to engineer evolutionary processes themselves to create a new generation of truly self-adaptive engineered living system.</p>
</div>
</div>
</div>
<div class="container px-4 py-1">
<blockquote class="blockquote">
<p>Thus, from the war of nature, from famine and death, the most exalted object which we are capable of conceiving, namely, the production of the higher animals, directly follows. There is grandeur in this view of life, with its several powers, having been originally breathed into a few forms or into one; and that, whilst this planet has gone cycling on according to the fixed law of gravity, from so simple a beginning endless forms most beautiful and most wonderful have been, and are being, evolved.</p> — Charles Darwin
</blockquote>
</div>
<div class="container px-4 py-5">
<h2 class="pb-2 border-bottom">Core strands</h2>
<div class="row px-3 py-4 row-cols-2 g-4">
<div class="col bclcol1">
<h4>Mapping evolution</h4>
<p>Advances in the lab are opening up the opportunity to trace the evolutionary path of cells and biological systems in unprecedented detail. The Biocompute Lab is leveraging its expertise in nanopore sequencing to create both the experimental methods and bioinformatics tools needed to unravel this information and address questions about how evolution works. We hope to use this knowledge to inform biological design such that it works with evolution, not against it, and to develop an underlying mathematical foundation to theoretically explore evolution in new ways.</p>
</div>
<div class="col bclcol2">
<h4>Harnessing evolution</h4>
<p>The power of directed evolution was recently recognized with the Nobel prize, but many challenges in using evolution in this way remain. Improved high-throughput screening methods and new ways of coupling cellular fitness to our own desired function are some of the avenues the Biocompute Lab is exploring. We are keen to exploit the advances in low-cost lab automation hardware and scaling down of experiments, e.g., through microfludics, to offer new approaches to harness evolution in reliable and effective ways.</p>
</div>
<div class="col bclcol3">
<h4>Engineering evolution</h4>
<p>Advances in our understanding of the molecular processes involved in generating genetic variation and the selective pressures at work, mean that we have the opportunity to not only harness evolution in its current form, but also can think about engineering it in new ways. The Biocompute Lab to exploring this concept by developing genetic systems that can vary in a semi-controlled way, to offer evolution specific paths to explore. We are attempting this through hybrid systems combining biology with automated laboratory robots, as well as engineered evolutionary processes that can run within living cells.</p>
</div>
<div class="col bclcol4">
<h4>Integrating evolution</h4>
<p>Biological design to date has mostly focused on the human-modification of a system to the point where a working design is found. But unlike many engineered systems, when deployed biological systems can change and evolve in ways a designer has not considered – often breaking the system in a spectacular way. The Biocompute Lab is attempting to rectify this by rethinking what a biological design workflow encompasses. We aim to not only consider the artificial selection by us during a design's development, but also the role of evolution after deployment and the opportunities this integrated perspective offers.</p>
</div>
</div>
<h2 class="pb-2 py-5 border-bottom">Selected publications</h2>
{% for pub in site.data.publications %}
{% if pub.key_areas contains "evolution" %}
{% if pub.status != "pre-print" %}
<div class=row>
<p class="publication"><a href="{{pub.url}}"><b>{{pub.title}}</b></a><br>
{{ pub.authors | join: ", " }}<br>
{% if pub.status == "online" %}<i>{{pub.journal}}</i>, {{pub.year}}. <i>(online)</i>
{% elsif pub.status == "accepted" %}<i>{{pub.journal}}</i>, {{pub.year}}. <i>(accepted)</i>
{% elsif pub.status == "in-press" %}<i>{{pub.journal}}</i>, {{pub.year}}. <i>(in press)</i>
{% else %}<i>{{pub.journal}}</i> {{pub.volume}}, {{pub.pages}}, {{pub.year}}.
{% endif %}
{% if pub.doi == "" %}
{% else %}<br><span style="filter: invert(90%)" class="altmetric-embed" data-hide-no-mentions="true" data-doi="{{pub.doi}}"></span>
{% endif %}
</p>
</div>
{% endif %}
{% endif %}
{% endfor %}
<h2 class="pb-2 py-5 border-bottom">Key people</h2>
<div class="row py-2 row-cols-5 g-3">
{% for person in site.team %}
{% if person.role == "member" and person.key_areas contains "evolution" %}
<div class="col">
<div class="card">
<img width="100%" src="{{baseurl}}/images/team/{{person.image}}"/>
<div class="card-body">
<a class="card-name" href="{{person.url}}">{{person.title}}</a>
<p class="card-position">{{person.position}}</p>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</main>
{% include footer.html %}