Skip to content

Commit 9d91495

Browse files
committed
revert enum to bool
1 parent e648c30 commit 9d91495

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nipype/interfaces/fsl/epi.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -643,8 +643,8 @@ class EddyInputSpec(FSLCommandInputSpec):
643643
desc=('Final resampling method (jacobian/least '
644644
'squares)'))
645645

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')
648648
outlier_nstd = traits.Int(
649649
argstr='--ol_nstd',
650650
desc='Number of std off to qualify as outlier',
@@ -726,8 +726,8 @@ class EddyInputSpec(FSLCommandInputSpec):
726726
xor=['slice_order'],
727727
min_ver='6.0.1')
728728

729-
estimate_move_by_susceptibility = traits.Enum(
730-
True,
729+
estimate_move_by_susceptibility = traits.Bool(
730+
False,
731731
argstr='--estimate_move_by_susceptibility',
732732
desc='Estimate how susceptibility field changes with subject movement',
733733
min_ver='6.0.1')
@@ -759,7 +759,7 @@ class EddyInputSpec(FSLCommandInputSpec):
759759
'date are acquired on a set of b-value '
760760
'shells'))
761761

762-
use_cuda = traits.Enum(True, desc='Run eddy using cuda gpu')
762+
use_cuda = traits.Bool(False, desc='Run eddy using cuda gpu')
763763
cnr_maps = traits.Bool(
764764
False, desc='Output CNR-Maps', argstr='--cnr_maps', min_ver='5.0.10')
765765
residuals = traits.Bool(

0 commit comments

Comments
 (0)