Skip to content

Commit 133b461

Browse files
author
Jakub Kaczmarzyk
committed
Merge remote-tracking branch 'upstream/master' into docs/neurodocker
2 parents ba605e1 + 1ecd0ff commit 133b461

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.zenodo.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,11 @@
609609
{
610610
"affiliation": "Vrije Universiteit Amsterdam",
611611
"name": "Ort, Eduard"
612+
},
613+
{
614+
"affiliation": "Technical University Munich",
615+
"name": "Molina-Romero, Miguel",
616+
"orcid": "0000-0001-8054-0426"
612617
}
613618
],
614619
"keywords": [

nipype/interfaces/freesurfer/model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@ class Label2VolInputSpec(FSTraitedSpec):
11441144
invert_mtx = traits.Bool(
11451145
argstr='--invertmtx', desc='Invert the registration matrix')
11461146
fill_thresh = traits.Range(
1147-
0., 1., argstr='--fillthresh %.f', desc='thresh : between 0 and 1')
1147+
0., 1., argstr='--fillthresh %g', desc='thresh : between 0 and 1')
11481148
label_voxel_volume = traits.Float(
11491149
argstr='--labvoxvol %f', desc='volume of each label point (def 1mm3)')
11501150
proj = traits.Tuple(
@@ -1183,7 +1183,7 @@ class Label2Vol(FSCommand):
11831183
11841184
>>> binvol = Label2Vol(label_file='cortex.label', template_file='structural.nii', reg_file='register.dat', fill_thresh=0.5, vol_label_file='foo_out.nii')
11851185
>>> binvol.cmdline
1186-
'mri_label2vol --fillthresh 0 --label cortex.label --reg register.dat --temp structural.nii --o foo_out.nii'
1186+
'mri_label2vol --fillthresh 0.5 --label cortex.label --reg register.dat --temp structural.nii --o foo_out.nii'
11871187
11881188
"""
11891189

nipype/interfaces/freesurfer/tests/test_auto_Label2Vol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_Label2Vol_inputs():
2222
nohash=True,
2323
usedefault=True,
2424
),
25-
fill_thresh=dict(argstr='--fillthresh %.f', ),
25+
fill_thresh=dict(argstr='--fillthresh %g', ),
2626
hemi=dict(argstr='--hemi %s', ),
2727
identity=dict(
2828
argstr='--identity',

0 commit comments

Comments
 (0)