-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.php
63 lines (61 loc) · 1.8 KB
/
home.php
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
<style>
#header {
background-color:DB7093;
color:black;
text-align:center;
padding:5px;
font-family: Times New Roman;
}
#nav {
line-height:30px;
background-color:#F5DEB3;
height:300px;
width:100px;
float:left;
padding:5px;
}
#section {
width:550px;
float:left;
padding:15px;
text-align: justify;
}
#footer {
background-color:DB7093;
color:black;
clear:both;
text-align:center;
padding:5px;
}
ol.a
{
list-style-type: upper-roman;
}
</style>
<body>
<div id="header">
<h1>Building Biological Databases</h1>
</div>
<div id="nav">
<br><br/>
<a href="index.php">Search</a> <br>
<a href="add.php">Upload</a> <br>
<a href="contact.php">Contact</a>
</div>
<div id="section">
<h1>Microarray Databases</h1>
<p>
A microarray database is a repository containing microarray gene expression data. The key uses of a microarray database are to store the measurement data, manage a searchable index, and make the data available to other applications for analysis and interpretation (either directly, or via user downloads).
<p/>
Microarray databases can fall into two distinct classes:
<p>
<ol class ="a">
<li>A peer reviewed, public repository that adheres to academic or industry standards and is designed to be used by many analysis applications and groups. A good example of this is the Gene Expression Omnibus (GEO) from NCBI or ArrayExpress from EBI.</li>
<li>A specialized repository associated primarily with the brand of a particular entity (lab, company, university, consortium, group), an application suite, a topic, or an analysis method, whether it is commercial, non-profit, or academic.</li>
</ol>
</p>
</div>
<div id="footer">
<a style = 'color: black; font-weight: bold'>Prepared by Siva</a>
</div>
</body>