-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (68 loc) · 2.14 KB
/
index.html
File metadata and controls
69 lines (68 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hic-straw Examples</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
background: #1a1a2e;
color: #e0e0e0;
min-height: 100vh;
padding: 2rem;
}
h1 {
font-size: 1.75rem;
margin-bottom: 0.5rem;
color: #e94560;
}
p {
color: #888;
margin-bottom: 2rem;
}
.examples {
display: flex;
flex-direction: column;
gap: 1rem;
}
.example-card {
display: block;
background: #16213e;
border: 1px solid #0f3460;
border-radius: 8px;
padding: 1.25rem 1.5rem;
text-decoration: none;
color: #e0e0e0;
transition: border-color 0.2s, background 0.2s;
}
.example-card:hover {
border-color: #e94560;
background: #1f2d4a;
}
.example-card h2 {
font-size: 1.1rem;
margin-bottom: 0.35rem;
}
.example-card .desc {
font-size: 0.9rem;
color: #888;
}
</style>
</head>
<body>
<h1>hic-straw Examples</h1>
<p>Command line and web utilities for reading .hic contact matrix files.</p>
<nav class="examples">
<a href="examples/straw.html" class="example-card">
<h2>Straw — Hi-C Contact Records</h2>
<span class="desc">Fetch binned contact counts from a remote .hic file. Displays contact records in a table.</span>
</a>
<a href="examples/live-contact-map.html" class="example-card">
<h2>LiveContactMap — Synthetic Contact Maps from 3D Structure</h2>
<span class="desc">Load an SWT file and visualize contact and distance maps derived from 3D chromatin vertex data.</span>
</a>
</nav>
</body>
</html>