Skip to content

Commit

Permalink
Merge pull request #1048 from satra/fix/spmnorm
Browse files Browse the repository at this point in the history
fix: remove flag from normalize
  • Loading branch information
satra committed Feb 10, 2015
2 parents 60e6b55 + b7964c4 commit 510ed60
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES
@@ -1,6 +1,7 @@
Next release
============

* FIX: remove unused mandatory flag from spm normalize (https://github.com/nipy/nipype/pull/1048)
* ENH: Update ANTSCorticalThickness interface (https://github.com/nipy/nipype/pull/1013)
* FIX: Edge case with sparsemodels and PEP8 cleanup (https://github.com/nipy/nipype/pull/1046)
* ENH: New io interfaces for JSON files reading/writing (https://github.com/nipy/nipype/pull/1020)
Expand Down
2 changes: 1 addition & 1 deletion nipype/interfaces/spm/preprocess.py
Expand Up @@ -544,7 +544,7 @@ class Normalize12InputSpec(SPMCommandInputSpec):
desc='FWHM of Gaussian smoothness of bias')
tpm = File(exists=True, field='eoptions.tpm',
desc='template in form of tissue probablitiy maps to normalize to',
mandatory=False, xor=['deformation_file'],
xor=['deformation_file'],
copyfile=False)
affine_regularization_type = traits.Enum('mni', 'size', 'none',
field='eoptions.affreg',
Expand Down
1 change: 0 additions & 1 deletion nipype/interfaces/spm/tests/test_auto_Normalize12.py
Expand Up @@ -37,7 +37,6 @@ def test_Normalize12_inputs():
),
tpm=dict(copyfile=False,
field='eoptions.tpm',
mandatory=False,
xor=['deformation_file'],
),
use_mcr=dict(),
Expand Down

0 comments on commit 510ed60

Please sign in to comment.