-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIntroduction.js
More file actions
229 lines (220 loc) · 11.3 KB
/
Introduction.js
File metadata and controls
229 lines (220 loc) · 11.3 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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import React from "react";
import "./App.css";
export default class Introduction extends React.Component {
render() {
return (
<div>
<div
style={{
paddingLeft: "5%",
paddingRight: "5%",
textAlign: "justify",
fontSize: 16,
lineHeight: 1.75,
marginTop: "40px",
marginBottom: "40px"
}}
>
<div className="title-solid-style" style={{ fontSize: 44 }}>EBRAINS Live Papers</div>
<div className="title-solid-style" style={{ fontSize: 32, color: "#00A595" }}>Interactive resource sheets for computational studies in neuroscience</div>
</div>
<div className="block">
<div style={{ display: "flex", flexDirection: "row" }}>
<div style={{ flex: 0.5 }}>
<div className="block-little-header">The Problem</div>
<div className="block-main-header">Where to find underlying data?</div>
<div className="block-text">
Consider that you came across a scientific publication that piqued your interest.
It might be because:
<ul>
<li>the experimental data produced by the authors could aid your own scientific work, or</li>
<li>the model developed by them could be used by you to test certain other hypotheses, or</li>
<li>you simply wish to reproduce the findings reported in the article</li>
</ul>
To do any of these, you need access to the underlying data. And this is where things can get difficult.
Very often authors simply resort to adding a statement in their publication, something similar to:
<div style={{
backgroundColor: "#DCEDC8", textAlign: "center", padding: "10px",
marginLeft: "10%", marginRight: "10%", marginTop: "20px", marginBottom: "20px"
}}>
<span style={{ fontFamily: "cursive", fontWeight: "bold", fontStyle: "italic" }}>
"Data are available from the authors upon request."
</span>
</div>
This typically results in a situation where potential users face a dead-end because authors are
either unresponsive, have left academia, or because code or data have been lost,
or are otherwise no longer available.
<br /><br />
What is lacking is a structured and systematic way of offering these resources, that
makes this process simpler for both the authors and the potential users.
</div>
</div>
<div style={{ flex: 0.5, textAlign: "center" }}>
<img
alt=""
src={process.env.PUBLIC_URL + "/figures/index/problem.png"}
width="60%"
style={{ paddingTop: "120px" }}
/>
</div>
</div>
<br />
</div>
<div className="block">
<div style={{ display: "flex", flexDirection: "row" }}>
<div style={{ flex: 0.5, textAlign: "center" }}>
<img
alt=""
src={process.env.PUBLIC_URL + "/figures/index/banner2.png"}
width="100%"
style={{ paddingRight: "40px", paddingTop: "75px" }}
/>
</div>
<div style={{ flex: 0.5 }}>
<div className="block-little-header">The Solution</div>
<div className="block-main-header">EBRAINS Live Papers</div>
<div className="block-text">
The {" "}
<a href="/"
>EBRAINS Live Papers</a
>{" "}
are structured and interactive supplementary
documents to complement journal publications, that allow users to
readily access, explore and utilize the various kinds of data
underlying scientific studies. Interactivity is a prominent feature
with several integrated tools and services that will allow users to
download, visualise or simulate data, models and results presented
in the corresponding publications.
<br /><br />
Live papers provide a platform by means
of which authors can easily aggregate the various data components underlying
their scientific study into a systematic, structured and distributable format.
The live paper builder tool has been developed with the primary focus on making
this data sharing process as simple as possible.
<div style={{
backgroundColor: "#DCEDC8", textAlign: "center", padding: "10px",
marginLeft: "10%", marginRight: "10%", marginTop: "20px", marginBottom: "20px"
}}>
<span style={{ fontFamily: "cursive", fontWeight: "bold", fontStyle: "italic" }}>
Authors can easily create a new live paper within 2-3 hours using the live paper builder tool!
</span>
</div>
The uploaded resources are stored on the EBRAINS archival data repository,
thereby ensuring their long term retrievability.
With data being managed via the EBRAINS KG, the issue of data provenance can also be better tackled,
along with tighter integration with other tools and services offered under the EBRAINS ecosystem.
</div>
</div>
</div>
<br />
</div>
<div className="block">
<div style={{ display: "flex", flexDirection: "row" }}>
<div style={{ flex: 0.5 }}>
<div className="block-little-header">Find</div>
<div className="block-main-header">Find and explore live papers</div>
<div className="block-text">
All published live papers are categorized by year and listed on
the live paper platform. The Live Paper platform lets you
search/filter the list of live papers by:
<ul>
<li>title of associated published article</li>
<li>the year of publication</li>
<li>the publishing journal</li>
<li>names of associated author(s)</li>
<li>keyword search of abstract</li>
</ul>
Each live paper contains the metadata associated with the
journal publication, followed by a list of related resources
that the authors have shared with the scientific community.
These resources are easily downloadable, and certain types of
resources can also be explored/executed interactively from
within the live paper using tools integrated into the live paper
platform.
<p><a href onClick={() => this.props.updateHash("find")}>Learn more...</a></p>
</div>
</div>
<div style={{ flex: 0.5 }}>
<img
alt=""
src={process.env.PUBLIC_URL + "/figures/index/find.png"}
width="100%"
style={{ paddingLeft: "20px" }}
/>
</div>
</div>
</div>
<div className="block">
<div style={{ display: "flex", flexDirection: "row" }}>
<div style={{ flex: 0.5 }}>
<img
alt=""
src={process.env.PUBLIC_URL + "/figures/index/create.png"}
width="100%"
style={{ paddingRight: "40px" }}
/>
</div>
<div style={{ flex: 0.5 }}>
<div className="block-little-header">Create</div>
<div className="block-main-header">Create live papers, share resources</div>
<div className="block-text">
Authors of scientific publications are encouraged to create live
papers to share the resources underlying their study. Live
papers allow authors to easily share a variety of resources,
such as:
<ul>
<li><a href onClick={() => this.props.updateHash("morphology")}>Morphologies</a></li>
<li><a href onClick={() => this.props.updateHash("traces")}>Electrophysiological Recordings</a></li>
<li><a href onClick={() => this.props.updateHash("models")}>Models</a></li>
<li><a href onClick={() => this.props.updateHash("other")}>Other Content</a></li>
</ul>
Live papers can be set to be password-protected, thereby
enabling them to be shared solely with reviewers prior to
publication, or be made public and thereby freely accessible to
the scientific community.
<br /><br />
The EBRAINS platform issues DOIs to published live papers.
This assists in the citation of published data and models.
<p><a href onClick={() => this.props.updateHash("create")}>Learn more...</a></p>
</div>
</div>
</div>
</div>
<div className="block">
<div className="block-little-header">Know More</div>
<div className="block-main-header">Read our preprint article</div>
<div className="block-text">
You can access the EBRAINS Live Paper preprint article on{" "}
<a href="https://doi.org/10.31219/osf.io/4uvdy" target="_blank" rel="noopener noreferrer">
OSF preprints
</a>.
<br /><br />
Abstract:
<div style={{
backgroundColor: "#DCEDC8", textAlign: "justify", padding: "10px",
marginTop: "20px", marginBottom: "20px"
}}>
<span style={{ fontFamily: "cursive", fontWeight: "bold", fontStyle: "italic" }}>
We present here an online platform for sharing resources underlying publications in neuroscience.
It enables authors to easily upload and distribute digital resources, such as data, code, and
notebooks, in a structured and systematic way. Interactivity is a prominent feature of the Live Papers,
with features to download, visualise or simulate data, models and results presented in the corresponding
publications. The resources are hosted on reliable data storage servers to ensure long term availability
and easy accessibility. All data are managed via the EBRAINS Knowledge Graph, thereby helping maintain
data provenance, and enabling tight integration with tools and services offered under the EBRAINS ecosystem.
</span>
</div>
<div style={{ lineHeight: 1.75 }}>
<strong>Citation:</strong>
<br />
Appukuttan, S., Bologna, L. L., Migliore, M., Schürmann, F., & Davison, A. P. (2021, October 5).
EBRAINS Live Papers - Interactive resource sheets for computational studies in neuroscience.
https://doi.org/10.31219/osf.io/4uvdy
</div>
</div>
<br />
</div>
</div>
);
}
}