-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 2.44 KB
/
Copy pathindex.html
File metadata and controls
40 lines (36 loc) · 2.44 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
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: home
---
<link rel="stylesheet" href="../css/timeline.css">
<div class="row">
<font color="#9f9f9f">Engineering uses science and math to solve real world problems. Cellular and Molecular Engineering uses the principles of engineering and life sciences to manipulate and understand biologic processes at cellular or molecular levels. Cells were discovered by Robert Hooke in 1665. Proteins were discovered by Antoine Fourcroy in 1789. Nucleic acids were discovered by Friedrich Miescher in 1868. In the 21st century, it is time to use principles we have learned from them to create something new, useful, and fun.</font>
<h3>About us </h3>
<div>
Our lab has mainly focused on studying the molecular mechanisms controlling the self-renewal and cell fate determination of embryonic stem cells, especially those related to noncoding RNAs including microRNAs and long noncoding RNAs, the so called dark matter in cells. However, our current research mainly focuses on using interdisciplinary engineering approaches to develop new technologies addressing problems in RNA biology and stem cell biology. We are also interested in developing new genome editing tools. Devoted students and researchers with background in cell biology, molecular biology, biochemistry, chemistry, and bioinformatics with an ambition in creating new things to understand biology or benefit human health are always welcome to visit or join us.
</div>
<br>
<h3>Major Achievements in past 10 years </h3>
<div class="achievements-grid">
{% for item in site.data.index.achievements %}
<div class="achievement-card">
<div class="card">
<div class="card-img-wrapper">
<img src="{{ item.image }}" alt="{{ item.alt }}">
</div>
<div class="card-body">
<div class="card-text">
{{ item.description }}
</div>
<p class="card-text">
<a href="{{ item.link }}" target="_blank">
<small class="text-muted">{{ item.citation }}</small>
</a>
</p>
</div>
</div>
</div>
{% endfor %}
</div><!-- /.achievements-grid -->
</div>