Skip to content

Commit eda6497

Browse files
authored
Fix generate5tt input
1 parent c08e17b commit eda6497

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

nipype/interfaces/mrtrix3/utils.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
traits,
1212
TraitedSpec,
1313
File,
14+
Directory,
1415
InputMultiPath,
1516
isdefined,
1617
)
@@ -230,8 +231,10 @@ class Generate5ttInputSpec(MRTrix3BaseInputSpec):
230231
mandatory=True,
231232
desc="tissue segmentation algorithm",
232233
)
233-
in_file = File(
234-
exists=False, argstr="%s", mandatory=True, position=-2, desc="input image"
234+
in_file = traits.Either(
235+
File(exists=True),
236+
Directory(exists=True),
237+
argstr="%s", mandatory=True, position=-2, desc="input image / directory"
235238
)
236239
out_file = File(argstr="%s", mandatory=True, position=-1, desc="output image")
237240

0 commit comments

Comments
 (0)