@@ -192,9 +192,7 @@ class DWIBiasCorrectInputSpec(MRTrix3BaseInputSpec):
192
192
mandatory = True ,
193
193
desc = "input DWI image" ,
194
194
)
195
- in_mask = File (
196
- argstr = "-mask %s" , desc = "input mask image for bias field estimation"
197
- )
195
+ in_mask = File (argstr = "-mask %s" , desc = "input mask image for bias field estimation" )
198
196
use_ants = traits .Bool (
199
197
argstr = "ants" ,
200
198
mandatory = True ,
@@ -409,9 +407,7 @@ def _list_outputs(self):
409
407
outputs = self .output_spec ().get ()
410
408
outputs ["out_file" ] = op .abspath (self .inputs .out_file )
411
409
if self .inputs .out_grad_mrtrix :
412
- outputs ["out_grad_mrtrix" ] = op .abspath (
413
- self .inputs .out_grad_mrtrix
414
- )
410
+ outputs ["out_grad_mrtrix" ] = op .abspath (self .inputs .out_grad_mrtrix )
415
411
if self .inputs .out_grad_fsl :
416
412
outputs ["out_fsl_bvec" ] = op .abspath (self .inputs .out_grad_fsl [0 ])
417
413
outputs ["out_fsl_bval" ] = op .abspath (self .inputs .out_grad_fsl [1 ])
@@ -445,15 +441,9 @@ class ResponseSDInputSpec(MRTrix3BaseInputSpec):
445
441
usedefault = True ,
446
442
desc = "output WM response text file" ,
447
443
)
448
- gm_file = File (
449
- argstr = "%s" , position = - 2 , desc = "output GM response text file"
450
- )
451
- csf_file = File (
452
- argstr = "%s" , position = - 1 , desc = "output CSF response text file"
453
- )
454
- in_mask = File (
455
- exists = True , argstr = "-mask %s" , desc = "provide initial mask image"
456
- )
444
+ gm_file = File (argstr = "%s" , position = - 2 , desc = "output GM response text file" )
445
+ csf_file = File (argstr = "%s" , position = - 1 , desc = "output CSF response text file" )
446
+ in_mask = File (exists = True , argstr = "-mask %s" , desc = "provide initial mask image" )
457
447
max_sh = InputMultiObject (
458
448
traits .Int ,
459
449
argstr = "-lmax %s" ,
0 commit comments