@@ -144,9 +144,7 @@ class Generate5ttInputSpec(MRTrix3BaseInputSpec):
144
144
position = - 2 ,
145
145
desc = "input image" ,
146
146
)
147
- out_file = File (
148
- argstr = "%s" , mandatory = True , position = - 1 , desc = "output image"
149
- )
147
+ out_file = File (argstr = "%s" , mandatory = True , position = - 1 , desc = "output image" )
150
148
151
149
152
150
class Generate5ttOutputSpec (TraitedSpec ):
@@ -192,12 +190,8 @@ class TensorMetricsInputSpec(CommandLineInputSpec):
192
190
193
191
out_fa = File (argstr = "-fa %s" , desc = "output FA file" )
194
192
out_adc = File (argstr = "-adc %s" , desc = "output ADC file" )
195
- out_evec = File (
196
- argstr = "-vector %s" , desc = "output selected eigenvector(s) file"
197
- )
198
- out_eval = File (
199
- argstr = "-value %s" , desc = "output selected eigenvalue(s) file"
200
- )
193
+ out_evec = File (argstr = "-vector %s" , desc = "output selected eigenvector(s) file" )
194
+ out_eval = File (argstr = "-value %s" , desc = "output selected eigenvalue(s) file" )
201
195
component = traits .List (
202
196
[1 ],
203
197
usedefault = True ,
@@ -212,8 +206,7 @@ class TensorMetricsInputSpec(CommandLineInputSpec):
212
206
exists = True ,
213
207
argstr = "-mask %s" ,
214
208
desc = (
215
- "only perform computation within the specified binary"
216
- " brain mask image"
209
+ "only perform computation within the specified binary" " brain mask image"
217
210
),
218
211
)
219
212
modulate = traits .Enum (
@@ -301,8 +294,7 @@ class ComputeTDIInputSpec(CommandLineInputSpec):
301
294
)
302
295
max_tod = traits .Int (
303
296
argstr = "-tod %d" ,
304
- desc = "generate a Track Orientation "
305
- "Distribution (TOD) in each voxel." ,
297
+ desc = "generate a Track Orientation " "Distribution (TOD) in each voxel." ,
306
298
)
307
299
308
300
contrast = traits .Enum (
@@ -392,8 +384,7 @@ class ComputeTDIInputSpec(CommandLineInputSpec):
392
384
)
393
385
nthreads = traits .Int (
394
386
argstr = "-nthreads %d" ,
395
- desc = "number of threads. if zero, the number"
396
- " of available cpus will be used" ,
387
+ desc = "number of threads. if zero, the number" " of available cpus will be used" ,
397
388
nohash = True ,
398
389
)
399
390
@@ -498,8 +489,7 @@ class TCK2VTKInputSpec(CommandLineInputSpec):
498
489
499
490
nthreads = traits .Int (
500
491
argstr = "-nthreads %d" ,
501
- desc = "number of threads. if zero, the number"
502
- " of available cpus will be used" ,
492
+ desc = "number of threads. if zero, the number" " of available cpus will be used" ,
503
493
nohash = True ,
504
494
)
505
495
@@ -543,9 +533,7 @@ class DWIExtractInputSpec(MRTrix3BaseInputSpec):
543
533
position = - 2 ,
544
534
desc = "input image" ,
545
535
)
546
- out_file = File (
547
- argstr = "%s" , mandatory = True , position = - 1 , desc = "output image"
548
- )
536
+ out_file = File (argstr = "%s" , mandatory = True , position = - 1 , desc = "output image" )
549
537
bzero = traits .Bool (argstr = "-bzero" , desc = "extract b=0 volumes" )
550
538
nobzero = traits .Bool (argstr = "-no_bzero" , desc = "extract non b=0 volumes" )
551
539
singleshell = traits .Bool (
@@ -690,9 +678,7 @@ class MRMathInputSpec(MRTrix3BaseInputSpec):
690
678
position = - 3 ,
691
679
desc = "input image" ,
692
680
)
693
- out_file = File (
694
- argstr = "%s" , mandatory = True , position = - 1 , desc = "output image"
695
- )
681
+ out_file = File (argstr = "%s" , mandatory = True , position = - 1 , desc = "output image" )
696
682
operation = traits .Enum (
697
683
"mean" ,
698
684
"median" ,
@@ -875,9 +861,7 @@ class SHConvInputSpec(CommandLineInputSpec):
875
861
876
862
877
863
class SHConvOutputSpec (TraitedSpec ):
878
- out_file = File (
879
- exists = True , desc = "the output convoluted spherical harmonics file"
880
- )
864
+ out_file = File (exists = True , desc = "the output convoluted spherical harmonics file" )
881
865
882
866
883
867
class SHConv (CommandLine ):
@@ -941,9 +925,7 @@ class SH2AmpInputSpec(CommandLineInputSpec):
941
925
942
926
943
927
class SH2AmpOutputSpec (TraitedSpec ):
944
- out_file = File (
945
- exists = True , desc = "the output convoluted spherical harmonics file"
946
- )
928
+ out_file = File (exists = True , desc = "the output convoluted spherical harmonics file" )
947
929
948
930
949
931
class SH2Amp (CommandLine ):
0 commit comments