ejolly commited on
Commit
a656d24
·
verified ·
1 Parent(s): 74a24e3

Add atlas data + labels from atlasreader (BSD-3) for cluster reporting

Browse files
atlases/LICENSES.md ADDED
@@ -0,0 +1,418 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Atlas Licenses & Provenance
2
+
3
+ The atlas NIfTI files and label CSVs in this directory were sourced from
4
+ [atlasreader](https://github.com/miykael/atlasreader) (BSD-3-Clause), which
5
+ itself derived them from upstream sources (FSL, FreeSurfer, GIN, etc.).
6
+
7
+ If you use any of these atlases, you must comply with the license terms of
8
+ the **original** atlas distribution and cite the appropriate publication.
9
+ The sections below reproduce the per-atlas provenance and license notes from
10
+ atlasreader's `data/README.md` verbatim.
11
+
12
+ If you publish work using `atlasreader`'s atlas-labeling logic via nltools,
13
+ please also cite:
14
+
15
+ > Notter M. P., Gale D., Herholz P., Markello R. D., Notter-Bielser M.-L.,
16
+ > & Whitaker K. (2019). AtlasReader: A Python package to generate coordinate
17
+ > tables, region labels, and informative figures from statistical MRI images.
18
+ > *Journal of Open Source Software, 4(34), 1257*.
19
+ > https://doi.org/10.21105/joss.01257
20
+
21
+ ---
22
+
23
+ # Template Information
24
+
25
+ ## MNI152 T1 1mm Template
26
+
27
+ The MNI152 T1 template is taken from FSL 5.0. It's kindly supplied by Andrew
28
+ Janke. This template is derived from 152 structural images, averaged together
29
+ after high-dimensional nonlinear registration into the common MNI152 coordinate
30
+ system. It corresponds to the "[152 nonlinear 6th generation](http://www.bic.mni.mcgill.ca/ServicesAtlases/HomePage)" atlas.
31
+
32
+ ### Creation of template
33
+
34
+ This atlas is a direct copy of the file `MNI152_T1_1mm_brain.nii.gz` packaged
35
+ with FSL 5.0.
36
+
37
+ ### License
38
+
39
+ The FSL templates and atlases are under the License that can be found
40
+ [here](https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/Licence).
41
+
42
+ ## ICBM 2009c Nonlinear Asymmetric Template
43
+
44
+ A number of unbiased non-linear averages of the MNI152 database have been
45
+ generated that combines the attractions of both high-spatial resolution and
46
+ signal-to-noise while not being subject to the vagaries of any single brain
47
+ (Fonov et al., 2011). The procedure involved multiple iterations of a process
48
+ where, at each iteration, individual native MRIs were non-linearly fitted to
49
+ the average template from the previous iteration, beginning with the MNI152
50
+ linear template. The templates present an unbiased standard magnetic resonance
51
+ imaging template brain volume for normal population. These volumes were created
52
+ using data from ICBM project. For more information see: http://www.bic.mni.mcgill.ca/ServicesAtlases/ICBM152NLin2009.
53
+
54
+ ### Creation of template
55
+
56
+ The template was download on 24. Sept. 2018 from
57
+ http://www.bic.mni.mcgill.ca/~vfonov/icbm/2009/mni_icbm152_nlin_asym_09c_nifti.zip.
58
+ We used the following command to create a T1 brain only template:
59
+
60
+ ```
61
+ fslmaths mni_icbm152_t1_tal_nlin_asym_09c.nii \
62
+ -mul mni_icbm152_t1_tal_nlin_asym_09c_mask.nii \
63
+ mni_icbm152_t1_tal_nlin_asym_09c_brain.nii.gz \
64
+ -odt short
65
+ ```
66
+
67
+ ### License
68
+
69
+ Copyright (C) 1993-2004 Louis Collins, McConnell Brain Imaging Centre, Montreal
70
+ Neurological Institute, McGill University. Permission to use, copy, modify, and
71
+ distribute this software and its documentation for any purpose and without fee
72
+ is hereby granted, provided that the above copyright notice appear in all
73
+ copies. The authors and McGill University make no representations about the
74
+ suitability of this software for any purpose. It is provided "as is" without
75
+ express or implied warranty. The authors are not responsible for any data loss,
76
+ equipment damage, property loss, or injury to subjects or patients resulting
77
+ from the use or misuse of this software package.
78
+
79
+ # Atlas Information
80
+
81
+ `atlasreader` contains many different atlases that each are under their own
82
+ license and related to specific publications. This README file acknowledges those
83
+ licenses, describes the origin of the atlases and how they were acquired and
84
+ explains how the atlases were adapted to fit into the `atlasreader` framework.
85
+ Many of those atlases were downloaded with `nilearn.datasets`'s `fetch_`
86
+ functions. For more about this, go to [`nilearn`'s official homepage](http://nilearn.github.io/modules/reference.html#module-nilearn.datasets).
87
+
88
+ ## Anatomical Automatic Labeling 2 (AAL2)
89
+
90
+ Anatomical Automatic Labeling (AAL) is a package for the anatomical labeling of
91
+ functional brain mapping experiments. It is an in-house package made by
92
+ Neurofunctional Imaging Group (GIN, UMR5296, Bordeaux, France), which is
93
+ available to the scientific community as a copyright freeware under the terms of
94
+ the GNU General Public License. For more information on this dataset’s
95
+ structure, see http://www.gin.cnrs.fr/AAL-217?lang=en.
96
+
97
+ This atlas is the result of an automated anatomical parcellation of the
98
+ spatially normalized single-subject high-resolution T1 volume provided by the
99
+ Montreal Neurological Institute (MNI) (Collins et al., 1998).
100
+
101
+ ### Creation of atlas
102
+
103
+ The atlas AAL2 was download from
104
+ http://www.gin.cnrs.fr/wp-content/uploads/aal2_for_SPM12.tar.gz on 25.
105
+ Sept. 2018. We used the `AAL2.nii` file contained in the `atlas` folder. The
106
+ labels are coming from `AAL2.xml` also contain in the `atlas` folder.
107
+
108
+ ### License
109
+
110
+ Unknown.
111
+
112
+ ## Destrieux 2009
113
+
114
+ ### Background
115
+ The 'Destrieux' cortical atlas is based on a parcellation scheme that first
116
+ divided the cortex into gyral and sulcal regions, the limit between both being
117
+ given by the curvature value of the surface. A gyrus only includes the cortex
118
+ visible on the pial view, the hidden cortex (banks of sulci) are marked sulcus.
119
+ The result is a complete labeling of cortical sulci and gyri.
120
+
121
+ ### Creation of atlas
122
+
123
+ The atlas is a direct copy of the file `aparc.a2009s+aseg.mgz` from the folder
124
+ `subjects/cvs_avg35_inMNI152/mri` in FreeSurfer version 6.0. The `mgz` file was
125
+ converted into NIfTI standard with FreeSurfer's `mri_convert` and the labels
126
+ table was created from `FreeSurferColorLUT.txt`.
127
+
128
+ ### License
129
+
130
+ The Destrieux 2009 atlas is under the License terms of FreeSurfer that can be
131
+ found here: https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferSoftwareLicense
132
+ **Important Note**: FreeSurfer's license agreement requires you to register. For
133
+ more, see this link: https://surfer.nmr.mgh.harvard.edu/fswiki/License
134
+
135
+ ## Desikan & Killiany
136
+
137
+ The 'Desikan-Killiany' cortical atlas is a gyral based atlas: i.e., a gyrus was
138
+ defined as running between the bottoms of two adjacent sulci. That is, a gyrus
139
+ includes the part visible on the pial view + adjacent banks of the sulci
140
+ limiting this gyrus.
141
+
142
+ ### Creation of atlas
143
+
144
+ The atlas is a direct copy of the file `aparc+aseg.mgz` from the folder
145
+ `subjects/cvs_avg35_inMNI152/mri` in FreeSurfer version 6.0. The `mgz` file was
146
+ converted into NIfTI standard with FreeSurfer's `mri_convert` and the labels
147
+ table was created from `FreeSurferColorLUT.txt`.
148
+
149
+ ### License
150
+
151
+ The Destrieux 2009 atlas is under the License terms of FreeSurfer that can be
152
+ found here: https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferSoftwareLicense
153
+ **Important Note**: FreeSurfer's license agreement requires you to register. For
154
+ more, see this link: https://surfer.nmr.mgh.harvard.edu/fswiki/License
155
+
156
+ ## Harvard Oxford Atlas
157
+
158
+ The Harvard-Oxford cortical and subcortical structural atlases are probabilistic
159
+ atlases covering 48 cortical and 21 subcortical structural areas, derived from
160
+ structural data and segmentations kindly provided by the
161
+ [Harvard Center for Morphometric Analysis](http://www.cma.mgh.harvard.edu/).
162
+
163
+ T1-weighted images of 21 healthy male and 16 healthy female subjects (ages
164
+ 18-50) were individually segmented by the CMA using semi-automated tools
165
+ developed in-house. The T1-weighted images were affine-registered to MNI152
166
+ space using FLIRT (FSL), and the transforms then applied to the individual
167
+ labels. Finally, these were combined across subjects to form population
168
+ probability maps for each label.
169
+
170
+ ### Creation of atlas
171
+
172
+ This atlas is a direct copy of the two files
173
+ `HarvardOxford-cortl-prob-1mm.nii.gz` and `HarvardOxford-sub-prob-1mm.nii.gz`
174
+ Harvard Oxford atlas packaged with FSL 5.0. The files were merged using FSL's
175
+ `fslmerge command`.
176
+
177
+ This probability atlas now also contains the probability values for the labels
178
+ `Cerebral_White_Matter` and `Cerebral_Cortex`, spanning the whole brain. Because
179
+ the probability for those labels will often be higher than for other labels, we
180
+ had to manually remove those labels from the atlas and label file. This can be
181
+ done with the following command:
182
+
183
+ ```python
184
+ import numpy as np
185
+ import nibabel as nb
186
+
187
+ # Load the image and the data
188
+ img = nb.load('atlas_harvard_oxford.nii.gz')
189
+ data = img.get_fdata()
190
+
191
+ # Remove labels 96, 97, 107 and 108
192
+ new_data = np.delete(data, [96, 97, 107, 108], axis=-1)
193
+
194
+ # Overwrite atlas file
195
+ nb.Nifti1Image(new_data, img.affine, img.header).to_filename('atlas_harvard_oxford.nii.gz')
196
+ ```
197
+
198
+ ### License
199
+
200
+ The FSL templates and atlases are under the License that can be found
201
+ [here](https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/Licence).
202
+
203
+ ## Jülich histological (cyto- and myelo-architectonic) atlas
204
+
205
+ A probabilistic atlas created by averaging multi-subject post-mortem cyto- and
206
+ myelo-architectonic segmentations, performed by the team of Profs Zilles and
207
+ Amunts at the [Research Center Jülich](http://www.fz-juelich.de/inm/inm-1/DE/Home/home_node.html)
208
+ and kindly provided by Simon Eickhoff.
209
+
210
+ The atlas contains 52 grey matter structures and 10 white matter structures.
211
+ This is an update to the data used in Eickhoff's
212
+ [Anatomy Toolbox](http://www.fz-juelich.de/inm/inm-1/DE/Forschung/_docs/SPMAnatomyToolbox/SPMAnatomyToolbox_node.html) v1.5.
213
+ The atlas is based on the miscroscopic and quantitative histological examination
214
+ of ten human post-mortem brains. The histological volumes of these brains were
215
+ 3D reconstructed and spatially normalised into the space of the MNI single
216
+ subject template to create a probabilistic map of each area. For the FSL version
217
+ of this atlas, these probabilistic maps were then linearly transformed into
218
+ MNI152 space.
219
+
220
+ ### Creation of atlas
221
+
222
+ This atlas is a direct copy of the file `Juelich-prob-1mm.nii.gz` of the Juelich
223
+ atlas packaged with FSL 5.0.
224
+
225
+ ### License
226
+
227
+ The FSL templates and atlases are under the License that can be found
228
+ [here](https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/Licence).
229
+
230
+
231
+ ## Talairach atlas
232
+
233
+ This is a digitised version of the original (coarsely sliced) Talairach atlas
234
+ (Lancaster 2000) after the application of a correcting affine transform
235
+ (Lancaster 2007) to register it into MNI152 space. For more see http://talairach.org/about.html#Labels.
236
+
237
+ The atlas was split into two separate atlases. The `talairach_gyurs` atlas
238
+ contains the labels listed under **Gyrus** and the `talairach_ba` atlas contains
239
+ the labels listed under **Cell type** and the **Brodmann Areas**, as listed
240
+ [here](http://www.talairach.org/labels.html).
241
+
242
+ ### Creation of atlas
243
+
244
+ The talairach atlas was downloaded from http://www.talairach.org/talairach.nii
245
+ on the 24. Sept. 2018 using the `fetch_atlas_talairach` function from
246
+ `nilearn.datasets`. The two sub-atlases were separated with `nilearn` and the
247
+ datatype was converted from `int64` to `int16` with `fslmaths`.
248
+
249
+ The talairach atlas is identical to the file `Talairach-labels-1mm.nii.gz` that
250
+ is packaged with FSL 5.0.
251
+
252
+ ### License
253
+
254
+ The FSL templates and atlases are under the License that can be found [here](https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/Licence).
255
+
256
+ ## MarsAtlas (aka MarsAtlas-Colin27-MNI)
257
+
258
+ The MarsAtlas used in `atlasreader` is the "The MarsAtlas cortical parcellation
259
+ of Colin27 in the MNI space". For more information about this atlas see https://meca-brain.org/software/marsatlas-colin27/.
260
+
261
+ ### Creation of atlas
262
+
263
+ The atlas was downloaded from https://meca-brain.org/software/marsatlas-colin27/ on the 15.
264
+ Oct. 2018 via the following link: https://www.dropbox.com/s/ndz8qtqblkciole/MarsAtlas-MNI-Colin27.zip?dl=1
265
+
266
+ The labels file was manually created according to the table of cortical(http://meca-brain.org/software/marsatlas/)
267
+ and sub-cortical (http://meca-brain.org/software/marsatlas-subcortical/) regions.
268
+ For cortical regions, the label name is a combination of the "Full Name" and the
269
+ "Brodman Area" label.
270
+
271
+ ### License
272
+
273
+ For more information about the license and copyright of the `MarsAtlas-Colin27-MNI`
274
+ atlas, go to https://meca-brain.org/software/marsatlas-colin27/.
275
+
276
+
277
+ ## Neuromorphometrics
278
+
279
+ Maximum probability tissue labels derived from the "MICCAI 2012 Grand Challenge
280
+ and Workshop on Multi-Atlas Labeling" (https://masi.vuse.vanderbilt.edu/workshop2012/index.php/Challenge_Details).
281
+ These data were released under the Creative Commons Attribution-NonCommercial
282
+ (CC BY-NC) with no end date. Users should credit the MRI scans as originating
283
+ from the OASIS project (http://www.oasis-brains.org/) and the labeled data as
284
+ "provided by Neuromorphometrics, Inc. (http://Neuromorphometrics.com/) under
285
+ academic subscription". These references should be included in all workshop and
286
+ final publications.
287
+
288
+ ### Creation of atlas
289
+
290
+ The Neuromorphometrics atlas is a direct copy of the file `labels_Neuromorphometrics.nii`
291
+ in the folder `spm12/tpm`, available within SPM12.
292
+
293
+ ### License
294
+
295
+ The direct license of the atlas can be found here: http://www.neuromorphometrics.com/wp-content/uploads/2013/06/NVM_Demo_License2013_v1.txt
296
+
297
+ The Neuromorphometrics atlas version that we are using is the one provided with
298
+ SPM12, therefore we also want to point to the SPM license of SPM12.
299
+ As SPM is free but copyright software, distributed under the terms of the GNU
300
+ General Public Licence as published by the Free Software Foundation (either
301
+ version 2, as given in file spm_LICENCE.man, or at your option, any later
302
+ version). Further details on "copyleft" can be found at http://www.gnu.org/copyleft/.
303
+ In particular, SPM is supplied as is. No formal support or maintenance is
304
+ provided or implied. For more see: https://www.fil.ion.ucl.ac.uk/spm/software/
305
+ or https://github.com/neurodebian/spm12/blob/master/LICENCE.txt
306
+
307
+ ## Atlas of Intrinsic Connectivity of Homotopic Areas (AICHA)
308
+
309
+ AICHA (Atlas of Intrinsic Connectivity of Homotopic Areas) is a functional brain
310
+ ROIs atlas based on resting-state fMRI data acquired in 281 individuals.
311
+ AICHA ROIs cover the whole cerebrum, each having 1. homogeneity of its
312
+ constituting voxels intrinsic activity, and 2. a unique homotopic contralateral
313
+ counterpart with which it has maximal intrinsic connectivity.
314
+
315
+ The AICHA atlas includes 192 couples of homotopic regions for a total of 384
316
+ regions. AICHA is provided in the MNI stereotaxic space (MNI ICBM 152, Template
317
+ sampling size of 2x2x2 mm3 voxels; bounding box, x = -90 to 90 mm, y = -126 to
318
+ 91 mm, z = -72 to 109 mm). Each region get a pseudo-color with odd number for
319
+ region belong to the left hemisphere and even for the right. Each homotopic pair
320
+ is labeled with an odd number (Left) and the following even number (Right).
321
+ For example: 1 and 2 code for G_Frontal_Sup-1-L and G_Frontal_Sup-1-R
322
+ respectively, 3 and 4 code for G_Frontal_Sup-2-L and G_Frontal_Sup-2-R,...
323
+
324
+ AICHA atlas includes both regions located in the crown of the gyri (named Gyrus,
325
+ region name beginning by "G_") and regions located in the depth of the sulci
326
+ (named Suclus, region name beginning by "S_"). In addition the subcortical
327
+ nuclei were labeled separately (name Nucleus, region name beginning by "N_").
328
+ Different parcels belonging to the same anatomical region were labeled with
329
+ numbers (starting to 1). For example the precuneus show as 9 subparts labeled
330
+ from G_Precuneus-1-L to G_Precuneus-9-L.
331
+
332
+ ### Creation of atlas
333
+
334
+ The atlas was downloaded from http://www.gin.cnrs.fr/en/tools/aicha/ on the 24.
335
+ Sept. 2018 via the following link: http://www.gin.cnrs.fr/wp-content/uploads/aicha_v1.zip
336
+
337
+ We compressed the file `AICHA.nii` with `fslmaths` and transformed the data type
338
+ from `float32` to `int16`.
339
+
340
+ ### License
341
+
342
+ This atlas is protected by copyright; you can freely use it for none profit
343
+ research purposes, providing the above reference is cited. For other use please
344
+ contact us through aicha.gin.brainatlas@gmail.com
345
+
346
+ # References
347
+
348
+ If you're using `atlasreader`, please make sure to cite the references that
349
+ correspond to the atlases you are using:
350
+
351
+
352
+
353
+ ## MNI152 T1 1mm Template
354
+
355
+ The references are related to FSL 5.0:
356
+
357
+ - Rahul S. Desikan, Florent Ségonne, Bruce Fischl, Brian T. Quinn, Bradford C. Dickerson, Deborah Blacker, Randy L. Buckner, Anders M. Dale, R. Paul Maguire, Bradley T. Hyman, Marilyn S. Albert, Ronald J. Killiany (2006). An automated labeling system for subdividing the human cerebral cortex on MRI scans into gyral based regions of interest. Neuroimage, 31, 968–980.
358
+ - Simon B Eickhoff, Klaas E Stephan, Hartmut Mohlberg, Christian Grefkes, Gereon R Fink, Katrin Amunts, Karl Zilles (2005). A new SPM toolbox for combining probabilistic cytoarchitectonic maps and functional imaging data. Neuroimage, 25, 1325–1335.
359
+ - Kegang Hua, Jiangyang Zhang, Setsu Wakana, Hangyi Jiang, Xin Li, Daniel S Reich, Peter A Calabresi, James J Pekar, Peter C M van Zijl, Susumu Mori (2008). Tract probability maps in stereotaxic spaces: analyses of white matter anatomy and tract-specific quantification. Neuroimage, 39, 336–347.
360
+ - J Mazziotta, A Toga, A Evans, P Fox, J Lancaster, K Zilles, R Woods, T Paus, G Simpson, B Pike, C Holmes, L Collins, P Thompson, D MacDonald, M Iacoboni, T Schormann, K Amunts, N Palomero-Gallagher, S Geyer, L Parsons, K Narr, N Kabani, G Le Goualher, D Boomsma, T Cannon, R Kawashima, and B Mazoyer (2001). A probabilistic atlas and reference system for the human brain: International Consortium for Brain Mapping (ICBM). The Royal Society Philosophical Transactions B, 356, 1293–1322.
361
+ - Jack L. Lancaster, Marty G. Woldorff, Lawrence M. Parsons, Mario Liotti, Catarina S. Freitas, Lacy Rainey, Peter V. Kochunov, Dan Nickerson, Shawn A. Mikiten, Peter T. Fox (2000). Automated Talairach atlas labels for functional brain mapping. Human Brain Mapping, 10, 120–131.
362
+ - TEJ Behrens, H. Johansen-Berg, MW Woolrich, SM Smith, CAM Wheeler-Kingshott, PA Boulby, GJ Barker, EL Sillery, K. Sheehan, O. Ciccarelli , AJ Thompson, JM Brady, PM Matthews (2003). Non-invasive mapping of connections between human thalamus and cortex using diffusion imaging. Nature Neuroscience, 6, 750–757.
363
+ - Jörn Diedrichsen, Joshua H Balsters, Jonathan Flavell, Emma Cussans, Narender Ramnani (2009). A probabilistic MR atlas of the human cerebellum. Neuroimage, 46, 39-46.
364
+
365
+ ## ICBM 2009c Nonlinear Asymmetric
366
+
367
+ - VS Fonov, AC Evans, K Botteron, CR Almli, RC McKinstry, DL Collins and BDCG, Unbiased average age-appropriate atlases for pediatric studies, NeuroImage,Volume 54, Issue 1, January 2011, ISSN 1053–8119, DOI: 10.1016/j.neuroimage.2010.07.033
368
+ - VS Fonov, AC Evans, RC McKinstry, CR Almli and DL Collins, Unbiased nonlinear average age-appropriate brain templates from birth to adulthood, NeuroImage, Volume 47, Supplement 1, July 2009, Page S102 Organization for Human Brain Mapping 2009 Annual Meeting, DOI: http://dx.doi.org/10.1016/S1053-8119(09)70884-5
369
+
370
+ ## Anatomical Automatic Labeling 2 (AAL2)
371
+
372
+ - Automated Anatomical Labeling of Activations in SPM Using a Macroscopic Anatomical Parcellation of the MNI MRI Single-Subject Brain. N. Tzourio-Mazoyer, B. Landeau, D. Papathanassiou, F. Crivello, O. Étard, N. Delcroix, B. Mazoyer, and M. Joliot. NeuroImage 2002. 15 :273-289
373
+ http://dx.doi.org/10.1006/nimg.2001.0978
374
+ - Implementation of a new parcellation of the orbitofrontal cortex in the automated anatomical labeling atlas. Rolls ET, Joliot M & Tzourio-Mazoyer N (2015) . NeuroImage
375
+ http://dx.doi.org/10.1016/j.neuroimage.2015.07.075
376
+ - Collins, D. L., Zijdenbos, A. P., Kollokian, V., Sled, J. G., Kabani, N. J., Holmes, C. J., & Evans, A. C. (1998). Design and construction of a realistic digital brain phantom. IEEE transactions on medical imaging, 17(3), 463-468.
377
+
378
+ ## Destrieux 2009
379
+
380
+ - Fischl, Bruce, et al. "Automatically parcellating the human cerebral cortex." Cerebral cortex 14.1 (2004): 11-22.
381
+ - Destrieux, C., et al. "A sulcal depth-based anatomical parcellation of the cerebral cortex." NeuroImage 47 (2009): S151.
382
+
383
+ ## Desikan & Killiany
384
+
385
+ - Fischl, Bruce, et al. "Automatically parcellating the human cerebral cortex." Cerebral cortex 14.1 (2004): 11-22.
386
+ - An automated labeling system for subdividing the human cerebral cortex on MRI scans into gyral based regions of interest, Desikan et al., (2006). NeuroImage, 31(3):968-80.
387
+
388
+ ## Harvard Oxford Atlas
389
+
390
+ - Makris N, Goldstein JM, Kennedy D, Hodge SM, Caviness VS, Faraone SV, Tsuang MT, Seidman LJ. Decreased volume of left and total anterior insular lobule in schizophrenia. Schizophr Res. 2006 Apr;83(2-3):155-71
391
+ - Frazier JA, Chiu S, Breeze JL, Makris N, Lange N, Kennedy DN, Herbert MR, Bent EK, Koneru VK, Dieterich ME, Hodge SM, Rauch SL, Grant PE, Cohen BM, Seidman LJ, Caviness VS, Biederman J. Structural brain magnetic resonance imaging of limbic and thalamic volumes in pediatric bipolar disorder. Am J Psychiatry. 2005 Jul;162(7):1256-65
392
+ - Desikan RS, Ségonne F, Fischl B, Quinn BT, Dickerson BC, Blacker D, Buckner RL, Dale AM, Maguire RP, Hyman BT, Albert MS, Killiany RJ. An automated labeling system for subdividing the human cerebral cortex on MRI scans into gyral based regions of interest. Neuroimage. 2006 Jul 1;31(3):968-80.
393
+ - Goldstein JM, Seidman LJ, Makris N, Ahern T, O'Brien LM, Caviness VS Jr, Kennedy DN, Faraone SV, Tsuang MT. Hypothalamic abnormalities in schizophrenia: sex effects and genetic vulnerability. Biol Psychiatry. 2007 Apr 15;61(8):935-45
394
+
395
+ ## Jülich histological (cyto- and myelo-architectonic) atlas
396
+
397
+ - Eickhoff et al., A new SPM toolbox for combining probabilistic cytoarchitectonic maps and functional imaging data. Neuroimage 25(4):1325-35 (2005)
398
+ - Eickhoff et al., Testing anatomically specified hypotheses in functional imaging using cytoarchitectonic maps. NeuroImage 32(2): 570-582 (2006)
399
+ - Eickhoff et al., Assignment of functional activations to probabilistic cytoarchitectonic areas revisited. NeuroImage, 36(3): 511-521 (2007)
400
+
401
+ ## Talairach atlas
402
+
403
+ - Talairach et al. Co-planar stereotaxic atlas of the human brain. Thieme, New York. (1988)
404
+ - Lancaster et al. Bias between MNI and Talairach coordinates analyzed using the ICBM-152 brain template. Human Brain Mapping (in press) (2007)
405
+ - Lancaster JL, Woldorff MG, Parsons LM, Liotti M, Freitas CS, Rainey L, Kochunov PV, Nickerson D, Mikiten SA, Fox PT, “Automated Talairach Atlas labels for functional brain mapping”. Human Brain Mapping 10:120-131, 2000.
406
+ - Lancaster JL, Rainey LH, Summerlin JL, Freitas CS, Fox PT, Evans AC, Toga AW, Mazziotta JC. Automated labeling of the human brain: A preliminary report on the development and evaluation of a forward-transform method. Hum Brain Mapp 5, 238-242, 1997.
407
+
408
+ ## MarsAtlas
409
+
410
+ For information about references, see https://meca-brain.org/software/marsatlas-colin27/.
411
+
412
+ ## Neuromorphometrics
413
+
414
+ Reference missing.
415
+
416
+ ## Atlas of Intrinsic Connectivity of Homotopic Areas (AICHA)
417
+
418
+ - Joliot M, Jobard G, Naveau M, Delcroix N, Petit L, Zago L, Crivello F, Mellet E, Mazoyer B, Tzourio-Mazoyer N (2015) AICHA: An atlas of intrinsic connectivity of homotopic areas. J Neurosci Methods 254:46-59.
atlases/atlas_aal.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73d6a365d113557f874c4cf26dd1a73de412c266f2c2594a6f69fafc5af926a7
3
+ size 40998
atlases/atlas_aicha.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e587be5709be455d583e6b891115dd68a434d943de0824a2334d4afa87ff29a
3
+ size 50680
atlases/atlas_desikan_killiany.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c81c6e2cd54581691430308b0989f2779616f6a9e4ad514296ea55bed078492
3
+ size 300393
atlases/atlas_destrieux.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e31b2dafb7d3e125f400a7130c2a6ef05f832ad5efb77982aa6c873544f299cf
3
+ size 324484
atlases/atlas_harvard_oxford.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25117e13ab3e81388f058ff5bd13ad4a33f30b09cfd63eb5de8d90348aa1d28c
3
+ size 4019368
atlases/atlas_juelich.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5b42d2e21a7f6f0fa889e1d62443927f9a00704654b2486815be572bd9a827a
3
+ size 3072418
atlases/atlas_marsatlas.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c56d040248f8b65d65315d767a328d067f1728f7240561db5472f85de9d0cd4
3
+ size 262561
atlases/atlas_neuromorphometrics.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae41b9eaa1e15c31ce94dbddfedaca9af8b54635f688b4144abac8920ed868aa
3
+ size 72989
atlases/atlas_schaefer_200.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:226ef5fec829094293857a0ca8de9fd1915b7d02a287f2f5f871955e21ab35d1
3
+ size 173034
atlases/atlas_talairach_ba.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db1553c3e7c19860ff509ee171d5c452c2a4bfeabd529052c11244367b0ba6a4
3
+ size 89693
atlases/atlas_talairach_gyrus.nii.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e63d64242c61b8ad91f1bebd147bbcab7aa9f9201b587919d2a90e12e3784fe
3
+ size 70769
atlases/labels_aal.csv ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 2001,Precentral_L
3
+ 2002,Precentral_R
4
+ 2101,Frontal_Sup_2_L
5
+ 2102,Frontal_Sup_2_R
6
+ 2201,Frontal_Mid_2_L
7
+ 2202,Frontal_Mid_2_R
8
+ 2301,Frontal_Inf_Oper_L
9
+ 2302,Frontal_Inf_Oper_R
10
+ 2311,Frontal_Inf_Tri_L
11
+ 2312,Frontal_Inf_Tri_R
12
+ 2321,Frontal_Inf_Orb_2_L
13
+ 2322,Frontal_Inf_Orb_2_R
14
+ 2331,Rolandic_Oper_L
15
+ 2332,Rolandic_Oper_R
16
+ 2401,Supp_Motor_Area_L
17
+ 2402,Supp_Motor_Area_R
18
+ 2501,Olfactory_L
19
+ 2502,Olfactory_R
20
+ 2601,Frontal_Sup_Medial_L
21
+ 2602,Frontal_Sup_Medial_R
22
+ 2611,Frontal_Med_Orb_L
23
+ 2612,Frontal_Med_Orb_R
24
+ 2701,Rectus_L
25
+ 2702,Rectus_R
26
+ 2801,OFCmed_L
27
+ 2802,OFCmed_R
28
+ 2811,OFCant_L
29
+ 2812,OFCant_R
30
+ 2821,OFCpost_L
31
+ 2822,OFCpost_R
32
+ 2831,OFClat_L
33
+ 2832,OFClat_R
34
+ 3001,Insula_L
35
+ 3002,Insula_R
36
+ 4001,Cingulate_Ant_L
37
+ 4002,Cingulate_Ant_R
38
+ 4011,Cingulate_Mid_L
39
+ 4012,Cingulate_Mid_R
40
+ 4021,Cingulate_Post_L
41
+ 4022,Cingulate_Post_R
42
+ 4101,Hippocampus_L
43
+ 4102,Hippocampus_R
44
+ 4111,ParaHippocampal_L
45
+ 4112,ParaHippocampal_R
46
+ 4201,Amygdala_L
47
+ 4202,Amygdala_R
48
+ 5001,Calcarine_L
49
+ 5002,Calcarine_R
50
+ 5011,Cuneus_L
51
+ 5012,Cuneus_R
52
+ 5021,Lingual_L
53
+ 5022,Lingual_R
54
+ 5101,Occipital_Sup_L
55
+ 5102,Occipital_Sup_R
56
+ 5201,Occipital_Mid_L
57
+ 5202,Occipital_Mid_R
58
+ 5301,Occipital_Inf_L
59
+ 5302,Occipital_Inf_R
60
+ 5401,Fusiform_L
61
+ 5402,Fusiform_R
62
+ 6001,Postcentral_L
63
+ 6002,Postcentral_R
64
+ 6101,Parietal_Sup_L
65
+ 6102,Parietal_Sup_R
66
+ 6201,Parietal_Inf_L
67
+ 6202,Parietal_Inf_R
68
+ 6211,SupraMarginal_L
69
+ 6212,SupraMarginal_R
70
+ 6221,Angular_L
71
+ 6222,Angular_R
72
+ 6301,Precuneus_L
73
+ 6302,Precuneus_R
74
+ 6401,Paracentral_Lobule_L
75
+ 6402,Paracentral_Lobule_R
76
+ 7001,Caudate_L
77
+ 7002,Caudate_R
78
+ 7011,Putamen_L
79
+ 7012,Putamen_R
80
+ 7021,Pallidum_L
81
+ 7022,Pallidum_R
82
+ 7101,Thalamus_L
83
+ 7102,Thalamus_R
84
+ 8101,Heschl_L
85
+ 8102,Heschl_R
86
+ 8111,Temporal_Sup_L
87
+ 8112,Temporal_Sup_R
88
+ 8121,Temporal_Pole_Sup_L
89
+ 8122,Temporal_Pole_Sup_R
90
+ 8201,Temporal_Mid_L
91
+ 8202,Temporal_Mid_R
92
+ 8211,Temporal_Pole_Mid_L
93
+ 8212,Temporal_Pole_Mid_R
94
+ 8301,Temporal_Inf_L
95
+ 8302,Temporal_Inf_R
96
+ 9001,Cerebelum_Crus1_L
97
+ 9002,Cerebelum_Crus1_R
98
+ 9011,Cerebelum_Crus2_L
99
+ 9012,Cerebelum_Crus2_R
100
+ 9021,Cerebelum_3_L
101
+ 9022,Cerebelum_3_R
102
+ 9031,Cerebelum_4_5_L
103
+ 9032,Cerebelum_4_5_R
104
+ 9041,Cerebelum_6_L
105
+ 9042,Cerebelum_6_R
106
+ 9051,Cerebelum_7b_L
107
+ 9052,Cerebelum_7b_R
108
+ 9061,Cerebelum_8_L
109
+ 9062,Cerebelum_8_R
110
+ 9071,Cerebelum_9_L
111
+ 9072,Cerebelum_9_R
112
+ 9081,Cerebelum_10_L
113
+ 9082,Cerebelum_10_R
114
+ 9100,Vermis_1_2
115
+ 9110,Vermis_3
116
+ 9120,Vermis_4_5
117
+ 9130,Vermis_6
118
+ 9140,Vermis_7
119
+ 9150,Vermis_8
120
+ 9160,Vermis_9
121
+ 9170,Vermis_10
atlases/labels_aicha.csv ADDED
@@ -0,0 +1,385 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 1,G_Frontal_Sup-1-L
3
+ 2,G_Frontal_Sup-1-R
4
+ 3,G_Frontal_Sup-2-L
5
+ 4,G_Frontal_Sup-2-R
6
+ 5,G_Frontal_Sup-3-L
7
+ 6,G_Frontal_Sup-3-R
8
+ 7,S_Sup_Frontal-1-L
9
+ 8,S_Sup_Frontal-1-R
10
+ 9,S_Sup_Frontal-2-L
11
+ 10,S_Sup_Frontal-2-R
12
+ 11,S_Sup_Frontal-3-L
13
+ 12,S_Sup_Frontal-3-R
14
+ 13,S_Sup_Frontal-4-L
15
+ 14,S_Sup_Frontal-4-R
16
+ 15,S_Sup_Frontal-5-L
17
+ 16,S_Sup_Frontal-5-R
18
+ 17,S_Sup_Frontal-6-L
19
+ 18,S_Sup_Frontal-6-R
20
+ 19,G_Frontal_Mid-1-L
21
+ 20,G_Frontal_Mid-1-R
22
+ 21,G_Frontal_Mid-2-L
23
+ 22,G_Frontal_Mid-2-R
24
+ 23,G_Frontal_Mid-3-L
25
+ 24,G_Frontal_Mid-3-R
26
+ 25,G_Frontal_Mid-4-L
27
+ 26,G_Frontal_Mid-4-R
28
+ 27,G_Frontal_Mid-5-L
29
+ 28,G_Frontal_Mid-5-R
30
+ 29,S_Inf_Frontal-1-L
31
+ 30,S_Inf_Frontal-1-R
32
+ 31,S_Inf_Frontal-2-L
33
+ 32,S_Inf_Frontal-2-R
34
+ 33,G_Frontal_Inf_Tri-1-L
35
+ 34,G_Frontal_Inf_Tri-1-R
36
+ 35,G_Frontal_Sup_Orb-1-L
37
+ 36,G_Frontal_Sup_Orb-1-R
38
+ 37,G_Frontal_Mid_Orb-1-L
39
+ 38,G_Frontal_Mid_Orb-1-R
40
+ 39,G_Frontal_Mid_Orb-2-L
41
+ 40,G_Frontal_Mid_Orb-2-R
42
+ 41,G_Frontal_Inf_Orb-1-L
43
+ 42,G_Frontal_Inf_Orb-1-R
44
+ 43,G_Frontal_Inf_Orb-2-L
45
+ 44,G_Frontal_Inf_Orb-2-R
46
+ 45,S_Orbital-1-L
47
+ 46,S_Orbital-1-R
48
+ 47,S_Orbital-2-L
49
+ 48,S_Orbital-2-R
50
+ 49,S_Olfactory-1-L
51
+ 50,S_Olfactory-1-R
52
+ 51,S_Precentral-1-L
53
+ 52,S_Precentral-1-R
54
+ 53,S_Precentral-2-L
55
+ 54,S_Precentral-2-R
56
+ 55,S_Precentral-3-L
57
+ 56,S_Precentral-3-R
58
+ 57,S_Precentral-4-L
59
+ 58,S_Precentral-4-R
60
+ 59,S_Precentral-5-L
61
+ 60,S_Precentral-5-R
62
+ 61,S_Precentral-6-L
63
+ 62,S_Precentral-6-R
64
+ 63,S_Rolando-1-L
65
+ 64,S_Rolando-1-R
66
+ 65,S_Rolando-2-L
67
+ 66,S_Rolando-2-R
68
+ 67,S_Rolando-3-L
69
+ 68,S_Rolando-3-R
70
+ 69,S_Rolando-4-L
71
+ 70,S_Rolando-4-R
72
+ 71,S_Postcentral-1-L
73
+ 72,S_Postcentral-1-R
74
+ 73,S_Postcentral-2-L
75
+ 74,S_Postcentral-2-R
76
+ 75,S_Postcentral-3-L
77
+ 76,S_Postcentral-3-R
78
+ 77,G_Parietal_Sup-1-L
79
+ 78,G_Parietal_Sup-1-R
80
+ 79,G_Parietal_Sup-2-L
81
+ 80,G_Parietal_Sup-2-R
82
+ 81,G_Parietal_Sup-3-L
83
+ 82,G_Parietal_Sup-3-R
84
+ 83,G_Parietal_Sup-4-L
85
+ 84,G_Parietal_Sup-4-R
86
+ 85,G_Parietal_Sup-5-L
87
+ 86,G_Parietal_Sup-5-R
88
+ 87,G_Supramarginal-1-L
89
+ 88,G_Supramarginal-1-R
90
+ 89,G_SupraMarginal-2-L
91
+ 90,G_SupraMarginal-2-R
92
+ 91,G_Supramarginal-3-L
93
+ 92,G_Supramarginal-3-R
94
+ 93,G_Supramarginal-4-L
95
+ 94,G_Supramarginal-4-R
96
+ 95,G_SupraMarginal-5-L
97
+ 96,G_SupraMarginal-5-R
98
+ 97,G_SupraMarginal-6-L
99
+ 98,G_SupraMarginal-6-R
100
+ 99,G_SupraMarginal-7-L
101
+ 100,G_SupraMarginal-7-R
102
+ 101,G_Angular-1-L
103
+ 102,G_Angular-1-R
104
+ 103,G_Angular-2-L
105
+ 104,G_Angular-2-R
106
+ 105,G_Angular-3-L
107
+ 106,G_Angular-3-R
108
+ 107,G_Parietal_Inf-1-L
109
+ 108,G_Parietal_Inf-1-R
110
+ 109,S_Intraparietal-1-L
111
+ 110,S_Intraparietal-1-R
112
+ 111,S_Intraparietal-2-L
113
+ 112,S_Intraparietal-2-R
114
+ 113,S_Intraparietal-3-L
115
+ 114,S_Intraparietal-3-R
116
+ 115,S_Intraoccipital-1-L
117
+ 116,S_Intraoccipital-1-R
118
+ 117,G_Occipital_Pole-1-L
119
+ 118,G_Occipital_Pole-1-R
120
+ 119,G_Occipital_Lat-1-L
121
+ 120,G_Occipital_Lat-1-R
122
+ 121,G_Occipital_Lat-2-L
123
+ 122,G_Occipital_Lat-2-R
124
+ 123,G_Occipital_Lat-3-L
125
+ 124,G_Occipital_Lat-3-R
126
+ 125,G_Occipital_Lat-4-L
127
+ 126,G_Occipital_Lat-4-R
128
+ 127,G_Occipital_Lat-5-L
129
+ 128,G_Occipital_Lat-5-R
130
+ 129,G_Occipital_Sup-1-L
131
+ 130,G_Occipital_Sup-1-R
132
+ 131,G_Occipital_Sup-2-L
133
+ 132,G_Occipital_Sup-2-R
134
+ 133,G_Occipital_Mid-1-L
135
+ 134,G_Occipital_Mid-1-R
136
+ 135,G_Occipital_Mid-2-L
137
+ 136,G_Occipital_Mid-2-R
138
+ 137,G_Occipital_Mid-3-L
139
+ 138,G_Occipital_Mid-3-R
140
+ 139,G_Occipital_Mid-4-L
141
+ 140,G_Occipital_Mid-4-R
142
+ 141,G_Occipital_Inf-1-L
143
+ 142,G_Occipital_Inf-1-R
144
+ 143,G_Occipital_Inf-2-L
145
+ 144,G_Occipital_Inf-2-R
146
+ 145,G_Insula-anterior-1-L
147
+ 146,G_Insula-anterior-1-R
148
+ 147,G_Insula-anterior-2-L
149
+ 148,G_Insula-anterior-2-R
150
+ 149,G_Insula-anterior-3-L
151
+ 150,G_Insula-anterior-3-R
152
+ 151,G_Insula-anterior-4-L
153
+ 152,G_Insula-anterior-4-R
154
+ 153,G_Insula-anterior-5-L
155
+ 154,G_Insula-anterior-5-R
156
+ 155,G_Insula-posterior-1-L
157
+ 156,G_Insula-posterior-1-R
158
+ 157,G_Rolandic_Oper-1-L
159
+ 158,G_Rolandic_Oper-1-R
160
+ 159,G_Rolandic_Oper-2-L
161
+ 160,G_Rolandic_Oper-2-R
162
+ 161,G_Temporal_Sup-1-L
163
+ 162,G_Temporal_Sup-1-R
164
+ 163,G_Temporal_Sup-2-L
165
+ 164,G_Temporal_Sup-2-R
166
+ 165,G_Temporal_Sup-3-L
167
+ 166,G_Temporal_Sup-3-R
168
+ 167,G_Temporal_Sup-4-L
169
+ 168,G_Temporal_Sup-4-R
170
+ 169,S_Sup_Temporal-1-L
171
+ 170,S_Sup_Temporal-1-R
172
+ 171,S_Sup_Temporal-2-L
173
+ 172,S_Sup_Temporal-2-R
174
+ 173,S_Sup_Temporal-3-L
175
+ 174,S_Sup_Temporal-3-R
176
+ 175,S_Sup_Temporal-4-L
177
+ 176,S_Sup_Temporal-4-R
178
+ 177,S_Sup_Temporal-5-L
179
+ 178,S_Sup_Temporal-5-R
180
+ 179,G_Temporal_Mid-1-L
181
+ 180,G_Temporal_Mid-1-R
182
+ 181,G_Temporal_Mid-2-L
183
+ 182,G_Temporal_Mid-2-R
184
+ 183,G_Temporal_Mid-3-L
185
+ 184,G_Temporal_Mid-3-R
186
+ 185,G_Temporal_Mid-4-L
187
+ 186,G_Temporal_Mid-4-R
188
+ 187,G_Temporal_Inf-1-L
189
+ 188,G_Temporal_Inf-1-R
190
+ 189,G_Temporal_Inf-2-L
191
+ 190,G_Temporal_Inf-2-R
192
+ 191,G_Temporal_Inf-3-L
193
+ 192,G_Temporal_Inf-3-R
194
+ 193,G_Temporal_Inf-4-L
195
+ 194,G_Temporal_Inf-4-R
196
+ 195,G_Temporal_Inf-5-L
197
+ 196,G_Temporal_Inf-5-R
198
+ 197,G_Temporal_Pole_Sup-1-L
199
+ 198,G_Temporal_Pole_Sup-1-R
200
+ 199,G_Temporal_Pole_Sup-2-L
201
+ 200,G_Temporal_Pole_Sup-2-R
202
+ 201,G_Temporal_Pole_Mid-1-L
203
+ 202,G_Temporal_Pole_Mid-1-R
204
+ 203,G_Temporal_Pole_Mid-2-L
205
+ 204,G_Temporal_Pole_Mid-2-R
206
+ 205,G_Temporal_Pole_Mid-3-L
207
+ 206,G_Temporal_Pole_Mid-3-R
208
+ 207,G_Frontal_Sup_Medial-1-L
209
+ 208,G_Frontal_Sup_Medial-1-R
210
+ 209,G_Frontal_Sup_Medial-2-L
211
+ 210,G_Frontal_Sup_Medial-2-R
212
+ 211,G_Frontal_Sup_Medial-3-L
213
+ 212,G_Frontal_Sup_Medial-3-R
214
+ 213,S_Anterior_Rostral-1-L
215
+ 214,S_Anterior_Rostral-1-R
216
+ 215,G_Frontal_Med_Orb-1-L
217
+ 216,G_Frontal_Med_Orb-1-R
218
+ 217,G_Frontal_Med_Orb-2-L
219
+ 218,G_Frontal_Med_Orb-2-R
220
+ 219,G_subcallosal-1-L
221
+ 220,G_subcallosal-1-R
222
+ 221,G_Supp_Motor_Area-1-L
223
+ 222,G_Supp_Motor_Area-1-R
224
+ 223,G_Supp_Motor_Area-2-L
225
+ 224,G_Supp_Motor_Area-2-R
226
+ 225,G_Supp_Motor_Area-3-L
227
+ 226,G_Supp_Motor_Area-3-R
228
+ 227,S_Cingulate-1-L
229
+ 228,S_Cingulate-1-R
230
+ 229,S_Cingulate-2-L
231
+ 230,S_Cingulate-2-R
232
+ 231,S_Cingulate-3-L
233
+ 232,S_Cingulate-3-R
234
+ 233,S_Cingulate-4-L
235
+ 234,S_Cingulate-4-R
236
+ 235,S_Cingulate-5-L
237
+ 236,S_Cingulate-5-R
238
+ 237,S_Cingulate-6-L
239
+ 238,S_Cingulate-6-R
240
+ 239,S_Cingulate-7-L
241
+ 240,S_Cingulate-7-R
242
+ 241,G_Cingulum_Ant-1-L
243
+ 242,G_Cingulum_Ant-1-R
244
+ 243,G_Cingulum_Ant-2-L
245
+ 244,G_Cingulum_Ant-2-R
246
+ 245,G_Cingulum_Mid-1-L
247
+ 246,G_Cingulum_Mid-1-R
248
+ 247,G_Cingulum_Mid-2-L
249
+ 248,G_Cingulum_Mid-2-R
250
+ 249,G_Cingulum_Mid-3-L
251
+ 250,G_Cingulum_Mid-3-R
252
+ 251,G_Cingulum_Post-1-L
253
+ 252,G_Cingulum_Post-1-R
254
+ 253,G_Cingulum_Post-2-L
255
+ 254,G_Cingulum_Post-2-R
256
+ 255,G_Cingulum_Post-3-L
257
+ 256,G_Cingulum_Post-3-R
258
+ 257,G_Paracentral_Lobule-1-L
259
+ 258,G_Paracentral_Lobule-1-R
260
+ 259,G_Paracentral_Lobule-2-L
261
+ 260,G_Paracentral_Lobule-2-R
262
+ 261,G_Paracentral_Lobule-3-L
263
+ 262,G_Paracentral_Lobule-3-R
264
+ 263,G_Paracentral_Lobule-4-L
265
+ 264,G_Paracentral_Lobule-4-R
266
+ 265,G_Precuneus-1-L
267
+ 266,G_Precuneus-1-R
268
+ 267,G_Precuneus-2-L
269
+ 268,G_Precuneus-2-R
270
+ 269,G_Precuneus-3-L
271
+ 270,G_Precuneus-3-R
272
+ 271,G_Precuneus-4-L
273
+ 272,G_Precuneus-4-R
274
+ 273,G_Precuneus-5-L
275
+ 274,G_Precuneus-5-R
276
+ 275,G_Precuneus-6-L
277
+ 276,G_Precuneus-6-R
278
+ 277,G_Precuneus-7-L
279
+ 278,G_Precuneus-7-R
280
+ 279,G_Precuneus-8-L
281
+ 280,G_Precuneus-8-R
282
+ 281,G_Precuneus-9-L
283
+ 282,G_Precuneus-9-R
284
+ 283,S_Parietooccipital-1-L
285
+ 284,S_Parietooccipital-1-R
286
+ 285,S_Parietooccipital-2-L
287
+ 286,S_Parietooccipital-2-R
288
+ 287,S_Parietooccipital-3-L
289
+ 288,S_Parietooccipital-3-R
290
+ 289,S_Parietooccipital-4-L
291
+ 290,S_Parietooccipital-4-R
292
+ 291,S_Parietooccipital-5-L
293
+ 292,S_Parietooccipital-5-R
294
+ 293,S_Parietooccipital-6-L
295
+ 294,S_Parietooccipital-6-R
296
+ 295,G_Cuneus-1-L
297
+ 296,G_Cuneus-1-R
298
+ 297,G_Cuneus-2-L
299
+ 298,G_Cuneus-2-R
300
+ 299,G_Calcarine-1-L
301
+ 300,G_Calcarine-1-R
302
+ 301,G_Calcarine-2-L
303
+ 302,G_Calcarine-2-R
304
+ 303,G_Calcarine-3-L
305
+ 304,G_Calcarine-3-R
306
+ 305,G_Lingual-1-L
307
+ 306,G_Lingual-1-R
308
+ 307,G_Lingual-2-L
309
+ 308,G_Lingual-2-R
310
+ 309,G_Lingual-3-L
311
+ 310,G_Lingual-3-R
312
+ 311,G_Lingual-4-L
313
+ 312,G_Lingual-4-R
314
+ 313,G_Lingual-5-L
315
+ 314,G_Lingual-5-R
316
+ 315,G_Lingual-6-L
317
+ 316,G_Lingual-6-R
318
+ 317,G_Hippocampus-1-L
319
+ 318,G_Hippocampus-1-R
320
+ 319,G_Hippocampus-2-L
321
+ 320,G_Hippocampus-2-R
322
+ 321,G_ParaHippocampal-1-L
323
+ 322,G_ParaHippocampal-1-R
324
+ 323,G_ParaHippocampal-2-L
325
+ 324,G_ParaHippocampal-2-R
326
+ 325,G_ParaHippocampal-3-L
327
+ 326,G_ParaHippocampal-3-R
328
+ 327,G_ParaHippocampal-4-L
329
+ 328,G_ParaHippocampal-4-R
330
+ 329,G_ParaHippocampal-5-L
331
+ 330,G_ParaHippocampal-5-R
332
+ 331,G_Fusiform-1-L
333
+ 332,G_Fusiform-1-R
334
+ 333,G_Fusiform-2-L
335
+ 334,G_Fusiform-2-R
336
+ 335,G_Fusiform-3-L
337
+ 336,G_Fusiform-3-R
338
+ 337,G_Fusiform-4-L
339
+ 338,G_Fusiform-4-R
340
+ 339,G_Fusiform-5-L
341
+ 340,G_Fusiform-5-R
342
+ 341,G_Fusiform-6-L
343
+ 342,G_Fusiform-6-R
344
+ 343,G_Fusiform-7-L
345
+ 344,G_Fusiform-7-R
346
+ 345,N_Amygdala-1-L
347
+ 346,N_Amygdala-1-R
348
+ 347,N_Caudate-1-L
349
+ 348,N_Caudate-1-R
350
+ 349,N_Caudate-2-L
351
+ 350,N_Caudate-2-R
352
+ 351,N_Caudate-3-L
353
+ 352,N_Caudate-3-R
354
+ 353,N_Caudate-4-L
355
+ 354,N_Caudate-4-R
356
+ 355,N_Caudate-5-L
357
+ 356,N_Caudate-5-R
358
+ 357,N_Caudate-6-L
359
+ 358,N_Caudate-6-R
360
+ 359,N_Caudate-7-L
361
+ 360,N_Caudate-7-R
362
+ 361,N_Pallidum-1-L
363
+ 362,N_Pallidum-1-R
364
+ 363,N_Putamen-2-L
365
+ 364,N_Putamen-2-R
366
+ 365,N_Putamen-3-L
367
+ 366,N_Putamen-3-R
368
+ 367,N_Thalamus-1-L
369
+ 368,N_Thalamus-1-R
370
+ 369,N_Thalamus-2-L
371
+ 370,N_Thalamus-2-R
372
+ 371,N_Thalamus-3-L
373
+ 372,N_Thalamus-3-R
374
+ 373,N_Thalamus-4-L
375
+ 374,N_Thalamus-4-R
376
+ 375,N_Thalamus-5-L
377
+ 376,N_Thalamus-5-R
378
+ 377,N_Thalamus-6-L
379
+ 378,N_Thalamus-6-R
380
+ 379,N_Thalamus-7-L
381
+ 380,N_Thalamus-7-R
382
+ 381,N_Thalamus-8-L
383
+ 382,N_Thalamus-8-R
384
+ 383,N_Thalamus-9-L
385
+ 384,N_Thalamus-9-R
atlases/labels_desikan_killiany.csv ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 0,Unknown
3
+ 2,Left-Cerebral-White-Matter
4
+ 4,Left-Lateral-Ventricle
5
+ 5,Left-Inf-Lat-Vent
6
+ 7,Left-Cerebellum-White-Matter
7
+ 8,Left-Cerebellum-Cortex
8
+ 10,Left-Thalamus-Proper
9
+ 11,Left-Caudate
10
+ 12,Left-Putamen
11
+ 13,Left-Pallidum
12
+ 14,3rd-Ventricle
13
+ 15,4th-Ventricle
14
+ 16,Brain-Stem
15
+ 17,Left-Hippocampus
16
+ 18,Left-Amygdala
17
+ 24,CSF
18
+ 26,Left-Accumbens-area
19
+ 28,Left-VentralDC
20
+ 30,Left-vessel
21
+ 31,Left-choroid-plexus
22
+ 41,Right-Cerebral-White-Matter
23
+ 43,Right-Lateral-Ventricle
24
+ 44,Right-Inf-Lat-Vent
25
+ 46,Right-Cerebellum-White-Matter
26
+ 47,Right-Cerebellum-Cortex
27
+ 49,Right-Thalamus-Proper
28
+ 50,Right-Caudate
29
+ 51,Right-Putamen
30
+ 52,Right-Pallidum
31
+ 53,Right-Hippocampus
32
+ 54,Right-Amygdala
33
+ 58,Right-Accumbens-area
34
+ 60,Right-VentralDC
35
+ 62,Right-vessel
36
+ 63,Right-choroid-plexus
37
+ 77,WM-hypointensities
38
+ 80,non-WM-hypointensities
39
+ 85,Optic-Chiasm
40
+ 251,CC_Posterior
41
+ 252,CC_Mid_Posterior
42
+ 253,CC_Central
43
+ 254,CC_Mid_Anterior
44
+ 255,CC_Anterior
45
+ 1000,ctx-lh-unknown
46
+ 1001,ctx-lh-bankssts
47
+ 1002,ctx-lh-caudalanteriorcingulate
48
+ 1003,ctx-lh-caudalmiddlefrontal
49
+ 1005,ctx-lh-cuneus
50
+ 1006,ctx-lh-entorhinal
51
+ 1007,ctx-lh-fusiform
52
+ 1008,ctx-lh-inferiorparietal
53
+ 1009,ctx-lh-inferiortemporal
54
+ 1010,ctx-lh-isthmuscingulate
55
+ 1011,ctx-lh-lateraloccipital
56
+ 1012,ctx-lh-lateralorbitofrontal
57
+ 1013,ctx-lh-lingual
58
+ 1014,ctx-lh-medialorbitofrontal
59
+ 1015,ctx-lh-middletemporal
60
+ 1016,ctx-lh-parahippocampal
61
+ 1017,ctx-lh-paracentral
62
+ 1018,ctx-lh-parsopercularis
63
+ 1019,ctx-lh-parsorbitalis
64
+ 1020,ctx-lh-parstriangularis
65
+ 1021,ctx-lh-pericalcarine
66
+ 1022,ctx-lh-postcentral
67
+ 1023,ctx-lh-posteriorcingulate
68
+ 1024,ctx-lh-precentral
69
+ 1025,ctx-lh-precuneus
70
+ 1026,ctx-lh-rostralanteriorcingulate
71
+ 1027,ctx-lh-rostralmiddlefrontal
72
+ 1028,ctx-lh-superiorfrontal
73
+ 1029,ctx-lh-superiorparietal
74
+ 1030,ctx-lh-superiortemporal
75
+ 1031,ctx-lh-supramarginal
76
+ 1032,ctx-lh-frontalpole
77
+ 1033,ctx-lh-temporalpole
78
+ 1034,ctx-lh-transversetemporal
79
+ 1035,ctx-lh-insula
80
+ 2000,ctx-rh-unknown
81
+ 2001,ctx-rh-bankssts
82
+ 2002,ctx-rh-caudalanteriorcingulate
83
+ 2003,ctx-rh-caudalmiddlefrontal
84
+ 2005,ctx-rh-cuneus
85
+ 2006,ctx-rh-entorhinal
86
+ 2007,ctx-rh-fusiform
87
+ 2008,ctx-rh-inferiorparietal
88
+ 2009,ctx-rh-inferiortemporal
89
+ 2010,ctx-rh-isthmuscingulate
90
+ 2011,ctx-rh-lateraloccipital
91
+ 2012,ctx-rh-lateralorbitofrontal
92
+ 2013,ctx-rh-lingual
93
+ 2014,ctx-rh-medialorbitofrontal
94
+ 2015,ctx-rh-middletemporal
95
+ 2016,ctx-rh-parahippocampal
96
+ 2017,ctx-rh-paracentral
97
+ 2018,ctx-rh-parsopercularis
98
+ 2019,ctx-rh-parsorbitalis
99
+ 2020,ctx-rh-parstriangularis
100
+ 2021,ctx-rh-pericalcarine
101
+ 2022,ctx-rh-postcentral
102
+ 2023,ctx-rh-posteriorcingulate
103
+ 2024,ctx-rh-precentral
104
+ 2025,ctx-rh-precuneus
105
+ 2026,ctx-rh-rostralanteriorcingulate
106
+ 2027,ctx-rh-rostralmiddlefrontal
107
+ 2028,ctx-rh-superiorfrontal
108
+ 2029,ctx-rh-superiorparietal
109
+ 2030,ctx-rh-superiortemporal
110
+ 2031,ctx-rh-supramarginal
111
+ 2032,ctx-rh-frontalpole
112
+ 2033,ctx-rh-temporalpole
113
+ 2034,ctx-rh-transversetemporal
114
+ 2035,ctx-rh-insula
atlases/labels_destrieux.csv ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 0,Unknown
3
+ 2,Left-Cerebral-White-Matter
4
+ 4,Left-Lateral-Ventricle
5
+ 5,Left-Inf-Lat-Vent
6
+ 7,Left-Cerebellum-White-Matter
7
+ 8,Left-Cerebellum-Cortex
8
+ 10,Left-Thalamus-Proper
9
+ 11,Left-Caudate
10
+ 12,Left-Putamen
11
+ 13,Left-Pallidum
12
+ 14,3rd-Ventricle
13
+ 15,4th-Ventricle
14
+ 16,Brain-Stem
15
+ 17,Left-Hippocampus
16
+ 18,Left-Amygdala
17
+ 24,CSF
18
+ 26,Left-Accumbens-area
19
+ 28,Left-VentralDC
20
+ 30,Left-vessel
21
+ 31,Left-choroid-plexus
22
+ 41,Right-Cerebral-White-Matter
23
+ 43,Right-Lateral-Ventricle
24
+ 44,Right-Inf-Lat-Vent
25
+ 46,Right-Cerebellum-White-Matter
26
+ 47,Right-Cerebellum-Cortex
27
+ 49,Right-Thalamus-Proper
28
+ 50,Right-Caudate
29
+ 51,Right-Putamen
30
+ 52,Right-Pallidum
31
+ 53,Right-Hippocampus
32
+ 54,Right-Amygdala
33
+ 58,Right-Accumbens-area
34
+ 60,Right-VentralDC
35
+ 62,Right-vessel
36
+ 63,Right-choroid-plexus
37
+ 77,WM-hypointensities
38
+ 80,non-WM-hypointensities
39
+ 85,Optic-Chiasm
40
+ 251,CC_Posterior
41
+ 252,CC_Mid_Posterior
42
+ 253,CC_Central
43
+ 254,CC_Mid_Anterior
44
+ 255,CC_Anterior
45
+ 11100,ctx_lh_Unknown
46
+ 11101,ctx_lh_G_and_S_frontomargin
47
+ 11102,ctx_lh_G_and_S_occipital_inf
48
+ 11103,ctx_lh_G_and_S_paracentral
49
+ 11104,ctx_lh_G_and_S_subcentral
50
+ 11105,ctx_lh_G_and_S_transv_frontopol
51
+ 11106,ctx_lh_G_and_S_cingul-Ant
52
+ 11107,ctx_lh_G_and_S_cingul-Mid-Ant
53
+ 11108,ctx_lh_G_and_S_cingul-Mid-Post
54
+ 11109,ctx_lh_G_cingul-Post-dorsal
55
+ 11110,ctx_lh_G_cingul-Post-ventral
56
+ 11111,ctx_lh_G_cuneus
57
+ 11112,ctx_lh_G_front_inf-Opercular
58
+ 11113,ctx_lh_G_front_inf-Orbital
59
+ 11114,ctx_lh_G_front_inf-Triangul
60
+ 11115,ctx_lh_G_front_middle
61
+ 11116,ctx_lh_G_front_sup
62
+ 11117,ctx_lh_G_Ins_lg_and_S_cent_ins
63
+ 11118,ctx_lh_G_insular_short
64
+ 11119,ctx_lh_G_occipital_middle
65
+ 11120,ctx_lh_G_occipital_sup
66
+ 11121,ctx_lh_G_oc-temp_lat-fusifor
67
+ 11122,ctx_lh_G_oc-temp_med-Lingual
68
+ 11123,ctx_lh_G_oc-temp_med-Parahip
69
+ 11124,ctx_lh_G_orbital
70
+ 11125,ctx_lh_G_pariet_inf-Angular
71
+ 11126,ctx_lh_G_pariet_inf-Supramar
72
+ 11127,ctx_lh_G_parietal_sup
73
+ 11128,ctx_lh_G_postcentral
74
+ 11129,ctx_lh_G_precentral
75
+ 11130,ctx_lh_G_precuneus
76
+ 11131,ctx_lh_G_rectus
77
+ 11132,ctx_lh_G_subcallosal
78
+ 11133,ctx_lh_G_temp_sup-G_T_transv
79
+ 11134,ctx_lh_G_temp_sup-Lateral
80
+ 11135,ctx_lh_G_temp_sup-Plan_polar
81
+ 11136,ctx_lh_G_temp_sup-Plan_tempo
82
+ 11137,ctx_lh_G_temporal_inf
83
+ 11138,ctx_lh_G_temporal_middle
84
+ 11139,ctx_lh_Lat_Fis-ant-Horizont
85
+ 11140,ctx_lh_Lat_Fis-ant-Vertical
86
+ 11141,ctx_lh_Lat_Fis-post
87
+ 11143,ctx_lh_Pole_occipital
88
+ 11144,ctx_lh_Pole_temporal
89
+ 11145,ctx_lh_S_calcarine
90
+ 11146,ctx_lh_S_central
91
+ 11147,ctx_lh_S_cingul-Marginalis
92
+ 11148,ctx_lh_S_circular_insula_ant
93
+ 11149,ctx_lh_S_circular_insula_inf
94
+ 11150,ctx_lh_S_circular_insula_sup
95
+ 11151,ctx_lh_S_collat_transv_ant
96
+ 11152,ctx_lh_S_collat_transv_post
97
+ 11153,ctx_lh_S_front_inf
98
+ 11154,ctx_lh_S_front_middle
99
+ 11155,ctx_lh_S_front_sup
100
+ 11156,ctx_lh_S_interm_prim-Jensen
101
+ 11157,ctx_lh_S_intrapariet_and_P_trans
102
+ 11158,ctx_lh_S_oc_middle_and_Lunatus
103
+ 11159,ctx_lh_S_oc_sup_and_transversal
104
+ 11160,ctx_lh_S_occipital_ant
105
+ 11161,ctx_lh_S_oc-temp_lat
106
+ 11162,ctx_lh_S_oc-temp_med_and_Lingual
107
+ 11163,ctx_lh_S_orbital_lateral
108
+ 11164,ctx_lh_S_orbital_med-olfact
109
+ 11165,ctx_lh_S_orbital-H_Shaped
110
+ 11166,ctx_lh_S_parieto_occipital
111
+ 11167,ctx_lh_S_pericallosal
112
+ 11168,ctx_lh_S_postcentral
113
+ 11169,ctx_lh_S_precentral-inf-part
114
+ 11170,ctx_lh_S_precentral-sup-part
115
+ 11171,ctx_lh_S_suborbital
116
+ 11172,ctx_lh_S_subparietal
117
+ 11173,ctx_lh_S_temporal_inf
118
+ 11174,ctx_lh_S_temporal_sup
119
+ 11175,ctx_lh_S_temporal_transverse
120
+ 12100,ctx_rh_Unknown
121
+ 12101,ctx_rh_G_and_S_frontomargin
122
+ 12102,ctx_rh_G_and_S_occipital_inf
123
+ 12103,ctx_rh_G_and_S_paracentral
124
+ 12104,ctx_rh_G_and_S_subcentral
125
+ 12105,ctx_rh_G_and_S_transv_frontopol
126
+ 12106,ctx_rh_G_and_S_cingul-Ant
127
+ 12107,ctx_rh_G_and_S_cingul-Mid-Ant
128
+ 12108,ctx_rh_G_and_S_cingul-Mid-Post
129
+ 12109,ctx_rh_G_cingul-Post-dorsal
130
+ 12110,ctx_rh_G_cingul-Post-ventral
131
+ 12111,ctx_rh_G_cuneus
132
+ 12112,ctx_rh_G_front_inf-Opercular
133
+ 12113,ctx_rh_G_front_inf-Orbital
134
+ 12114,ctx_rh_G_front_inf-Triangul
135
+ 12115,ctx_rh_G_front_middle
136
+ 12116,ctx_rh_G_front_sup
137
+ 12117,ctx_rh_G_Ins_lg_and_S_cent_ins
138
+ 12118,ctx_rh_G_insular_short
139
+ 12119,ctx_rh_G_occipital_middle
140
+ 12120,ctx_rh_G_occipital_sup
141
+ 12121,ctx_rh_G_oc-temp_lat-fusifor
142
+ 12122,ctx_rh_G_oc-temp_med-Lingual
143
+ 12123,ctx_rh_G_oc-temp_med-Parahip
144
+ 12124,ctx_rh_G_orbital
145
+ 12125,ctx_rh_G_pariet_inf-Angular
146
+ 12126,ctx_rh_G_pariet_inf-Supramar
147
+ 12127,ctx_rh_G_parietal_sup
148
+ 12128,ctx_rh_G_postcentral
149
+ 12129,ctx_rh_G_precentral
150
+ 12130,ctx_rh_G_precuneus
151
+ 12131,ctx_rh_G_rectus
152
+ 12132,ctx_rh_G_subcallosal
153
+ 12133,ctx_rh_G_temp_sup-G_T_transv
154
+ 12134,ctx_rh_G_temp_sup-Lateral
155
+ 12135,ctx_rh_G_temp_sup-Plan_polar
156
+ 12136,ctx_rh_G_temp_sup-Plan_tempo
157
+ 12137,ctx_rh_G_temporal_inf
158
+ 12138,ctx_rh_G_temporal_middle
159
+ 12139,ctx_rh_Lat_Fis-ant-Horizont
160
+ 12140,ctx_rh_Lat_Fis-ant-Vertical
161
+ 12141,ctx_rh_Lat_Fis-post
162
+ 12143,ctx_rh_Pole_occipital
163
+ 12144,ctx_rh_Pole_temporal
164
+ 12145,ctx_rh_S_calcarine
165
+ 12146,ctx_rh_S_central
166
+ 12147,ctx_rh_S_cingul-Marginalis
167
+ 12148,ctx_rh_S_circular_insula_ant
168
+ 12149,ctx_rh_S_circular_insula_inf
169
+ 12150,ctx_rh_S_circular_insula_sup
170
+ 12151,ctx_rh_S_collat_transv_ant
171
+ 12152,ctx_rh_S_collat_transv_post
172
+ 12153,ctx_rh_S_front_inf
173
+ 12154,ctx_rh_S_front_middle
174
+ 12155,ctx_rh_S_front_sup
175
+ 12156,ctx_rh_S_interm_prim-Jensen
176
+ 12157,ctx_rh_S_intrapariet_and_P_trans
177
+ 12158,ctx_rh_S_oc_middle_and_Lunatus
178
+ 12159,ctx_rh_S_oc_sup_and_transversal
179
+ 12160,ctx_rh_S_occipital_ant
180
+ 12161,ctx_rh_S_oc-temp_lat
181
+ 12162,ctx_rh_S_oc-temp_med_and_Lingual
182
+ 12163,ctx_rh_S_orbital_lateral
183
+ 12164,ctx_rh_S_orbital_med-olfact
184
+ 12165,ctx_rh_S_orbital-H_Shaped
185
+ 12166,ctx_rh_S_parieto_occipital
186
+ 12167,ctx_rh_S_pericallosal
187
+ 12168,ctx_rh_S_postcentral
188
+ 12169,ctx_rh_S_precentral-inf-part
189
+ 12170,ctx_rh_S_precentral-sup-part
190
+ 12171,ctx_rh_S_suborbital
191
+ 12172,ctx_rh_S_subparietal
192
+ 12173,ctx_rh_S_temporal_inf
193
+ 12174,ctx_rh_S_temporal_sup
194
+ 12175,ctx_rh_S_temporal_transverse
atlases/labels_harvard_oxford.csv ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 0,Left_Frontal_Pole
3
+ 1,Right_Frontal_Pole
4
+ 2,Left_Insular_Cortex
5
+ 3,Right_Insular_Cortex
6
+ 4,Left_Superior_Frontal_Gyrus
7
+ 5,Right_Superior_Frontal_Gyrus
8
+ 6,Left_Middle_Frontal_Gyrus
9
+ 7,Right_Middle_Frontal_Gyrus
10
+ 8,Left_Inferior_Frontal_Gyrus_pars_triangularis
11
+ 9,Right_Inferior_Frontal_Gyrus_pars_triangularis
12
+ 10,Left_Inferior_Frontal_Gyrus_pars_opercularis
13
+ 11,Right_Inferior_Frontal_Gyrus_pars_opercularis
14
+ 12,Left_Precentral_Gyrus
15
+ 13,Right_Precentral_Gyrus
16
+ 14,Left_Temporal_Pole
17
+ 15,Right_Temporal_Pole
18
+ 16,Left_Superior_Temporal_Gyrus_anterior_division
19
+ 17,Right_Superior_Temporal_Gyrus_anterior_division
20
+ 18,Left_Superior_Temporal_Gyrus_posterior_division
21
+ 19,Right_Superior_Temporal_Gyrus_posterior_division
22
+ 20,Left_Middle_Temporal_Gyrus_anterior_division
23
+ 21,Right_Middle_Temporal_Gyrus_anterior_division
24
+ 22,Left_Middle_Temporal_Gyrus_posterior_division
25
+ 23,Right_Middle_Temporal_Gyrus_posterior_division
26
+ 24,Left_Middle_Temporal_Gyrus_temporooccipital_part
27
+ 25,Right_Middle_Temporal_Gyrus_temporooccipital_part
28
+ 26,Left_Inferior_Temporal_Gyrus_anterior_division
29
+ 27,Right_Inferior_Temporal_Gyrus_anterior_division
30
+ 28,Left_Inferior_Temporal_Gyrus_posterior_division
31
+ 29,Right_Inferior_Temporal_Gyrus_posterior_division
32
+ 30,Left_Inferior_Temporal_Gyrus_temporooccipital_part
33
+ 31,Right_Inferior_Temporal_Gyrus_temporooccipital_part
34
+ 32,Left_Postcentral_Gyrus
35
+ 33,Right_Postcentral_Gyrus
36
+ 34,Left_Superior_Parietal_Lobule
37
+ 35,Right_Superior_Parietal_Lobule
38
+ 36,Left_Supramarginal_Gyrus_anterior_division
39
+ 37,Right_Supramarginal_Gyrus_anterior_division
40
+ 38,Left_Supramarginal_Gyrus_posterior_division
41
+ 39,Right_Supramarginal_Gyrus_posterior_division
42
+ 40,Left_Angular_Gyrus
43
+ 41,Right_Angular_Gyrus
44
+ 42,Left_Lateral_Occipital_Cortex_superior_division
45
+ 43,Right_Lateral_Occipital_Cortex_superior_division
46
+ 44,Left_Lateral_Occipital_Cortex_inferior_division
47
+ 45,Right_Lateral_Occipital_Cortex_inferior_division
48
+ 46,Left_Intracalcarine_Cortex
49
+ 47,Right_Intracalcarine_Cortex
50
+ 48,Left_Frontal_Medial_Cortex
51
+ 49,Right_Frontal_Medial_Cortex
52
+ 50,Left_Juxtapositional_Lobule_Cortex_(formerly_Supplementary_Motor_Cortex)
53
+ 51,Right_Juxtapositional_Lobule_Cortex_(formerly_Supplementary_Motor_Cortex)
54
+ 52,Left_Subcallosal_Cortex
55
+ 53,Right_Subcallosal_Cortex
56
+ 54,Left_Paracingulate_Gyrus
57
+ 55,Right_Paracingulate_Gyrus
58
+ 56,Left_Cingulate_Gyrus_anterior_division
59
+ 57,Right_Cingulate_Gyrus_anterior_division
60
+ 58,Left_Cingulate_Gyrus_posterior_division
61
+ 59,Right_Cingulate_Gyrus_posterior_division
62
+ 60,Left_Precuneous_Cortex
63
+ 61,Right_Precuneous_Cortex
64
+ 62,Left_Cuneal_Cortex
65
+ 63,Right_Cuneal_Cortex
66
+ 64,Left_Frontal_Orbital_Cortex
67
+ 65,Right_Frontal_Orbital_Cortex
68
+ 66,Left_Parahippocampal_Gyrus_anterior_division
69
+ 67,Right_Parahippocampal_Gyrus_anterior_division
70
+ 68,Left_Parahippocampal_Gyrus_posterior_division
71
+ 69,Right_Parahippocampal_Gyrus_posterior_division
72
+ 70,Left_Lingual_Gyrus
73
+ 71,Right_Lingual_Gyrus
74
+ 72,Left_Temporal_Fusiform_Cortex_anterior_division
75
+ 73,Right_Temporal_Fusiform_Cortex_anterior_division
76
+ 74,Left_Temporal_Fusiform_Cortex_posterior_division
77
+ 75,Right_Temporal_Fusiform_Cortex_posterior_division
78
+ 76,Left_Temporal_Occipital_Fusiform_Cortex
79
+ 77,Right_Temporal_Occipital_Fusiform_Cortex
80
+ 78,Left_Occipital_Fusiform_Gyrus
81
+ 79,Right_Occipital_Fusiform_Gyrus
82
+ 80,Left_Frontal_Operculum_Cortex
83
+ 81,Right_Frontal_Operculum_Cortex
84
+ 82,Left_Central_Opercular_Cortex
85
+ 83,Right_Central_Opercular_Cortex
86
+ 84,Left_Parietal_Operculum_Cortex
87
+ 85,Right_Parietal_Operculum_Cortex
88
+ 86,Left_Planum_Polare
89
+ 87,Right_Planum_Polare
90
+ 88,Left_Heschl's_Gyrus_(includes_H1_and_H2)
91
+ 89,Right_Heschl's_Gyrus_(includes_H1_and_H2)
92
+ 90,Left_Planum_Temporale
93
+ 91,Right_Planum_Temporale
94
+ 92,Left_Supracalcarine_Cortex
95
+ 93,Right_Supracalcarine_Cortex
96
+ 94,Left_Occipital_Pole
97
+ 95,Right_Occipital_Pole
98
+ 96,Left_Lateral_Ventrical
99
+ 97,Left_Thalamus
100
+ 98,Left_Caudate
101
+ 99,Left_Putamen
102
+ 100,Left_Pallidum
103
+ 101,Brain-Stem
104
+ 102,Left_Hippocampus
105
+ 103,Left_Amygdala
106
+ 104,Left_Accumbens
107
+ 105,Right_Lateral_Ventricle
108
+ 106,Right_Thalamus
109
+ 107,Right_Caudate
110
+ 108,Right_Putamen
111
+ 109,Right_Pallidum
112
+ 110,Right_Hippocampus
113
+ 111,Right_Amygdala
114
+ 112,Right_Accumbens
atlases/labels_juelich.csv ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 0,GM_Anterior_intra-parietal_sulcus_hIP1_L
3
+ 1,GM_Anterior_intra-parietal_sulcus_hIP1_R
4
+ 2,GM_Anterior_intra-parietal_sulcus_hIP2_L
5
+ 3,GM_Anterior_intra-parietal_sulcus_hIP2_R
6
+ 4,GM_Anterior_intra-parietal_sulcus_hIP3_L
7
+ 5,GM_Anterior_intra-parietal_sulcus_hIP3_R
8
+ 6,GM_Amygdala_centromedial_group_L
9
+ 7,GM_Amygdala_centromedial_group_R
10
+ 8,GM_Amygdala_laterobasal_group_L
11
+ 9,GM_Amygdala_laterobasal_group_R
12
+ 10,GM_Amygdala_superficial_group_L
13
+ 11,GM_Amygdala_superficial_group_R
14
+ 12,GM_Broca's_area_BA44_L
15
+ 13,GM_Broca's_area_BA44_R
16
+ 14,GM_Broca's_area_BA45_L
17
+ 15,GM_Broca's_area_BA45_R
18
+ 16,GM_Hippocampus_cornu_ammonis_L
19
+ 17,GM_Hippocampus_cornu_ammonis_R
20
+ 18,GM_Hippocampus_entorhinal_cortex_L
21
+ 19,GM_Hippocampus_entorhinal_cortex_R
22
+ 20,GM_Hippocampus_dentate_gyrus_L
23
+ 21,GM_Hippocampus_dentate_gyrus_R
24
+ 22,GM_Hippocampus_hippocampal-amygdaloid_transition_area_L
25
+ 23,GM_Hippocampus_hippocampal-amygdaloid_transition_area_R
26
+ 24,GM_Hippocampus_subiculum_L
27
+ 25,GM_Hippocampus_subiculum_R
28
+ 26,GM_Inferior_parietal_lobule_PF_L
29
+ 27,GM_Inferior_parietal_lobule_PF_R
30
+ 28,GM_Inferior_parietal_lobule_PFcm_L
31
+ 29,GM_Inferior_parietal_lobule_PFcm_R
32
+ 30,GM_Inferior_parietal_lobule_PFm_L
33
+ 31,GM_Inferior_parietal_lobule_PFm_R
34
+ 32,GM_Inferior_parietal_lobule_PFop_L
35
+ 33,GM_Inferior_parietal_lobule_PFop_R
36
+ 34,GM_Inferior_parietal_lobule_PFt_L
37
+ 35,GM_Inferior_parietal_lobule_PFt_R
38
+ 36,GM_Inferior_parietal_lobule_Pga_L
39
+ 37,GM_Inferior_parietal_lobule_Pga_R
40
+ 38,GM_Inferior_parietal_lobule_PGp_L
41
+ 39,GM_Inferior_parietal_lobule_PGp_R
42
+ 40,GM_Primary_auditory_cortex_TE1.0_L
43
+ 41,GM_Primary_auditory_cortex_TE1.0_R
44
+ 42,GM_Primary_auditory_cortex_TE1.1_L
45
+ 43,GM_Primary_auditory_cortex_TE1.1_R
46
+ 44,GM_Primary_auditory_cortex_TE1.2_L
47
+ 45,GM_Primary_auditory_cortex_TE1.2_R
48
+ 46,GM_Primary_motor_cortex_BA4a_L
49
+ 47,GM_Primary_motor_cortex_BA4a_R
50
+ 48,GM_Primary_motor_cortex_BA4p_L
51
+ 49,GM_Primary_motor_cortex_BA4p_R
52
+ 50,GM_Primary_somatosensory_cortex_BA1_L
53
+ 51,GM_Primary_somatosensory_cortex_BA1_R
54
+ 52,GM_Primary_somatosensory_cortex_BA2_L
55
+ 53,GM_Primary_somatosensory_cortex_BA2_R
56
+ 54,GM_Primary_somatosensory_cortex_BA3a_L
57
+ 55,GM_Primary_somatosensory_cortex_BA3a_R
58
+ 56,GM_Primary_somatosensory_cortex_BA3b_L
59
+ 57,GM_Primary_somatosensory_cortex_BA3b_R
60
+ 58,GM_Secondary_somatosensory_cortex_/_Parietal_operculum_OP1_L
61
+ 59,GM_Secondary_somatosensory_cortex_/_Parietal_operculum_OP1_R
62
+ 60,GM_Secondary_somatosensory_cortex_/_Parietal_operculum_OP2_L
63
+ 61,GM_Secondary_somatosensory_cortex_/_Parietal_operculum_OP2_R
64
+ 62,GM_Secondary_somatosensory_cortex_/_Parietal_operculum_OP3_L
65
+ 63,GM_Secondary_somatosensory_cortex_/_Parietal_operculum_OP3_R
66
+ 64,GM_Secondary_somatosensory_cortex_/_Parietal_operculum_OP4_L
67
+ 65,GM_Secondary_somatosensory_cortex_/_Parietal_operculum_OP4_R
68
+ 66,GM_Superior_parietal_lobule_5Ci_L
69
+ 67,GM_Superior_parietal_lobule_5Ci_R
70
+ 68,GM_Superior_parietal_lobule_5L_L
71
+ 69,GM_Superior_parietal_lobule_5L_R
72
+ 70,GM_Superior_parietal_lobule_5M_L
73
+ 71,GM_Superior_parietal_lobule_5M_R
74
+ 72,GM_Superior_parietal_lobule_7A_L
75
+ 73,GM_Superior_parietal_lobule_7A_R
76
+ 74,GM_Superior_parietal_lobule_7M_L
77
+ 75,GM_Superior_parietal_lobule_7M_R
78
+ 76,GM_Superior_parietal_lobule_7PC_L
79
+ 77,GM_Superior_parietal_lobule_7PC_R
80
+ 78,GM_Superior_parietal_lobule_7P_L
81
+ 79,GM_Superior_parietal_lobule_7P_R
82
+ 80,GM_Visual_cortex_V1_BA17_L
83
+ 81,GM_Visual_cortex_V1_BA17_R
84
+ 82,GM_Visual_cortex_V2_BA18_L
85
+ 83,GM_Visual_cortex_V2_BA18_R
86
+ 84,GM_Visual_cortex_V3V_L
87
+ 85,GM_Visual_cortex_V3V_R
88
+ 86,GM_Visual_cortex_V4_L
89
+ 87,GM_Visual_cortex_V4_R
90
+ 88,GM_Visual_cortex_V5_L
91
+ 89,GM_Visual_cortex_V5_R
92
+ 90,GM_Premotor_cortex_BA6_L
93
+ 91,GM_Premotor_cortex_BA6_R
94
+ 92,WM_Acoustic_radiation_R
95
+ 93,WM_Acoustic_radiation_L
96
+ 94,WM_Callosal_body
97
+ 95,WM_Cingulum_R
98
+ 96,WM_Cingulum_L
99
+ 97,WM_Corticospinal_tract_R
100
+ 98,WM_Corticospinal_tract_L
101
+ 99,WM_Fornix
102
+ 100,WM_Inferior_occipito-frontal_fascicle_R
103
+ 101,WM_Inferior_occipito-frontal_fascicle_L
104
+ 102,GM_Lateral_geniculate_body_R
105
+ 103,GM_Lateral_geniculate_body_L
106
+ 104,GM_Mamillary_body
107
+ 105,GM_Medial_geniculate_body_R
108
+ 106,GM_Medial_geniculate_body_L
109
+ 107,WM_Optic_radiation_R
110
+ 108,WM_Optic_radiation_L
111
+ 109,WM_Superior_longitudinal_fascicle_R
112
+ 110,WM_Superior_longitudinal_fascicle_L
113
+ 111,WM_Superior_occipito-frontal_fascicle_R
114
+ 112,WM_Superior_occipito-frontal_fascicle_L
115
+ 113,WM_Uncinate_fascicle_R
116
+ 114,WM_Uncinate_fascicle_L
117
+ 115,GM_Insula_Id1_L
118
+ 116,GM_Insula_Id1_R
119
+ 117,GM_Insula_Ig1_L
120
+ 118,GM_Insula_Ig1_R
121
+ 119,GM_Insula_Ig2_L
122
+ 120,GM_Insula_Ig2_R
atlases/labels_marsatlas.csv ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 1,Left_Caudal_Medial_Visual_Cortex(BA_17/18)
3
+ 2,Left_Lateral_Visual_Cortex(BA_37/19/18)
4
+ 3,Left_Superior_Visual_Cortex(BA_19/39)
5
+ 4,Left_Cuneus(BA_18/19)
6
+ 5,Left_Rostral_Medial_Visual_Cortex(BA_18/19)
7
+ 6,Left_Medial_Inferior_Temporal_Cortex(BA_36/37/20)
8
+ 7,Left_Rostral_Inferior_Temporal_Cortex(BA_20)
9
+ 8,Left_Caudal_Middle_Temporal_Cortex(BA_21/22/39)
10
+ 9,Left_Caudal_Superior_Temporal_Cortex(BA_22/41/42)
11
+ 10,Left_Rostral_Superior_Temporal_Cortex(BA_21/22/38)
12
+ 11,Left_Rostral_Middle_Temporal_Cortex(BA_20/21/38)
13
+ 12,Left_Isthmus_Cingulate_Cortex(BA_30)
14
+ 13,Left_Ventral_Inferior_Parietal_Cortex(BA_40)
15
+ 14,Left_Dorsal_Inferior_Parietal_Cortex(BA_39/40/7)
16
+ 15,Left_Superior_Parietal_Cortex(BA_7)
17
+ 16,Left_Medial_Superior_Parietal_Cortex(BA_7)
18
+ 17,Left_Medial_Parietal_Cortex(BA_31)
19
+ 18,Left_Posterior_Cingulate_Cortex(BA_23)
20
+ 19,Left_Ventral_Somatosensory_Cortex(BA_1/2/3)
21
+ 20,Left_Dorsolateral_Somatosensory_Cortex(BA_1/2/3)
22
+ 21,Left_Dorsomedial_Somatosensory_Cortex(BA_1/2/3/5/31)
23
+ 22,Left_Ventral_Motor_Cortex(BA_4/6)
24
+ 23,Left_Dorsolateral_Motor_Cortex(BA_4)
25
+ 24,Left_Dorsomedial_Motor_Cortex(BA_4)
26
+ 25,Left_Rostral_Ventral_Premotor_Cortex(BA_44/45)
27
+ 26,Left_Dorsolateral_Premotor_Cortex(BA_6/8)
28
+ 27,Left_Dorsomedial_Premotor_Cortex(BA_6)
29
+ 28,Left_Caudal_Dorsolateral_Prefrontal_Cortex(BA_45/46/9)
30
+ 29,Left_Caudal_Dorsomedial_Prefrontal_Cortex(BA_6/8)
31
+ 30,Left_Mid_Cingulate_Cortex(BA_24)
32
+ 31,Left_Rostral_Ventrolateral_Prefrontal_Cortex(BA_47/45)
33
+ 32,Left_Rostral_Dorsolateral_Inferior_Prefrontal_Cortex(BA_10/46)
34
+ 33,Left_Rostral_Dorsolateral_Superior_Prefrontal_Cortex(BA_10/9)
35
+ 34,Left_Rostral_Dorsal_Prefrontal_Cortex(BA_10/9/8)
36
+ 35,Left_Rostral_Medial_Prefrontal_Cortex(BA_9/8)
37
+ 36,Left_Ventrolateral_Orbito_Frontal_Cortex(BA_11/47)
38
+ 37,Left_Ventral_Orbito_Frontal_Cortex(BA_11/47)
39
+ 38,Left_Ventromedial_Orbito_Frontal_Cortex(BA_10/11)
40
+ 39,Left_Ventromedial_Prefrontal_Cortex(BA_32/10/11)
41
+ 40,Left_Anterior_Cingulate_Cortex(BA_24/32)
42
+ 41,Left_Insular_Cortex(BA_13)
43
+ 101,Right_Caudal_Medial_Visual_Cortex(BA_17/18)
44
+ 102,Right_Lateral_Visual_Cortex(BA_37/19/18)
45
+ 103,Right_Superior_Visual_Cortex(BA_19/39)
46
+ 104,Right_Cuneus(BA_18/19)
47
+ 105,Right_Rostral_Medial_Visual_Cortex(BA_18/19)
48
+ 106,Right_Medial_Inferior_Temporal_Cortex(BA_36/37/20)
49
+ 107,Right_Rostral_Inferior_Temporal_Cortex(BA_20)
50
+ 108,Right_Caudal_Middle_Temporal_Cortex(BA_21/22/39)
51
+ 109,Right_Caudal_Superior_Temporal_Cortex(BA_22/41/42)
52
+ 110,Right_Rostral_Superior_Temporal_Cortex(BA_21/22/38)
53
+ 111,Right_Rostral_Middle_Temporal_Cortex(BA_20/21/38)
54
+ 112,Right_Isthmus_Cingulate_Cortex(BA_30)
55
+ 113,Right_Ventral_Inferior_Parietal_Cortex(BA_40)
56
+ 114,Right_Dorsal_Inferior_Parietal_Cortex(BA_39/40/7)
57
+ 115,Right_Superior_Parietal_Cortex(BA_7)
58
+ 116,Right_Medial_Superior_Parietal_Cortex(BA_7)
59
+ 117,Right_Medial_Parietal_Cortex(BA_31)
60
+ 118,Right_Posterior_Cingulate_Cortex(BA_23)
61
+ 119,Right_Ventral_Somatosensory_Cortex(BA_1/2/3)
62
+ 120,Right_Dorsolateral_Somatosensory_Cortex(BA_1/2/3)
63
+ 121,Right_Dorsomedial_Somatosensory_Cortex(BA_1/2/3/5/31)
64
+ 122,Right_Ventral_Motor_Cortex(BA_4/6)
65
+ 123,Right_Dorsolateral_Motor_Cortex(BA_4)
66
+ 124,Right_Dorsomedial_Motor_Cortex(BA_4)
67
+ 125,Right_Rostral_Ventral_Premotor_Cortex(BA_44/45)
68
+ 126,Right_Dorsolateral_Premotor_Cortex(BA_6/8)
69
+ 127,Right_Dorsomedial_Premotor_Cortex(BA_6)
70
+ 128,Right_Caudal_Dorsolateral_Prefrontal_Cortex(BA_45/46/9)
71
+ 129,Right_Caudal_Dorsomedial_Prefrontal_Cortex(BA_6/8)
72
+ 130,Right_Mid_Cingulate_Cortex(BA_24)
73
+ 131,Right_Rostral_Ventrolateral_Prefrontal_Cortex(BA_47/45)
74
+ 132,Right_Rostral_Dorsolateral_Inferior_Prefrontal_Cortex(BA_10/46)
75
+ 133,Right_Rostral_Dorsolateral_Superior_Prefrontal_Cortex(BA_10/9)
76
+ 134,Right_Rostral_Dorsal_Prefrontal_Cortex(BA_10/9/8)
77
+ 135,Right_Rostral_Medial_Prefrontal_Cortex(BA_9/8)
78
+ 136,Right_Ventrolateral_Orbito_Frontal_Cortex(BA_11/47)
79
+ 137,Right_Ventral_Orbito_Frontal_Cortex(BA_11/47)
80
+ 138,Right_Ventromedial_Orbito_Frontal_Cortex(BA_10/11)
81
+ 139,Right_Ventromedial_Prefrontal_Cortex(BA_32/10/11)
82
+ 140,Right_Anterior_Cingulate_Cortex(BA_24/32)
83
+ 141,Right_Insular_Cortex(BA_13)
84
+ 210,Left_Thalamus
85
+ 211,Left_Caudate
86
+ 212,Left_Puttamen
87
+ 213,Left_Pallidum
88
+ 217,Left_Hippocampus
89
+ 218,Left_Amygdala
90
+ 226,Left_Accumbens
91
+ 249,Right_Thalamus
92
+ 250,Right_Caudate
93
+ 251,Right_Puttamen
94
+ 252,Right_Pallidum
95
+ 253,Right_Hippocampus
96
+ 254,Right_Amygdala
97
+ 258,Right_Accumbens
atlases/labels_neuromorphometrics.csv ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 4,3rd_Ventricle
3
+ 11,4th_Ventricle
4
+ 23,Right_Accumbens_Area
5
+ 30,Left_Accumbens_Area
6
+ 31,Right_Amygdala
7
+ 32,Left_Amygdala
8
+ 35,Brain_Stem
9
+ 36,Right_Caudate
10
+ 37,Left_Caudate
11
+ 38,Right_Cerebellum_Exterior
12
+ 39,Left_Cerebellum_Exterior
13
+ 40,Right_Cerebellum_White_Matter
14
+ 41,Left_Cerebellum_White_Matter
15
+ 44,Right_Cerebral_White_Matter
16
+ 45,Left_Cerebral_White_Matter
17
+ 46,CSF
18
+ 47,Right_Hippocampus
19
+ 48,Left_Hippocampus
20
+ 49,Right_Inf_Lat_Vent
21
+ 50,Left_Inf_Lat_Vent
22
+ 51,Right_Lateral_Ventricle
23
+ 52,Left_Lateral_Ventricle
24
+ 55,Right_Pallidum
25
+ 56,Left_Pallidum
26
+ 57,Right_Putamen
27
+ 58,Left_Putamen
28
+ 59,Right_Thalamus_Proper
29
+ 60,Left_Thalamus_Proper
30
+ 61,Right_Ventral_DC
31
+ 62,Left_Ventral_DC
32
+ 63,Right_vessel
33
+ 64,Left_vessel
34
+ 69,Optic_Chiasm
35
+ 71,Cerebellar_Vermal_Lobules_I-V
36
+ 72,Cerebellar_Vermal_Lobules_VI-VII
37
+ 73,Cerebellar_Vermal_Lobules_VIII-X
38
+ 75,Left_Basal_Forebrain
39
+ 76,Right_Basal_Forebrain
40
+ 100,Right_ACgG_anterior_cingulate_gyrus
41
+ 101,Left_ACgG_anterior_cingulate_gyrus
42
+ 102,Right_AIns_anterior_insula
43
+ 103,Left_AIns_anterior_insula
44
+ 104,Right_AOrG_anterior_orbital_gyrus
45
+ 105,Left_AOrG_anterior_orbital_gyrus
46
+ 106,Right_AnG_angular_gyrus
47
+ 107,Left_AnG_angular_gyrus
48
+ 108,Right_Calc_calcarine_cortex
49
+ 109,Left_Calc_calcarine_cortex
50
+ 112,Right_CO_central_operculum
51
+ 113,Left_CO_central_operculum
52
+ 114,Right_Cun_cuneus
53
+ 115,Left_Cun_cuneus
54
+ 116,Right_Ent_entorhinal_area
55
+ 117,Left_Ent_entorhinal_area
56
+ 118,Right_FO_frontal_operculum
57
+ 119,Left_FO_frontal_operculum
58
+ 120,Right_FRP_frontal_pole
59
+ 121,Left_FRP_frontal_pole
60
+ 122,Right_FuG_fusiform_gyrus
61
+ 123,Left_FuG_fusiform_gyrus
62
+ 124,Right_GRe_gyrus_rectus
63
+ 125,Left_GRe_gyrus_rectus
64
+ 128,Right_IOG_inferior_occipital_gyrus
65
+ 129,Left_IOG_inferior_occipital_gyrus
66
+ 132,Right_ITG_inferior_temporal_gyrus
67
+ 133,Left_ITG_inferior_temporal_gyrus
68
+ 134,Right_LiG_lingual_gyrus
69
+ 135,Left_LiG_lingual_gyrus
70
+ 136,Right_LOrG_lateral_orbital_gyrus
71
+ 137,Left_LOrG_lateral_orbital_gyrus
72
+ 138,Right_MCgG_middle_cingulate_gyrus
73
+ 139,Left_MCgG_middle_cingulate_gyrus
74
+ 140,Right_MFC_medial_frontal_cortex
75
+ 141,Left_MFC_medial_frontal_cortex
76
+ 142,Right_MFG_middle_frontal_gyrus
77
+ 143,Left_MFG_middle_frontal_gyrus
78
+ 144,Right_MOG_middle_occipital_gyrus
79
+ 145,Left_MOG_middle_occipital_gyrus
80
+ 146,Right_MOrG_medial_orbital_gyrus
81
+ 147,Left_MOrG_medial_orbital_gyrus
82
+ 148,Right_MPoG_postcentral_gyrus_medial_segment
83
+ 149,Left_MPoG_postcentral_gyrus_medial_segment
84
+ 150,Right_MPrG_precentral_gyrus_medial_segment
85
+ 151,Left_MPrG_precentral_gyrus_medial_segment
86
+ 152,Right_MSFG_superior_frontal_gyrus_medial_segment
87
+ 153,Left_MSFG_superior_frontal_gyrus_medial_segment
88
+ 154,Right_MTG_middle_temporal_gyrus
89
+ 155,Left_MTG_middle_temporal_gyrus
90
+ 156,Right_OCP_occipital_pole
91
+ 157,Left_OCP_occipital_pole
92
+ 160,Right_OFuG_occipital_fusiform_gyrus
93
+ 161,Left_OFuG_occipital_fusiform_gyrus
94
+ 162,Right_OpIFG_opercular_part_of_the_inferior_frontal_gyrus
95
+ 163,Left_OpIFG_opercular_part_of_the_inferior_frontal_gyrus
96
+ 164,Right_OrIFG_orbital_part_of_the_inferior_frontal_gyrus
97
+ 165,Left_OrIFG_orbital_part_of_the_inferior_frontal_gyrus
98
+ 166,Right_PCgG_posterior_cingulate_gyrus
99
+ 167,Left_PCgG_posterior_cingulate_gyrus
100
+ 168,Right_PCu_precuneus
101
+ 169,Left_PCu_precuneus
102
+ 170,Right_PHG_parahippocampal_gyrus
103
+ 171,Left_PHG_parahippocampal_gyrus
104
+ 172,Right_PIns_posterior_insula
105
+ 173,Left_PIns_posterior_insula
106
+ 174,Right_PO_parietal_operculum
107
+ 175,Left_PO_parietal_operculum
108
+ 176,Right_PoG_postcentral_gyrus
109
+ 177,Left_PoG_postcentral_gyrus
110
+ 178,Right_POrG_posterior_orbital_gyrus
111
+ 179,Left_POrG_posterior_orbital_gyrus
112
+ 180,Right_PP_planum_polare
113
+ 181,Left_PP_planum_polare
114
+ 182,Right_PrG_precentral_gyrus
115
+ 183,Left_PrG_precentral_gyrus
116
+ 184,Right_PT_planum_temporale
117
+ 185,Left_PT_planum_temporale
118
+ 186,Right_SCA_subcallosal_area
119
+ 187,Left_SCA_subcallosal_area
120
+ 190,Right_SFG_superior_frontal_gyrus
121
+ 191,Left_SFG_superior_frontal_gyrus
122
+ 192,Right_SMC_supplementary_motor_cortex
123
+ 193,Left_SMC_supplementary_motor_cortex
124
+ 194,Right_SMG_supramarginal_gyrus
125
+ 195,Left_SMG_supramarginal_gyrus
126
+ 196,Right_SOG_superior_occipital_gyrus
127
+ 197,Left_SOG_superior_occipital_gyrus
128
+ 198,Right_SPL_superior_parietal_lobule
129
+ 199,Left_SPL_superior_parietal_lobule
130
+ 200,Right_STG_superior_temporal_gyrus
131
+ 201,Left_STG_superior_temporal_gyrus
132
+ 202,Right_TMP_temporal_pole
133
+ 203,Left_TMP_temporal_pole
134
+ 204,Right_TrIFG_triangular_part_of_the_inferior_frontal_gyrus
135
+ 205,Left_TrIFG_triangular_part_of_the_inferior_frontal_gyrus
136
+ 206,Right_TTG_transverse_temporal_gyrus
137
+ 207,Left_TTG_transverse_temporal_gyrus
atlases/labels_schaefer_200.csv ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 0,Background
3
+ 1,7Networks_LH_Vis_1
4
+ 2,7Networks_LH_Vis_2
5
+ 3,7Networks_LH_Vis_3
6
+ 4,7Networks_LH_Vis_4
7
+ 5,7Networks_LH_Vis_5
8
+ 6,7Networks_LH_Vis_6
9
+ 7,7Networks_LH_Vis_7
10
+ 8,7Networks_LH_Vis_8
11
+ 9,7Networks_LH_Vis_9
12
+ 10,7Networks_LH_Vis_10
13
+ 11,7Networks_LH_Vis_11
14
+ 12,7Networks_LH_Vis_12
15
+ 13,7Networks_LH_Vis_13
16
+ 14,7Networks_LH_Vis_14
17
+ 15,7Networks_LH_SomMot_1
18
+ 16,7Networks_LH_SomMot_2
19
+ 17,7Networks_LH_SomMot_3
20
+ 18,7Networks_LH_SomMot_4
21
+ 19,7Networks_LH_SomMot_5
22
+ 20,7Networks_LH_SomMot_6
23
+ 21,7Networks_LH_SomMot_7
24
+ 22,7Networks_LH_SomMot_8
25
+ 23,7Networks_LH_SomMot_9
26
+ 24,7Networks_LH_SomMot_10
27
+ 25,7Networks_LH_SomMot_11
28
+ 26,7Networks_LH_SomMot_12
29
+ 27,7Networks_LH_SomMot_13
30
+ 28,7Networks_LH_SomMot_14
31
+ 29,7Networks_LH_SomMot_15
32
+ 30,7Networks_LH_SomMot_16
33
+ 31,7Networks_LH_DorsAttn_Post_1
34
+ 32,7Networks_LH_DorsAttn_Post_2
35
+ 33,7Networks_LH_DorsAttn_Post_3
36
+ 34,7Networks_LH_DorsAttn_Post_4
37
+ 35,7Networks_LH_DorsAttn_Post_5
38
+ 36,7Networks_LH_DorsAttn_Post_6
39
+ 37,7Networks_LH_DorsAttn_Post_7
40
+ 38,7Networks_LH_DorsAttn_Post_8
41
+ 39,7Networks_LH_DorsAttn_Post_9
42
+ 40,7Networks_LH_DorsAttn_Post_10
43
+ 41,7Networks_LH_DorsAttn_FEF_1
44
+ 42,7Networks_LH_DorsAttn_FEF_2
45
+ 43,7Networks_LH_DorsAttn_PrCv_1
46
+ 44,7Networks_LH_SalVentAttn_ParOper_1
47
+ 45,7Networks_LH_SalVentAttn_ParOper_2
48
+ 46,7Networks_LH_SalVentAttn_ParOper_3
49
+ 47,7Networks_LH_SalVentAttn_FrOperIns_1
50
+ 48,7Networks_LH_SalVentAttn_FrOperIns_2
51
+ 49,7Networks_LH_SalVentAttn_FrOperIns_3
52
+ 50,7Networks_LH_SalVentAttn_FrOperIns_4
53
+ 51,7Networks_LH_SalVentAttn_PFCl_1
54
+ 52,7Networks_LH_SalVentAttn_Med_1
55
+ 53,7Networks_LH_SalVentAttn_Med_2
56
+ 54,7Networks_LH_SalVentAttn_Med_3
57
+ 55,7Networks_LH_Limbic_OFC_1
58
+ 56,7Networks_LH_Limbic_OFC_2
59
+ 57,7Networks_LH_Limbic_TempPole_1
60
+ 58,7Networks_LH_Limbic_TempPole_2
61
+ 59,7Networks_LH_Limbic_TempPole_3
62
+ 60,7Networks_LH_Limbic_TempPole_4
63
+ 61,7Networks_LH_Cont_Par_1
64
+ 62,7Networks_LH_Cont_Par_2
65
+ 63,7Networks_LH_Cont_Par_3
66
+ 64,7Networks_LH_Cont_Temp_1
67
+ 65,7Networks_LH_Cont_OFC_1
68
+ 66,7Networks_LH_Cont_PFCl_1
69
+ 67,7Networks_LH_Cont_PFCl_2
70
+ 68,7Networks_LH_Cont_PFCl_3
71
+ 69,7Networks_LH_Cont_PFCl_4
72
+ 70,7Networks_LH_Cont_PFCl_5
73
+ 71,7Networks_LH_Cont_pCun_1
74
+ 72,7Networks_LH_Cont_Cing_1
75
+ 73,7Networks_LH_Cont_Cing_2
76
+ 74,7Networks_LH_Default_Temp_1
77
+ 75,7Networks_LH_Default_Temp_2
78
+ 76,7Networks_LH_Default_Temp_3
79
+ 77,7Networks_LH_Default_Temp_4
80
+ 78,7Networks_LH_Default_Temp_5
81
+ 79,7Networks_LH_Default_Par_1
82
+ 80,7Networks_LH_Default_Par_2
83
+ 81,7Networks_LH_Default_Par_3
84
+ 82,7Networks_LH_Default_Par_4
85
+ 83,7Networks_LH_Default_PFC_1
86
+ 84,7Networks_LH_Default_PFC_2
87
+ 85,7Networks_LH_Default_PFC_3
88
+ 86,7Networks_LH_Default_PFC_4
89
+ 87,7Networks_LH_Default_PFC_5
90
+ 88,7Networks_LH_Default_PFC_6
91
+ 89,7Networks_LH_Default_PFC_7
92
+ 90,7Networks_LH_Default_PFC_8
93
+ 91,7Networks_LH_Default_PFC_9
94
+ 92,7Networks_LH_Default_PFC_10
95
+ 93,7Networks_LH_Default_PFC_11
96
+ 94,7Networks_LH_Default_PFC_12
97
+ 95,7Networks_LH_Default_PFC_13
98
+ 96,7Networks_LH_Default_pCunPCC_1
99
+ 97,7Networks_LH_Default_pCunPCC_2
100
+ 98,7Networks_LH_Default_pCunPCC_3
101
+ 99,7Networks_LH_Default_pCunPCC_4
102
+ 100,7Networks_LH_Default_PHC_1
103
+ 101,7Networks_RH_Vis_1
104
+ 102,7Networks_RH_Vis_2
105
+ 103,7Networks_RH_Vis_3
106
+ 104,7Networks_RH_Vis_4
107
+ 105,7Networks_RH_Vis_5
108
+ 106,7Networks_RH_Vis_6
109
+ 107,7Networks_RH_Vis_7
110
+ 108,7Networks_RH_Vis_8
111
+ 109,7Networks_RH_Vis_9
112
+ 110,7Networks_RH_Vis_10
113
+ 111,7Networks_RH_Vis_11
114
+ 112,7Networks_RH_Vis_12
115
+ 113,7Networks_RH_Vis_13
116
+ 114,7Networks_RH_Vis_14
117
+ 115,7Networks_RH_Vis_15
118
+ 116,7Networks_RH_SomMot_1
119
+ 117,7Networks_RH_SomMot_2
120
+ 118,7Networks_RH_SomMot_3
121
+ 119,7Networks_RH_SomMot_4
122
+ 120,7Networks_RH_SomMot_5
123
+ 121,7Networks_RH_SomMot_6
124
+ 122,7Networks_RH_SomMot_7
125
+ 123,7Networks_RH_SomMot_8
126
+ 124,7Networks_RH_SomMot_9
127
+ 125,7Networks_RH_SomMot_10
128
+ 126,7Networks_RH_SomMot_11
129
+ 127,7Networks_RH_SomMot_12
130
+ 128,7Networks_RH_SomMot_13
131
+ 129,7Networks_RH_SomMot_14
132
+ 130,7Networks_RH_SomMot_15
133
+ 131,7Networks_RH_SomMot_16
134
+ 132,7Networks_RH_SomMot_17
135
+ 133,7Networks_RH_SomMot_18
136
+ 134,7Networks_RH_SomMot_19
137
+ 135,7Networks_RH_DorsAttn_Post_1
138
+ 136,7Networks_RH_DorsAttn_Post_2
139
+ 137,7Networks_RH_DorsAttn_Post_3
140
+ 138,7Networks_RH_DorsAttn_Post_4
141
+ 139,7Networks_RH_DorsAttn_Post_5
142
+ 140,7Networks_RH_DorsAttn_Post_6
143
+ 141,7Networks_RH_DorsAttn_Post_7
144
+ 142,7Networks_RH_DorsAttn_Post_8
145
+ 143,7Networks_RH_DorsAttn_Post_9
146
+ 144,7Networks_RH_DorsAttn_Post_10
147
+ 145,7Networks_RH_DorsAttn_FEF_1
148
+ 146,7Networks_RH_DorsAttn_FEF_2
149
+ 147,7Networks_RH_DorsAttn_PrCv_1
150
+ 148,7Networks_RH_SalVentAttn_TempOccPar_1
151
+ 149,7Networks_RH_SalVentAttn_TempOccPar_2
152
+ 150,7Networks_RH_SalVentAttn_TempOccPar_3
153
+ 151,7Networks_RH_SalVentAttn_PrC_1
154
+ 152,7Networks_RH_SalVentAttn_FrOperIns_1
155
+ 153,7Networks_RH_SalVentAttn_FrOperIns_2
156
+ 154,7Networks_RH_SalVentAttn_FrOperIns_3
157
+ 155,7Networks_RH_SalVentAttn_FrOperIns_4
158
+ 156,7Networks_RH_SalVentAttn_Med_1
159
+ 157,7Networks_RH_SalVentAttn_Med_2
160
+ 158,7Networks_RH_SalVentAttn_Med_3
161
+ 159,7Networks_RH_Limbic_OFC_1
162
+ 160,7Networks_RH_Limbic_OFC_2
163
+ 161,7Networks_RH_Limbic_OFC_3
164
+ 162,7Networks_RH_Limbic_TempPole_1
165
+ 163,7Networks_RH_Limbic_TempPole_2
166
+ 164,7Networks_RH_Limbic_TempPole_3
167
+ 165,7Networks_RH_Cont_Par_1
168
+ 166,7Networks_RH_Cont_Par_2
169
+ 167,7Networks_RH_Cont_Par_3
170
+ 168,7Networks_RH_Cont_Temp_1
171
+ 169,7Networks_RH_Cont_PFCv_1
172
+ 170,7Networks_RH_Cont_PFCl_1
173
+ 171,7Networks_RH_Cont_PFCl_2
174
+ 172,7Networks_RH_Cont_PFCl_3
175
+ 173,7Networks_RH_Cont_PFCl_4
176
+ 174,7Networks_RH_Cont_PFCl_5
177
+ 175,7Networks_RH_Cont_PFCl_6
178
+ 176,7Networks_RH_Cont_PFCl_7
179
+ 177,7Networks_RH_Cont_pCun_1
180
+ 178,7Networks_RH_Cont_Cing_1
181
+ 179,7Networks_RH_Cont_Cing_2
182
+ 180,7Networks_RH_Cont_PFCmp_1
183
+ 181,7Networks_RH_Cont_PFCmp_2
184
+ 182,7Networks_RH_Default_Par_1
185
+ 183,7Networks_RH_Default_Par_2
186
+ 184,7Networks_RH_Default_Par_3
187
+ 185,7Networks_RH_Default_Temp_1
188
+ 186,7Networks_RH_Default_Temp_2
189
+ 187,7Networks_RH_Default_Temp_3
190
+ 188,7Networks_RH_Default_Temp_4
191
+ 189,7Networks_RH_Default_Temp_5
192
+ 190,7Networks_RH_Default_PFCv_1
193
+ 191,7Networks_RH_Default_PFCdPFCm_1
194
+ 192,7Networks_RH_Default_PFCdPFCm_2
195
+ 193,7Networks_RH_Default_PFCdPFCm_3
196
+ 194,7Networks_RH_Default_PFCdPFCm_4
197
+ 195,7Networks_RH_Default_PFCdPFCm_5
198
+ 196,7Networks_RH_Default_PFCdPFCm_6
199
+ 197,7Networks_RH_Default_PFCdPFCm_7
200
+ 198,7Networks_RH_Default_pCunPCC_1
201
+ 199,7Networks_RH_Default_pCunPCC_2
202
+ 200,7Networks_RH_Default_pCunPCC_3
atlases/labels_talairach_ba.csv ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 0,Background
3
+ 1,Brodmann_area_20
4
+ 2,Brodmann_area_38
5
+ 3,Brodmann_area_36
6
+ 4,Brodmann_area_21
7
+ 5,Brodmann_area_28
8
+ 6,Brodmann_area_11
9
+ 7,Dentate
10
+ 8,Brodmann_area_35
11
+ 9,Brodmann_area_47
12
+ 10,Hippocampus
13
+ 11,Brodmann_area_34
14
+ 12,Amygdala
15
+ 13,Brodmann_area_18
16
+ 14,Brodmann_area_37
17
+ 15,Brodmann_area_25
18
+ 16,Brodmann_area_17
19
+ 17,Brodmann_area_19
20
+ 18,Optic_Tract
21
+ 19,Hypothalamus
22
+ 20,Brodmann_area_13
23
+ 21,Substania_Nigra
24
+ 22,Red_Nucleus
25
+ 23,Caudate_Tail
26
+ 24,Mammillary_Body
27
+ 25,Putamen
28
+ 26,Brodmann_area_32
29
+ 27,Brodmann_area_10
30
+ 28,Brodmann_area_30
31
+ 29,Brodmann_area_27
32
+ 30,Medial_Geniculum_Body
33
+ 31,Brodmann_area_22
34
+ 32,Lateral_Globus_Pallidus
35
+ 33,Subthalamic_Nucleus
36
+ 34,Medial_Globus_Pallidus
37
+ 35,Caudate_Head
38
+ 36,Brodmann_area_24
39
+ 37,Lateral_Geniculum_Body
40
+ 38,Anterior_Commissure
41
+ 39,Corpus_Callosum
42
+ 40,Ventral_Posterior_Lateral_Nucleus
43
+ 41,Ventral_Posterior_Medial_Nucleus
44
+ 42,Brodmann_area_45
45
+ 43,Brodmann_area_46
46
+ 44,Pulvinar
47
+ 45,Medial_Dorsal_Nucleus
48
+ 46,Ventral_Lateral_Nucleus
49
+ 47,Ventral_Anterior_Nucleus
50
+ 48,Brodmann_area_29
51
+ 49,Brodmann_area_41
52
+ 50,Brodmann_area_42
53
+ 51,Brodmann_area_6
54
+ 52,Anterior_Nucleus
55
+ 53,Brodmann_area_44
56
+ 54,Caudate_Body
57
+ 55,Brodmann_area_39
58
+ 56,Brodmann_area_23
59
+ 57,Lateral_Posterior_Nucleus
60
+ 58,Brodmann_area_43
61
+ 59,Brodmann_area_31
62
+ 60,Brodmann_area_40
63
+ 61,Lateral_Dorsal_Nucleus
64
+ 62,Midline_Nucleus
65
+ 63,Brodmann_area_4
66
+ 64,Brodmann_area_9
67
+ 65,Brodmann_area_33
68
+ 66,Brodmann_area_2
69
+ 67,Brodmann_area_1
70
+ 68,Brodmann_area_3
71
+ 69,Brodmann_area_7
72
+ 70,Brodmann_area_8
73
+ 71,Brodmann_area_5
atlases/labels_talairach_gyrus.csv ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,name
2
+ 0,Background
3
+ 1,Inferior_Semi-Lunar_Lobule
4
+ 2,Cerebellar_Tonsil
5
+ 3,Inferior_Temporal_Gyrus
6
+ 4,Uncus
7
+ 5,Middle_Temporal_Gyrus
8
+ 6,Superior_Temporal_Gyrus
9
+ 7,Sub-Gyral
10
+ 8,Pyramis
11
+ 9,Uvula
12
+ 10,Uvula_of_Vermis
13
+ 11,Fourth_Ventricle
14
+ 12,Tuber
15
+ 13,Pyramis_of_Vermis
16
+ 14,Nodule
17
+ 15,Culmen
18
+ 16,Orbital_Gyrus
19
+ 17,Tuber_of_Vermis
20
+ 18,Fusiform_Gyrus
21
+ 19,Parahippocampal_Gyrus
22
+ 20,Rectal_Gyrus
23
+ 21,Superior_Frontal_Gyrus
24
+ 22,Declive
25
+ 23,Declive_of_Vermis
26
+ 24,Fastigium
27
+ 25,Lateral_Ventricle
28
+ 26,Inferior_Frontal_Gyrus
29
+ 27,Middle_Frontal_Gyrus
30
+ 28,Cerebellar_Lingual
31
+ 29,Medial_Frontal_Gyrus
32
+ 30,Lingual_Gyrus
33
+ 31,Inferior_Occipital_Gyrus
34
+ 32,Subcallosal_Gyrus
35
+ 33,Middle_Occipital_Gyrus
36
+ 34,Culmen_of_Vermis
37
+ 35,Extra-Nuclear
38
+ 36,Caudate
39
+ 37,Third_Ventricle
40
+ 38,Anterior_Cingulate
41
+ 39,Lentiform_Nucleus
42
+ 40,Thalamus
43
+ 41,Insula
44
+ 42,Claustrum
45
+ 43,Cuneus
46
+ 44,Posterior_Cingulate
47
+ 45,Precentral_Gyrus
48
+ 46,Transverse_Temporal_Gyrus
49
+ 47,Postcentral_Gyrus
50
+ 48,Precuneus
51
+ 49,Superior_Occipital_Gyrus
52
+ 50,Supramarginal_Gyrus
53
+ 51,Inferior_Parietal_Lobule
54
+ 52,Cingulate_Gyrus
55
+ 53,Angular_Gyrus
56
+ 54,Superior_Parietal_Lobule
57
+ 55,Paracentral_Lobule