Skip to content

Commit 7520544

Browse files
committed
revert enum to bool
1 parent f4b2ae6 commit 7520544

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
@@ -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
)

0 commit comments

Comments
 (0)