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 @@ -689,8 +689,8 @@ class EddyInputSpec(FSLCommandInputSpec):
689
689
desc = ("Final resampling method (jacobian/least " "squares)" ),
690
690
)
691
691
692
- repol = traits .Enum (
693
- True , argstr = "--repol" , desc = "Detect and replace outlier slices"
692
+ repol = traits .Bool (
693
+ False , argstr = "--repol" , desc = "Detect and replace outlier slices"
694
694
)
695
695
outlier_nstd = traits .Int (
696
696
argstr = "--ol_nstd" ,
@@ -785,8 +785,8 @@ class EddyInputSpec(FSLCommandInputSpec):
785
785
min_ver = "6.0.1" ,
786
786
)
787
787
788
- estimate_move_by_susceptibility = traits .Enum (
789
- True ,
788
+ estimate_move_by_susceptibility = traits .Bool (
789
+ False ,
790
790
argstr = "--estimate_move_by_susceptibility" ,
791
791
desc = "Estimate how susceptibility field changes with subject movement" ,
792
792
min_ver = "6.0.1" ,
@@ -823,7 +823,7 @@ class EddyInputSpec(FSLCommandInputSpec):
823
823
),
824
824
)
825
825
826
- use_cuda = traits .Enum ( True , desc = "Run eddy using cuda gpu" )
826
+ use_cuda = traits .Bool ( False , desc = "Run eddy using cuda gpu" )
827
827
cnr_maps = traits .Bool (
828
828
False , desc = "Output CNR-Maps" , argstr = "--cnr_maps" , min_ver = "5.0.10"
829
829
)
You can’t perform that action at this time.
0 commit comments