File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -643,8 +643,8 @@ class EddyInputSpec(FSLCommandInputSpec):
643
643
desc = ('Final resampling method (jacobian/least '
644
644
'squares)' ))
645
645
646
- repol = traits .Enum (
647
- True , argstr = '--repol' , desc = 'Detect and replace outlier slices' )
646
+ repol = traits .Bool (
647
+ False , argstr = '--repol' , desc = 'Detect and replace outlier slices' )
648
648
outlier_nstd = traits .Int (
649
649
argstr = '--ol_nstd' ,
650
650
desc = 'Number of std off to qualify as outlier' ,
@@ -726,8 +726,8 @@ class EddyInputSpec(FSLCommandInputSpec):
726
726
xor = ['slice_order' ],
727
727
min_ver = '6.0.1' )
728
728
729
- estimate_move_by_susceptibility = traits .Enum (
730
- True ,
729
+ estimate_move_by_susceptibility = traits .Bool (
730
+ False ,
731
731
argstr = '--estimate_move_by_susceptibility' ,
732
732
desc = 'Estimate how susceptibility field changes with subject movement' ,
733
733
min_ver = '6.0.1' )
@@ -759,7 +759,7 @@ class EddyInputSpec(FSLCommandInputSpec):
759
759
'date are acquired on a set of b-value '
760
760
'shells' ))
761
761
762
- use_cuda = traits .Enum ( True , desc = 'Run eddy using cuda gpu' )
762
+ use_cuda = traits .Bool ( False , desc = 'Run eddy using cuda gpu' )
763
763
cnr_maps = traits .Bool (
764
764
False , desc = 'Output CNR-Maps' , argstr = '--cnr_maps' , min_ver = '5.0.10' )
765
765
residuals = traits .Bool (
You can’t perform that action at this time.
0 commit comments