forked from bids-standard/bids-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
309 lines (270 loc) · 19.4 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
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Brain Imaging Data Structure</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/grayscale.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-339450-12"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-339450-12');
</script>
<script>
/**
* Function that tracks a click on an outbound link in Analytics.
* This function takes a valid URL string as an argument, and uses that URL string
* as the event label. Setting the transport method to 'beacon' lets the hit be sent
* using 'navigator.sendBeacon' in browser that support it.
*/
var trackOutboundLink = function(url) {
gtag('event', 'click', {
'event_category': 'outbound',
'event_label': url,
'transport_type': 'beacon',
'event_callback': function(){document.location = url;}
});
}
</script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#about">About</a>
</li>
<li>
<a class="page-scroll" href="#benefits">Benefits</a>
</li>
<li>
<a class="page-scroll" href="#download">The Specification</a>
</li>
<li>
<a class="page-scroll" href="#getting_started">Getting started</a>
</li>
<li>
<a class="page-scroll" href="#get_involved">Get involved</a>
</li>
<li>
<a class="page-scroll" href="#acknowlegements">Acknowledgments</a>
</li>
<li>
<a class="page-scroll" href="#acknowlegements">Feedback</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Intro Header -->
<header class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="brand-heading">Brain Imaging Data Structure</h1>
<p class="intro-text">A simple and intuitive way to organize and describe your neuroimaging and behavioral data.</p>
<a href="#about" class="btn btn-circle page-scroll">
<i class="fa fa-angle-double-down animated"></i>
</a>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="container content-section text-left">
<div class="row">
<div class="col-lg-12">
<h2>About BIDS</h2>
<p>Neuroimaging experiments result in complicated data that can be arranged in many different ways. So far there is no consensus how to organize and share data obtained in neuroimaging experiments. Even two researchers working in the same lab can opt to arrange their data in a different way. Lack of consensus (or a standard) leads to misunderstandings and time wasted on rearranging data or rewriting scripts expecting certain structure. Here we describe a simple and easy to adopt way of organizing neuroimaging and behavioral data.</p>
<div class="text-center"><img src="bids2.png"</img></div>
<p>BIDS is heavily inspired by the format used internally by <a href="http://openfmri.org">OpenfMRI.org</a>. While working on BIDS we consulted many neuroscientists to make sure it covers most common experiments, but at the same time is intuitive and easy to adopt. The specification is intentionally based on simple file formats and folder structures to reflect current lab practices and make it accessible to a wide range of scientists coming from different backgrounds.</p>
<p>A good introduction to the BIDS standard can be found in the <a href="http://www.nature.com/articles/sdata201644">paper published in Nature Scientific Data</a>.</p>
</div>
</div>
</section>
<section id="benefits" class="container content-section text-left">
<div class="row">
<div class="col-lg-12">
<h2>Benefits</h2>
<p>By using this standard you will benefit in the following ways:
<ul>
<li>It will be easy for another researcher to work on your data. To understand the organization of the files and their format you will only need to refer them to this document. This is especially important if you are running your own lab and anticipate more than one person working on the same data over time. By using BIDS you will save time trying to understand and reuse data acquired by a graduate student or postdoc that has already left the lab.</li>
<li>There is a growing number of <a href="#software">data analysis software packages</a> that can understand data organized according to BIDS.</li>
<li>Databases such as <a href="http://openfmri.org">OpenfMRI.org</a>, <a href="http://www.loris.ca">LORIS</a>, <a href="https://portal.mrn.org">COINS</a>, <a href="https://central.xnat.org/">XNAT</a>, <a href="https://scitran.github.io/">SciTran</a> and others will accept and export datasets organized according to BIDS. If you ever plan to share your data publicly (nowadays some journals require this) you can speed up the curation process by using BIDS.</li>
<li>There are <a href="https://github.com/Squishymedia/bids-validator">validation tools</a> (also available <a href="http://bids-standard.github.io/bids-validator/">online</a>) that can check your dataset integrity and let you easily spot missing values.</li>
<li>We provide <a href="https://github.com/bids-standard/openfmri2bids">tools to convert OpenfMRI style organized data to BIDS</a></li>
</ul></p>
<p id="software">Software currently supporting BIDS:</p>
<ul>
<li><a href="http://bids-apps.neuroimaging.io">BIDS Apps</a> (a growing set of portable containerized data processing pipelines that understand BIDS datasets)</li>
<li>Converters</li>
<ul>
<li><a href="https://github.com/nih-fmrif/BIDS-tools">AFNI BIDS-tools</a></li>
<li><a href="https://github.com/bids-standard/BIDS2ISATab">BIDS2ISATab</a></li>
<li><a href="https://github.com/bids-standard/bidsutils/tree/master/BIDSto3col">BIDSto3col</a></li>
<li><a href="https://github.com/bids-standard/BIDS2NDA">BIDS2NDA</a></li>
<li><a href="https://github.com/jmtyszka/bidskit">bidskit</a></li>
<li><a href="https://github.com/cbedetti/Dcm2Bids">Dcm2Bids</a></li>
<li><a href="https://github.com/neurolabusc/dcm2niix">DCM2NIIx</a></li>
<li><a href="https://www.mathworks.com/matlabcentral/fileexchange/42997-dicom-to-nifti-converter--nifti-tool-and-viewer">DICM2NII</a></li>
<li><a href="https://github.com/nipy/heudiconv">HeuDiConv</a></li>
<li><a href="https://github.com/bids-standard/openfmri2bids">OpenfMRI2BIDS</a></li>
<li><a href="https://github.com/ReproNim/reproin">ReproIn</a> (HeuDiConv-based turnkey solution)</li>
<li><a href="https://github.com/lwallace23/bids2xar">bids2xar</a> (for XNAT import)</li>
<li><a href="https://github.com/kamillipi/2bids">XNAT2BIDS</a></li>
<li><a href="https://github.com/mslw/horos-bids-output">Horos (Osirix) export plugin</a></li>
<li><a href="https://github.com/incf-nidash/PyNIDM/blob/master/nidm/experiment/tools/NIDM2BIDSMRI.py">BIDS2NIDM</a></li>
<li><a href="https://github.com/Donders-Institute/bidscoiner">BIDScoiner</a>
<li><a href="http://mne-tools.github.io/mne-bids/">MNE-BIDS</a> (MEG/EEG/iEEG)</li>
</ul>
<li>Institution specific data management/conversion tools</li>
<ul>
<li><a href="https://github.com/dangom/dac2bids">dac2bids</a></li>Conversion tool for the Donders Institute
<li><a href="https://github.com/khanlab/autobids">Autobids from the Centre for Functional and Metabolic Mapping (CFMM) at Western’s Robarts Research Institute</a></li>
</ul>
<li>Other Tools</li>
<ul>
<li><a href="https://github.com/rhodricusack/automaticanalysis">Automatic Analysis</a> (fMRI processing toolbox)</li>
<li><a href="http://neuroimage.usc.edu/brainstorm/">Brainstorm</a> (MEG/EEG analysis package)</li>
<li><a href="http://fcp-indi.github.io/">C-PAC</a> (Configurable Pipeline for the Analysing Connectomes)</li>
<li><a href="https://github.com/poldracklab/preprocessing-workflow">FMRIPREP</a> (preprocessing workflow)</li>
<li><a href="http://openneuro.org">OpenNeuro</a> (repository)</li>
<li><a href="https://github.com/bids-standard/pybids">PyBIDS</a> (Python module to harmonize access and manipulation)</li>
</ul>
<li>Quality Assessment</li>
<ul>
<li><a href="http://mriqc.readthedocs.org/">MRIQC</a></li>
<li><a href="http://preprocessed-connectomes-project.org/quality-assessment-protocol/">QAP</a> </li>
</ul>
<br>
<p>
A description of how to build containerized apps supporting BIDS inputs can be found in the <a href="http://doi.org/10.1371/journal.pcbi.1005209">paper published in PLOS Computational Biology</a>.</p>
</div>
</div>
</section>
<!-- Download Section -->
<section id="download" class="content-section text-center">
<div class="download-section">
<div class="container">
<div class="col-lg-8 col-lg-offset-2">
<h2>The BIDS specification (1.1.0)</h2>
<p>The BIDS specification is available as a PDF download</p>
<a href="bids_spec.pdf" class="btn btn-default btn-lg" onclick="trackOutboundLink('bids_spec.pdf'); return false;">Download BIDS specification</a>
</div>
</div>
</div>
</section>
<!-- Download Section -->
<section id="getting_started" class="content-section text-center">
<div class="download-section">
<div class="container">
<div class="col-lg-8 col-lg-offset-2">
<h2>Getting started</h2>
<p>Read the Starter Kit</p>
<a href="https://github.com/INCF/bids-starter-kit" class="btn btn-default btn-lg" onclick="trackOutboundLink('https://github.com/INCF/bids-starter-kit'); return false;">BIDS Starter Kit</a><br /><br /><br />
<p>Learn from examples</p>
<a href="https://openneuro.org/public/datasets" class="btn btn-default btn-lg" onclick="trackOutboundLink('https://openneuro.org/public/datasets'); return false;">Full Datasets in OpenNeuro.org</a><br /><br />
<a href="https://github.com/bids-standard/bids-examples" class="btn btn-default btn-lg" onclick="trackOutboundLink('https://github.com/bids-standard/bids-examples'); return false;">Stripped down datasets on GitHub.org</a><br /><br /><br />
<p>Confused? Need help?</p>
<a href="https://neurostars.org/tags/bids" class="btn btn-default btn-lg" onclick="trackOutboundLink('https://neurostars.org/tags/bids'); return false;">Post a question on NeuroStars.org</a><br />
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="get_involved" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>Get involved in making BIDS better</h2>
<p>Found a typo or want to clarify a particular description? <br />Add your modification directly to the appropriate Google Document</p>
<a href="https://docs.google.com/document/d/1HFUkAEE-pB-angVcYe6pf_-fVf4sCpOHKesUvfb8Grc/edit" class="btn btn-default btn-lg">BIDS draft</a><br /><br />
<a href="https://docs.google.com/document/d/1bq5eNDHTb6Nkx3WUiOBgKvLNnaa5OMcGtD0AZ9yms2M/edit" class="btn btn-default btn-lg">Extension Proposal 2 - Models specification</a><br /><br />
<a href="https://docs.google.com/document/d/1Wwc4A6Mow4ZPPszDIWfCUCRNstn7d_zzaWPcfcHmgI4/edit" class="btn btn-default btn-lg">Extension Proposal 3 - Common derivatives</a><br /><br />
<a href="https://docs.google.com/document/d/15tnn5F10KpgHypaQJNNGiNKsni9035GtDqJzWqkkP6c/edit" class="btn btn-default btn-lg">Extension Proposal 5 - Arterial spin labeling</a><br /><br />
<a href="https://docs.google.com/document/d/1ArMZ9Y_quTKXC-jNXZksnedK2VHHoKP3HCeO5HPcgLE/edit" class="btn btn-default btn-lg">Extension Proposal 6 - Electroencephalography</a><br /><br />
<a href="https://docs.google.com/document/d/1mqMLnxVdLwZjDd4ZiWFqjEAmOmfcModA_R535v3eQs0/edit" class="btn btn-default btn-lg">Extension Proposal 9 - Positron Emission Tomography</a><br /><br />
<a href="https://docs.google.com/document/d/1qMUkoaXzRMlJuOcfTYNr3fTsrl4SewWjffjMD5Ew6GY/edit" class="btn btn-default btn-lg">Extension Proposal 10 - intracranial Electroencephalography</a><br /><br />
<a href="https://docs.google.com/document/d/1YG2g4UkEio4t_STIBOqYOwneLEs1emHIXbGKynx7V0Y/edit" class="btn btn-default btn-lg">Extension Proposal 11 - The structural preprocessing derivatives</a><br /><br />
<a href="https://docs.google.com/document/d/16CvBwVMAs0IMhdoKmlmcm3W8254dQmNARo-7HhE-lJU/edit" class="btn btn-default btn-lg">Extension Proposal 12 - The functional preprocessing derivatives</a><br /><br />
<a href="https://docs.google.com/document/d/1qBNQimDx6CuvHjbDvuFyBIrf2WRFUOJ-u50canWjjaw/edit" class="btn btn-default btn-lg">Extension Proposal 13 - The resting state fMRI derivatives</a><br /><br />
<a href="https://docs.google.com/document/d/11gCzXOPUbYyuQx8fErtMO9tnOKC3kTWiL9axWkkILNE/edit" class="btn btn-default btn-lg">Extension Proposal 14 - Spaces and Mappings</a><br /><br />
<a href="https://docs.google.com/document/d/1WYOTXDB7GzlHoWqLjd45I3uGBgPxXddST-NTqBnroJE/edit" class="btn btn-default btn-lg">Extension Proposal 15 - Mapping file</a><br /><br />
<a href="https://docs.google.com/document/d/1cQYBvToU7tUEtWMLMwXUCB_T8gebCotE1OczUpMYW60/edit" class="btn btn-default btn-lg">Extension Proposal 16 - The diffusion weighted imaging derivatives</a><br /><br />
<a href="https://docs.google.com/document/d/1ugBdUF6dhElXdj3u9vw0iWjE6f_Bibsro3ah7sRV0GA/edit" class="btn btn-default btn-lg">Extension Proposal 17 - Generic BIDS connectivity data schema</a><br /><br />
<a href="https://docs.google.com/document/d/1eggzTCzSHG3AEKhtnEDbcdk-2avXN6I94X8aUPEBVsw/edit" class="btn btn-default btn-lg">Extension Proposal 20 - Eye Tracking</a><br /><br />
<a href="https://docs.google.com/document/d/1PmcVs7vg7Th-cGC-UrX8rAhKUHIzOI-uIOh69_mvdlw/edit" class="btn btn-default btn-lg">Extension Proposal 21 - Common Electrophysiological derivatives</a><br /><br />
<a href="https://docs.google.com/document/d/1yzsd1J9GT-aA0DWhdlgNr5LCu6_gvbjLyfvYq2FuxlY/edit" class="btn btn-default btn-lg">Extension Proposal 22 - PET preprocessing derivatives</a><br /><br />
<a href="https://docs.google.com/document/d/19Y4O9TiOtHi95Hj6-VV6GWrosIzX1-o_chpUrcbGmWY/edit" class="btn btn-default btn-lg">Extension Proposal 23 - MRSI derivatives</a><br /><br />
<p>Want to add a new field or discuss a larger improvement? <br />Post your suggestion on the mailing list</p>
<a href="https://groups.google.com/forum/#!forum/bids-discussion" class="btn btn-default btn-lg">The BIDS mailing list</a><br /><br />
<iframe id="forum_embed"
src="javascript:void(0)"
scrolling="no"
frameborder="0"
width="900"
style="background-color: white;"
height="700">
</iframe>
<script type="text/javascript">
document.getElementById('forum_embed').src =
'https://groups.google.com/forum/embed/?place=forum/bids-discussion'
+ '&showsearch=true&showpopout=true&showtabs=false'
+ '&parenturl=' + encodeURIComponent(window.location.href);
</script> <br /><br />
<p>Want to extend BIDS to a new modality or set of data types? <br />Draft a BIDS Extension Proposal (BEP) following the BIDS Contributor Guide</p>
<a href="https://docs.google.com/document/d/1pWmEEY-1-WuwBPNy5tDAxVJYQ9Een4hZJM06tQZg8X4/edit" class="btn btn-default btn-lg">BIDS Contributor Guide</a><br /><br />
<p>Please adhere to our Code of Conduct <br />Thank you for your contributions!</p>
<a href="https://github.com/bids-standard/bids-website/blob/gh-pages/CODE_OF_CONDUCT.md" class="btn btn-default btn-lg">BIDS Code of Conduct</a>
</div>
</div>
</section>
<section id="acknowlegements" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>Acknowledgements</h2>
<p>This work has been supported by the <a href="http://bids-standard.org/">International Neuroinformatics Coordinating Facility</a> and the <a href="http://wiki.incf.org/mediawiki/index.php/Neuroimaging_Task_Force">Neuroimaging Data Sharing Task Force</a>.</p>
</div>
</div>
</section>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<!-- Google Maps API Key - Use your own API key to enable the map feature. More information on the Google Maps API can be found at https://developers.google.com/maps/ -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCRngKslUGJTlibkQ3FkfTxj3Xss1UlZDA&sensor=false"></script>
<!-- Custom Theme JavaScript -->
<script src="js/grayscale.js"></script>
</body>
</html>