We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6239693 commit f196238Copy full SHA for f196238
nipype/interfaces/spm/preprocess.py
@@ -119,11 +119,9 @@ def _list_outputs(self):
119
120
121
class RealignInputSpec(SPMCommandInputSpec):
122
- in_files = InputMultiPath(traits.Either(traits.List(
123
- ImageFileSPM(exists=True)),
124
- ImageFileSPM(exists=True)), field='data',
125
- mandatory=True, copyfile=True,
126
- desc='list of filenames to realign')
+ in_files = InputMultiPath(ImageFileSPM(exists=True),
+ field='data', desc='list of files to realign',
+ mandatory=True, copyfile=True)
127
jobtype = traits.Enum('estwrite', 'estimate', 'write',
128
desc='one of: estimate, write, estwrite',
129
usedefault=True)
0 commit comments