We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9a0fda0 + 3e2f458 commit e9217c2Copy full SHA for e9217c2
nipype/interfaces/spm/preprocess.py
@@ -276,12 +276,14 @@ class SliceTimingInputSpec(SPMCommandInputSpec):
276
mandatory=True,
277
)
278
slice_order = traits.List(
279
- traits.Float(),
+ traits.Either(traits.Int(),traits.Float()),
280
field="so",
281
desc=("1-based order or onset (in ms) in which slices are acquired"),
282
283
284
- ref_slice = traits.Int(
+ ref_slice = traits.Either(
285
+ traits.Int(),
286
+ traits.Float(),
287
field="refslice",
288
desc="1-based Number of the reference slice or "
289
"reference time point if slice_order is in "
0 commit comments