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 @@ -677,8 +677,8 @@ class EddyInputSpec(FSLCommandInputSpec):
677
677
desc = ('Final resampling method (jacobian/least '
678
678
'squares)' ))
679
679
680
- repol = traits .Enum (
681
- True , argstr = '--repol' , desc = 'Detect and replace outlier slices' )
680
+ repol = traits .Bool (
681
+ False , argstr = '--repol' , desc = 'Detect and replace outlier slices' )
682
682
outlier_nstd = traits .Int (
683
683
argstr = '--ol_nstd' ,
684
684
desc = 'Number of std off to qualify as outlier' ,
@@ -760,8 +760,8 @@ class EddyInputSpec(FSLCommandInputSpec):
760
760
xor = ['slice_order' ],
761
761
min_ver = '6.0.1' )
762
762
763
- estimate_move_by_susceptibility = traits .Enum (
764
- True ,
763
+ estimate_move_by_susceptibility = traits .Bool (
764
+ False ,
765
765
argstr = '--estimate_move_by_susceptibility' ,
766
766
desc = 'Estimate how susceptibility field changes with subject movement' ,
767
767
min_ver = '6.0.1' )
@@ -793,7 +793,7 @@ class EddyInputSpec(FSLCommandInputSpec):
793
793
'date are acquired on a set of b-value '
794
794
'shells' ))
795
795
796
- use_cuda = traits .Enum ( True , desc = 'Run eddy using cuda gpu' )
796
+ use_cuda = traits .Bool ( False , desc = 'Run eddy using cuda gpu' )
797
797
cnr_maps = traits .Bool (
798
798
False , desc = "Output CNR-Maps" , argstr = "--cnr_maps" , min_ver = "5.0.10"
799
799
)
You can’t perform that action at this time.
0 commit comments