-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
175 lines (167 loc) · 5.21 KB
/
index.html
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Favicons -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="/favicon/site.webmanifest" />
<!-- Previews (NOTE: Untested) -->
<meta
property="og:url"
content="https://stephenandrewtaylor.net/rare-test/"
/>
<meta property="og:title" content="Catalog of Rare Diseases" />
<meta
property="og:description"
content="An interactive sonification of 230 rare diseases featuring DNA promoter sequences"
/>
<link rel="stylesheet" type="text/css" href="src/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Catalog of Rare Diseases</title>
</head>
<body>
<div id="page">
<h1 id="header" class="title">Catalog of Rare Diseases</h1>
<h2 id="subheader" class="title">
An interactive sonification of 230 rare diseases
</h2>
<strong class="description">
Click a disease category to zoom in, or in the center of the circle to
zoom out.
</strong>
<p class="description">
The twelve different categories of disease are each associated with a
different chakra, or scale, derived from the Melakarta ragams in Indian
classical music. The lower four notes (tetrachord) for each chakra
provides the harmonic background for each disease category, while the
upper tetrachord represents the four DNA bases (ACTG), which play part
of the DNA promoter sequence for each disease. The amount of DNA letters
played depends on the number of genes associated with the disease.
</p>
<audio id="viola" controls></audio>
<button id="stop">Stop</button>
<div id="sunburst"></div>
<!-- Popup for displaying disease details -->
<div
id="popup"
style="
display: none;
position: absolute;
z-index: 10;
background: rgba(255, 255, 255, 0.8);
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
width: 28%;
max-width: 450px;
"
></div>
<script type="module" src="/src/main.ts"></script>
<div id="footer">
<!-- Looks ugly as hell -->
<h2 id="credits">
Made by:
<ul>
<li>
<a href="https://stephenandrewtaylor.net/" target="_blank">
Stephen Taylor
</a>
- Data sonification
</li>
<li>
<a
href="https://www.linkedin.com/in/aditi-kantipuly/"
target="_blank"
>
Dr. Aditi Kantipuly
</a>
- Data curation
</li>
<li>
<a href="https://www.linkedin.com/in/quinnouyang/" target="_blank"
>Quinn Ouyang</a
>
- Web development
</li>
<li>
<a
href="https://www.linkedin.com/in/sally-xue-77571122b/"
target="_blank"
>
Sally Xue
</a>
- Web development
</li>
</ul>
</h2>
<h2>
<a href="https://github.com/staylor7/rare-diseases" target="_blank"
>GitHub</a
>
</h2>
<!-- Modified from generated HTML from https://chooser-beta.creativecommons.org/ -->
<p
id="copyright"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dct="http://purl.org/dc/terms/"
>
<a
property="dct:title"
rel="cc:attributionURL"
href="https://stephenandrewtaylor.net/rare-diseases/"
>
Catalog of Rare Diseases
</a>
by
<a
rel="cc:attributionURL dct:creator"
property="cc:attributionName"
href="https://stephenandrewtaylor.net/"
>
Stephen Taylor
</a>
is marked with
<a
href="http://creativecommons.org/publicdomain/zero/1.0?ref=chooser-v1"
target="_blank"
rel="license noopener noreferrer"
style="display: inline-block"
>
CC0 1.0
</a>
<a
href="http://creativecommons.org/publicdomain/zero/1.0?ref=chooser-v1"
target="_blank"
rel="license noopener noreferrer"
style="display: inline-block; text-decoration: none"
>
<img
class="copyrightIcon"
src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1"
/>
<img
class="copyrightIcon"
src="https://mirrors.creativecommons.org/presskit/icons/zero.svg?ref=chooser-v1"
/>
</a>
</p>
</div>
</div>
</body>
</html>