Skip to content

Commit 5cbbb14

Browse files
josephmjeeffigies
authored andcommitted
revert enum to bool
1 parent da7dd08 commit 5cbbb14

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
@@ -689,8 +689,8 @@ class EddyInputSpec(FSLCommandInputSpec):
689689
desc=("Final resampling method (jacobian/least " "squares)"),
690690
)
691691

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"
694694
)
695695
outlier_nstd = traits.Int(
696696
argstr="--ol_nstd",
@@ -785,8 +785,8 @@ class EddyInputSpec(FSLCommandInputSpec):
785785
min_ver="6.0.1",
786786
)
787787

788-
estimate_move_by_susceptibility = traits.Enum(
789-
True,
788+
estimate_move_by_susceptibility = traits.Bool(
789+
False,
790790
argstr="--estimate_move_by_susceptibility",
791791
desc="Estimate how susceptibility field changes with subject movement",
792792
min_ver="6.0.1",
@@ -823,7 +823,7 @@ class EddyInputSpec(FSLCommandInputSpec):
823823
),
824824
)
825825

826-
use_cuda = traits.Enum(True, desc="Run eddy using cuda gpu")
826+
use_cuda = traits.Bool(False, desc="Run eddy using cuda gpu")
827827
cnr_maps = traits.Bool(
828828
False, desc="Output CNR-Maps", argstr="--cnr_maps", min_ver="5.0.10"
829829
)

0 commit comments

Comments
 (0)