-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmembers.html
More file actions
65 lines (57 loc) · 3.06 KB
/
members.html
File metadata and controls
65 lines (57 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sun Lab | Lab Members</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Navigation -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="members.html">Lab Members</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="news.html">News</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="joinus.html">Join Us</a></li>
</ul>
</nav>
<!-- Main Content -->
<div class="content">
<h1>Lab Members</h1>
<!-- Principal Investigator -->
<div class="member-profile">
<img src="assets/images/na_sun.jpg" alt="Dr. Na Sun" class="member-photo">
<div class="member-info">
<h2>PI: Dr. Na Sun</h2>
<p>Dr. Na Sun is a Whitehead AI Fellow and Principal Investigator at the Whitehead Institute for Biomedical Research. </p>
<p>She received her S.B. in Life Science from Linyi University in 2009, followed by an S.M. in Bioinformatics and Developmental Biology from the University of the Chinese Academy of Sciences in 2013. During her master’s studies, she conducted research in Dr. Jing-Dong Han's lab, where she later continued as a Research Associate until 2016. In 2017, Dr. Sun moved to Cambridge, joining Dr. Shiv Pillai’s lab at the Ragon Institute of MGH, MIT, and Harvard as a Bioinformatics Specialist. She began her graduate studies in computational biology at MIT in 2020, earning her Ph.D. in Computer Science in 2024.</p>
</div>
</div>
<!-- Example of Other Lab Members -->
<!-- Member 1 -->
<!-- <div class="member-profile">
<img src="assets/images/member1.jpg" alt="Member 1" class="member-photo">
<div class="member-info">
<h2>Dr. John Doe</h2>
<p>Dr. John Doe is a postdoctoral researcher specializing in computational genomics. His research focuses on the integration of transcriptomic and epigenomic data to investigate mechanisms driving neurodegenerative diseases.</p>
</div>
</div> -->
<!-- Member 2 -->
<!-- <div class="member-profile">
<img src="assets/images/member2.jpg" alt="Member 2" class="member-photo">
<div class="member-info">
<h2>Dr. Jane Smith</h2>
<p>Dr. Jane Smith is a data scientist with expertise in machine learning models applied to multi-omics data. She focuses on developing algorithms for integrating genomic, transcriptomic, and proteomic datasets to study cell-cell communication in immune response.</p>
</div>
</div> -->
</div>
<!-- Footer -->
<footer>
<p>© 2024 Sun Lab | Whitehead Institute for Biomedical Research</p>
</footer>
</body>
</html>