-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (94 loc) · 4.84 KB
/
Copy pathindex.html
File metadata and controls
103 lines (94 loc) · 4.84 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
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BioComs Lab</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400&family=IBM+Plex+Mono:wght@400&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/index.css">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
</head>
<body>
<!-- Header Section -->
<header>
<div class="logo">
<img src="assets/Logo.png" alt="BioComs Lab Logo">
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="people.html">People</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Introduction Section -->
<section class="intro">
<div class="intro-background">
<h1>Welcome to BioComs Lab</h1>
<p id="typing-effect"></p>
</div>
</section>
<!-- Descriptive Paragraph -->
<section class="description">
<p>
Welcome to the <b>Bioinformatics and Computational Systems Biology Laboratory (BioComs Lab)</b>, where innovation meets precision. At BioComs Lab, we are dedicated to unraveling the complexities of biological systems through computational techniques and data-driven approaches. Our core research spans diverse areas, including quantitative trait loci (QTL) analysis, survival analysis in oral cancer, advanced machine learning and deep learning methodologies, oral microbiome studies incorporating multi-kingdom and multi-omics integration, simulation-based modeling, and metatranscriptomics.
</p>
<p>
Guided by a commitment to excellence, our multidisciplinary team leverages computational biology to address critical challenges in precision medicine and systems biology. We aim to foster collaboration, mentor the next generation of scientists, and contribute to breakthroughs in the life sciences. Explore our website to learn more about our research, team, and resources.
</p>
</section>
<!-- News Section -->
<section class="news">
<h2>Lab News</h2>
<div class="news-item">
<span class="news-date">December 2024</span>
<div class="news-details">
🎉 <strong>Phuong</strong> and <strong>Jihyun</strong> have been selected to present at the American Association for Dental, Oral and Craniofacial Research 2025 in New York. <em>Congrats!</em>
</div>
<div class="news-details">
🎉 <strong>Priyanka</strong> successfully passed her qualifying examination for her PhD in Informatics. <em>Congrats!</em>
</div>
</div>
<div class="news-item">
<span class="news-date">October 2024</span>
<div class="news-details">
🎤 <strong>Vishalini</strong> gave an oral presentation at the Society of Toxicology 2024 Annual Meeting on "Investigating the Changes of Toxin-Related Gene Expression in the Oral Metatranscriptome of Dental Caries."
</div>
<div class="news-details">
📜 <strong>Priyanka</strong> presented a poster at the ASM NGS 2024 on "Optimizing data preprocessing for oral multiomics."
</div>
<div class="news-details">
📜 <strong>Vishalini</strong> presented a poster at ASM NGS 2024 on "Comprehensive evaluation of differential abundance methods for multi-omics oral microbiome data."
</div>
</div>
<div class="news-item">
<span class="news-date">September 2024</span>
<div class="news-details">
🎉 <strong>Vishalini</strong> successfully passed her comprehensive examination for her PhD in Human Toxicology. <em>Congrats!</em>
</div>
</div>
<div class="news-item">
<span class="news-date">August 2024</span>
<div class="news-details">
🎉 <strong>Yiyang (John) Shen</strong> joins the lab. <em>Welcome, John!</em>
</div>
<div class="news-details">
🎉 <strong>Phuong</strong> successfully passed her comprehensive examination for her PhD in Informatics. <em>Congrats!</em>
</div>
</div>
</section>
<!-- Footer Section -->
<footer>
<p>© 2024 BioComs Lab | University of Iowa</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
<!-- JS -->
<script src="js/index.js"></script>
</body>
</html>