@@ -24,9 +24,7 @@ class MRConvertInputSpec(CommandLineInputSpec):
24
24
position = - 2 ,
25
25
desc = "voxel-order data filename" ,
26
26
)
27
- out_filename = File (
28
- genfile = True , argstr = "%s" , position = - 1 , desc = "Output filename"
29
- )
27
+ out_filename = File (genfile = True , argstr = "%s" , position = - 1 , desc = "Output filename" )
30
28
extract_at_axis = traits .Enum (
31
29
1 ,
32
30
2 ,
@@ -229,15 +227,11 @@ class DWI2TensorInputSpec(CommandLineInputSpec):
229
227
position = 1 ,
230
228
desc = ("Do not display information messages or progress " "status." ),
231
229
)
232
- debug = traits .Bool (
233
- argstr = "-debug" , position = 1 , desc = "Display debugging messages."
234
- )
230
+ debug = traits .Bool (argstr = "-debug" , position = 1 , desc = "Display debugging messages." )
235
231
236
232
237
233
class DWI2TensorOutputSpec (TraitedSpec ):
238
- tensor = File (
239
- exists = True , desc = "path/name of output diffusion tensor image"
240
- )
234
+ tensor = File (exists = True , desc = "path/name of output diffusion tensor image" )
241
235
242
236
243
237
class DWI2Tensor (CommandLine ):
@@ -277,9 +271,7 @@ class Tensor2VectorInputSpec(CommandLineInputSpec):
277
271
position = 1 ,
278
272
desc = "Do not display information messages or progress status." ,
279
273
)
280
- debug = traits .Bool (
281
- argstr = "-debug" , position = 1 , desc = "Display debugging messages."
282
- )
274
+ debug = traits .Bool (argstr = "-debug" , position = 1 , desc = "Display debugging messages." )
283
275
284
276
285
277
class Tensor2VectorOutputSpec (TraitedSpec ):
@@ -345,9 +337,7 @@ class Tensor2FractionalAnisotropyInputSpec(CommandLineInputSpec):
345
337
position = 1 ,
346
338
desc = "Do not display information messages or progress status." ,
347
339
)
348
- debug = traits .Bool (
349
- argstr = "-debug" , position = 1 , desc = "Display debugging messages."
350
- )
340
+ debug = traits .Bool (argstr = "-debug" , position = 1 , desc = "Display debugging messages." )
351
341
352
342
353
343
class Tensor2FractionalAnisotropyOutputSpec (TraitedSpec ):
@@ -413,9 +403,7 @@ class Tensor2ApparentDiffusionInputSpec(CommandLineInputSpec):
413
403
position = 1 ,
414
404
desc = "Do not display information messages or progress status." ,
415
405
)
416
- debug = traits .Bool (
417
- argstr = "-debug" , position = 1 , desc = "Display debugging messages."
418
- )
406
+ debug = traits .Bool (argstr = "-debug" , position = 1 , desc = "Display debugging messages." )
419
407
420
408
421
409
class Tensor2ApparentDiffusionOutputSpec (TraitedSpec ):
@@ -478,9 +466,7 @@ class MRMultiplyInputSpec(CommandLineInputSpec):
478
466
position = 1 ,
479
467
desc = "Do not display information messages or progress status." ,
480
468
)
481
- debug = traits .Bool (
482
- argstr = "-debug" , position = 1 , desc = "Display debugging messages."
483
- )
469
+ debug = traits .Bool (argstr = "-debug" , position = 1 , desc = "Display debugging messages." )
484
470
485
471
486
472
class MRMultiplyOutputSpec (TraitedSpec ):
@@ -537,9 +523,7 @@ class MRTrixViewerInputSpec(CommandLineInputSpec):
537
523
position = 1 ,
538
524
desc = "Do not display information messages or progress status." ,
539
525
)
540
- debug = traits .Bool (
541
- argstr = "-debug" , position = 1 , desc = "Display debugging messages."
542
- )
526
+ debug = traits .Bool (argstr = "-debug" , position = 1 , desc = "Display debugging messages." )
543
527
544
528
545
529
class MRTrixViewerOutputSpec (TraitedSpec ):
@@ -698,9 +682,7 @@ class ErodeInputSpec(CommandLineInputSpec):
698
682
position = 1 ,
699
683
desc = "Do not display information messages or progress status." ,
700
684
)
701
- debug = traits .Bool (
702
- argstr = "-debug" , position = 1 , desc = "Display debugging messages."
703
- )
685
+ debug = traits .Bool (argstr = "-debug" , position = 1 , desc = "Display debugging messages." )
704
686
705
687
706
688
class ErodeOutputSpec (TraitedSpec ):
@@ -765,9 +747,7 @@ class ThresholdInputSpec(CommandLineInputSpec):
765
747
argstr = "-percent %s" ,
766
748
desc = "Specify threshold value as a percentage of the peak intensity in the input image." ,
767
749
)
768
- invert = traits .Bool (
769
- argstr = "-invert" , position = 1 , desc = "Invert output binary mask"
770
- )
750
+ invert = traits .Bool (argstr = "-invert" , position = 1 , desc = "Invert output binary mask" )
771
751
replace_zeros_with_NaN = traits .Bool (
772
752
argstr = "-nan" , position = 1 , desc = "Replace all zero values with NaN"
773
753
)
@@ -776,9 +756,7 @@ class ThresholdInputSpec(CommandLineInputSpec):
776
756
position = 1 ,
777
757
desc = "Do not display information messages or progress status." ,
778
758
)
779
- debug = traits .Bool (
780
- argstr = "-debug" , position = 1 , desc = "Display debugging messages."
781
- )
759
+ debug = traits .Bool (argstr = "-debug" , position = 1 , desc = "Display debugging messages." )
782
760
783
761
784
762
class ThresholdOutputSpec (TraitedSpec ):
@@ -843,9 +821,7 @@ class MedianFilter3DInputSpec(CommandLineInputSpec):
843
821
position = 1 ,
844
822
desc = "Do not display information messages or progress status." ,
845
823
)
846
- debug = traits .Bool (
847
- argstr = "-debug" , position = 1 , desc = "Display debugging messages."
848
- )
824
+ debug = traits .Bool (argstr = "-debug" , position = 1 , desc = "Display debugging messages." )
849
825
850
826
851
827
class MedianFilter3DOutputSpec (TraitedSpec ):
@@ -897,9 +873,7 @@ class MRTransformInputSpec(CommandLineInputSpec):
897
873
position = - 2 ,
898
874
desc = "Input images to be transformed" ,
899
875
)
900
- out_filename = File (
901
- genfile = True , argstr = "%s" , position = - 1 , desc = "Output image"
902
- )
876
+ out_filename = File (genfile = True , argstr = "%s" , position = - 1 , desc = "Output image" )
903
877
invert = traits .Bool (
904
878
argstr = "-inverse" ,
905
879
position = 1 ,
@@ -949,9 +923,7 @@ class MRTransformInputSpec(CommandLineInputSpec):
949
923
position = 1 ,
950
924
desc = "Do not display information messages or progress status." ,
951
925
)
952
- debug = traits .Bool (
953
- argstr = "-debug" , position = 1 , desc = "Display debugging messages."
954
- )
926
+ debug = traits .Bool (argstr = "-debug" , position = 1 , desc = "Display debugging messages." )
955
927
956
928
957
929
class MRTransformOutputSpec (TraitedSpec ):
0 commit comments