-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (111 loc) · 4.25 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
<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Bento Platform</title>
<link rel="stylesheet" href="reveal.js/dist/reset.css">
<link rel="stylesheet" href="reveal.js/dist/reveal.css">
<link rel="stylesheet" href="reveal.js/dist/theme/beige.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="reveal.js/plugin/highlight/monokai.css">
<style>
h2 {color: #A5640E !important;}
h3 {margin-bottom: 5px !important;}
h4 {color: #888 !important; font-size: medium !important;}
ul > li > ul > li {color: #999; font-size: large !important; margin-bottom: 0% !important;}
ul:first-of-type {font-size: x-large;}
ul:first-of-type li {font-size: x-large; margin-bottom: 2%;}
ul:not(:first-of-type) {font-size: large; margin-bottom: 0%;}
#slide-features img {border: 1px solid #bbb; max-width: 70%; }
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Header -->
<section>
<img src="img/[email protected]" style="max-width: 50%; vertical-align:middle">
<br/>
<br/>
An open-source web platform to explore and share clinical and -omics data.
<br/>
<br/>
<a href="https://github.com/Bento-Platform"><img height="30px" src="img/github-mark.svg" style="vertical-align:middle"> https://github.com/Bento-Platform</a>
<br/>
<span style="color: #bbb; font-size: medium;">Use the arrow keys or mouse wheel for navigation</span>
</section>
<!-- TOC -->
<section>
<h2>Table of Contents</h2>
<ul>
<li><a href="#/slide-introduction">Introduction</a></li>
<li><a href="#/slide-goals">Goals</a></li>
<li><a href="#/slide-features">Features</a></li>
<li><a href="#/slide-releases">Releases</a></li>
<li><a href="#/slide-roadmap">Roadmap</a></li>
</ul>
</section>
<!-- Introduction -->
<section id="slide-introduction">
<h2>Introduction</h2>
<section>
<p>
A recurrent need for projects in genomics revolves around the implementation, deployment and maintainance of a platform to organise their datasets.
The requirements are essentially the same: standardise, ingest, allow querying and retrieval of clinical, experiments and multi-omics data.
</p>
<p>
<a class="navigate-down" style="font-size: large">Read more...</a>
</p>
</section>
<section>
<p>
The Bento platform has been created as a reusable solution to address these common needs. It aims to follow as closely as possible international data standards, such as within <a href="https://www.ga4gh.org/">GA4GH</a>, to unlock the potential of sharing the data alongside other initiatives.
</p>
<p>
<a class="navigate-down" style="font-size: large">Read more...</a>
</p>
</section>
<section>
A Bento platform node is composed of many services that each accomplish a specific task. Some components can be brought in, or left out, depending on the needs of the project leveraging it.
</section>
</section>
<!-- Goals -->
<section id="slide-goals">
<h2>Goals</h2>
<section style="font-size: x-large" data-markdown="./goals.md"></section>
</section>
<!-- Features -->
<section id="slide-features">
<h2>Features</h2>
<section style="font-size: x-large" data-markdown="./features.md"></section>
</section>
<!-- Past releases -->
<section id="slide-releases">
<h2>Releases</h2>
<section style="font-size: x-large" data-markdown="./releases.md"></section>
</section>
<!-- Roadmap -->
<section id="slide-roadmap">
<h2>Roadmap</h2>
<section style="font-size: x-large" data-markdown="./roadmap.md"></section>
</section>
</div>
</div>
<script src="reveal.js/dist/reveal.js"></script>
<script src="reveal.js/plugin/notes/notes.js"></script>
<script src="reveal.js/plugin/markdown/markdown.js"></script>
<script src="reveal.js/plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
mouseWheel: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>