Skip to content

Commit e9217c2

Browse files
authored
Merge pull request #3255 from servoz/master
SPM SliceTiming must accept either Int or float for ref_slice and sli…
2 parents 9a0fda0 + 3e2f458 commit e9217c2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

nipype/interfaces/spm/preprocess.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -276,12 +276,14 @@ class SliceTimingInputSpec(SPMCommandInputSpec):
276276
mandatory=True,
277277
)
278278
slice_order = traits.List(
279-
traits.Float(),
279+
traits.Either(traits.Int(),traits.Float()),
280280
field="so",
281281
desc=("1-based order or onset (in ms) in which slices are acquired"),
282282
mandatory=True,
283283
)
284-
ref_slice = traits.Int(
284+
ref_slice = traits.Either(
285+
traits.Int(),
286+
traits.Float(),
285287
field="refslice",
286288
desc="1-based Number of the reference slice or "
287289
"reference time point if slice_order is in "

0 commit comments

Comments
 (0)