-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.php
More file actions
110 lines (37 loc) · 2.25 KB
/
about.php
File metadata and controls
110 lines (37 loc) · 2.25 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
104
105
106
107
108
109
110
<?php
include("template.php");
echoHtmlHead("About rayner lab");
echoPageHeader();
?>
<!-- ================================== main content start ===================================== -->
<div id="content"><!-- content -->
<h1>About the Rayner Lab</h1>
<p>The Bioinformatics Group focuses on the study of virus and bacteria evolution, we are particularly interested in mosquito borne viruses such as Japanese encephalitis and Dengue, the rabies virus and the Bacillus family of bacteria. We investigate these systems from a number of different perspectives.</p>
<h2>Comparative Genomics & Phylogenetic Analysis</h2>
<p>We apply comparative genomics and phylogenetic analysis techniques to identify key differences in particular strains that can yield selective advantages such as virulence or fitness.</p>
<h2>RNA Secondary Structure & miRNA</h2>
<p> We are studying the underlying mechanisms that are related to the various stages in the virus life cycle. Specifically, we are interested in the role of secondary structure in RNA viruses and the function of microRNA in virus-host interactions.</p>
<h2>Epidemiology Modeling</h2>
<p>We are applying mathematical methods to model infection processes and the epidemiology of viruses.</p>
<p>In all our research we work closely with other experimental groups in our institute and as well as other research institutes, so we can apply their expertise to our data interpretation.</p>
</div><!-- end content -->
<div id="sidebar"><!-- sidebar -->
<h3>Recent</h3>
<div class="navcontainer">
<ul>
<li><a href="#">Clostridium Database</a></li>
</ul>
</div>
<h3>Links</h3>
<div class="navcontainer">
<ul>
<li><a href="http://www.whiov.cas.cn/" target="_blank">WIV-CAS</a></li>
<li><a href="http://159.226.126.177/wiv_bioinformatics/" target="_blank">Rayner Bioinformatics Lab</a></li>
<li><a href="http://159.226.126.177/mirpara/index.html" target="_blank">miRPara: miRNA Predition Tools</a></li>
</ul>
</div>
<h3>Contact Us</h3>
<p>s.raynere@wh.iov.cn</p>
</div><!-- end sidebar -->
<!-- =================================== main content end ======================================== -->
<?php echoPageFooter(); ?>