File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -247,6 +247,7 @@ def _list_outputs(self):
247247
248248 return outputs
249249
250+
250251class ApplyVDMInputSpec (SPMCommandInputSpec ):
251252
252253 in_files = InputMultiObject (
@@ -261,7 +262,7 @@ class ApplyVDMInputSpec(SPMCommandInputSpec):
261262 vdmfile = File (
262263 field = "data.vdmfile" ,
263264 desc = "Voxel displacement map to use" ,
264- #mandatory=True,
265+ # mandatory=True,
265266 copyfile = True ,
266267 )
267268 distortion_direction = traits .Int (
@@ -307,15 +308,15 @@ class ApplyVDMInputSpec(SPMCommandInputSpec):
307308 desc = "fieldmap corrected output prefix" ,
308309 )
309310
311+
310312class ApplyVDMOutputSpec (TraitedSpec ):
311313 out_files = OutputMultiPath (
312314 traits .Either (traits .List (File (exists = True )), File (exists = True )),
313- desc = (
314- "These will be the fieldmap corrected files."
315- ),
315+ desc = ("These will be the fieldmap corrected files." ),
316316 )
317317 mean_image = File (exists = True , desc = "Mean image" )
318318
319+
319320class ApplyVDM (SPMCommand ):
320321 """Use the fieldmap toolbox from spm to apply the voxel displacement map (VDM) to some epi files.
321322
You can’t perform that action at this time.
0 commit comments