-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
115 lines (115 loc) · 4.36 KB
/
welcome.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #F8F9FA;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
}
.header {
text-align: center;
padding: 20px;
background-color: #2C3143;
color: white;
}
.header a {
color: #d3d3d3;
text-decoration: none;
}
.header h1 {
margin: 0;
}
.content {
text-align: center;
list-style-position: inside;
padding: 20px;
}
.button {
display: inline-block;
padding: 10px 10px;
margin: 2px 0;
color: white;
background-color: #87b13f;
text-decoration: none;
border-radius: 5px;
}
.button:hover {
background-color: #6a8f33;
}
.button-small {
display: inline-block;
padding: 10px 20px;
margin: 20px 0;
color: #2C3143;
background-color: white;
text-decoration: none;
border-radius: 5px;
border: 2px solid #2C3143;
}
.footer {
text-align: center;
padding: 5px;
background-color: #2C3143;
color: white;
}
.footer a {
color: #d3d3d3;
text-decoration: underline;
}
.footer a:hover {
text-decoration: underline;
}
.screenshot {
width: 400px;
height: auto;
}
.info-box {
border: 2px solid #2C3143;
padding: 2px;
margin: 2px 0;
background-color: #E5E5E5;
border-radius: 2px;
color: #2C3143;
font-size: 90%;
}
</style>
<meta charset="utf-8">
<title>Bioconductor Workshop Galaxy</title>
</head>
<body>
<div class="header">
<h1>Welcome to the <a href="https://workshop.bioconductor.org" target="_blank">Bioconductor Workshop Galaxy</a></h1>
</div>
<div class="container content">
<p>This instance is still prototypical and in active development. It runs on the <a href="https://jetstream-cloud.org/">Jetstream2 academic cloud</a>, using NSF-ACCESS allocation BIR190004.</p>
<p>If you experience any issues, please email us at [email protected]!</p>
<p>Get ready to explore a variety of tutorials and enhance your skills!</p>
<div class="info-box">
<p>Before getting started, a few useful facts:
<ol>
<li>These workshops are meant to be ephemeral. <strong>All data and progress is erased when a workshop is stopped.</strong></li>
<li>Each workshop represents an RStudio instance, tailored to the workshop content with pre-installed packages.</li>
<li>Workshops are launched per participant, and can only be accessed from one active browser session at a time.</li>
<li>DO NOT share your workshop URL (link) on any public forum (eg chat or social media), including in screenshots.</li>
<li>YOU CAN ONLY HAVE 2 RUNNING WORKSHOPS AT ANY GIVEN TIME. Additional workshops will be indefinitely queued until a running instance is stopped. You may access all launched workshops and stop them from the <a href="/interactivetool_entry_points/list">User menu</a>.</li>
<li>All workshops may be automatically stopped 12 hours after initial launch.</li>
</ol></p>
<br><br>
<p>Please watch the following video which will introduce you to the basics of using the Bioconductor Workshop Galaxy platform!</p>
<iframe src="https://www.youtube.com/embed/uv1vGXLY0Mg"></iframe>
<br>
<p>You may also provide feedback anonymously via <a href="https://forms.gle/o5V7WWf5hFuvceeG8" target="_blank">this form</a>. Any feedback is appreciated, as we are just getting started with offering this platform.</p>
</div>
<div class="footer">
<p><a href="tos.html">Terms of Service</a> and <a href="privacy-policy.html">Privacy Policy</a></p>
<p><a href="https://support.bioconductor.org/" target="_blank">Support Site</a></p>
</div>
</body>
</html>