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):
677677 desc = ('Final resampling method (jacobian/least '
678678 'squares)' ))
679679
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' )
682682 outlier_nstd = traits .Int (
683683 argstr = '--ol_nstd' ,
684684 desc = 'Number of std off to qualify as outlier' ,
@@ -760,8 +760,8 @@ class EddyInputSpec(FSLCommandInputSpec):
760760 xor = ['slice_order' ],
761761 min_ver = '6.0.1' )
762762
763- estimate_move_by_susceptibility = traits .Enum (
764- True ,
763+ estimate_move_by_susceptibility = traits .Bool (
764+ False ,
765765 argstr = '--estimate_move_by_susceptibility' ,
766766 desc = 'Estimate how susceptibility field changes with subject movement' ,
767767 min_ver = '6.0.1' )
@@ -793,7 +793,7 @@ class EddyInputSpec(FSLCommandInputSpec):
793793 'date are acquired on a set of b-value '
794794 'shells' ))
795795
796- use_cuda = traits .Enum ( True , desc = 'Run eddy using cuda gpu' )
796+ use_cuda = traits .Bool ( False , desc = 'Run eddy using cuda gpu' )
797797 cnr_maps = traits .Bool (
798798 False , desc = "Output CNR-Maps" , argstr = "--cnr_maps" , min_ver = "5.0.10"
799799 )
You can’t perform that action at this time.
0 commit comments