Skip to content

Commit f994a0a

Browse files
author
Arno Klein
committed
Turn off thickinthehead by default
1 parent 0ee3eed commit f994a0a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ The following steps are performed by Mindboggle (with links to code on GitHub):
240240
3. Compute volume shape measures for each labeled region:
241241

242242
- volume (`volume_per_brain_region <https://github.com/nipy/mindboggle/blob/master/mindboggle/shapes/volume_shapes.py#L14>`_)
243-
- thickness of cortical labels (`thickinthehead <https://github.com/nipy/mindboggle/blob/master/mindboggle/shapes/volume_shapes.py#L132>`_)
243+
- thickness of cortical labels (`thickinthehead <https://github.com/nipy/mindboggle/blob/master/mindboggle/shapes/volume_shapes.py#L131>`_, off by default)
244244

245245
4. Compute surface shape measures for every cortical mesh vertex:
246246

@@ -346,9 +346,9 @@ The following include outputs from most, but not all, optional arguments.
346346

347347
**volumes_per_ants_label.csv**: *volume per ANTs label*
348348

349-
**thickinthehead_per_freesurfer_cortex_label.csv**: *FS cortex label thickness*
349+
**thickinthehead_per_freesurfer_cortex_label.csv**: *FS cortex label thickness* **-- UNDER EVALUATION --**
350350

351-
**thickinthehead_per_ants_cortex_label.csv**: *ANTs cortex label thickness*
351+
**thickinthehead_per_ants_cortex_label.csv**: *ANTs cortex label thickness* **-- UNDER EVALUATION --**
352352

353353
[left,right]_cortical_surface /
354354

mindboggle/mindboggle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,9 @@ out_args.add_argument("--no_moments", action='store_true',
138138
help="no Zernike moments per surface label or sulcus")
139139
out_args.add_argument("--no_spectra", action='store_true',
140140
help="no Laplace-Beltrami per surface label or sulcus")
141-
out_args.add_argument("--no_thickness", action='store_true',
142-
help="no volume-based cortical label thicknesses")
143141

142+
adv_args.add_argument("--thickinthehead", action='store_true',
143+
help="volume-based cortical label thicknesses")
144144
adv_args.add_argument("--fundi", action='store_true',
145145
help="extract, measure fundi (under evaluation, SLOW)")
146146
adv_args.add_argument("--moments",
@@ -259,10 +259,10 @@ if args.no_points:
259259
do_points = False
260260
else:
261261
do_points = True
262-
if args.no_thickness:
263-
do_thickinthehead = False
264-
else:
262+
if args.thickinthehead:
265263
do_thickinthehead = True
264+
else:
265+
do_thickinthehead = False
266266

267267
# Set Laplace-Beltrami spectra:
268268
if args.no_spectra:

0 commit comments

Comments
 (0)