Hi, I’m working with an old BIDS dataset which doesn’t have json files for the NIfTI datas.
I want to calculate the slice timing using the provided scan protocols.
Provided datas are
Multi-slice mode: interleaved
Series: interleaved
If, for example, TR=2.0 and # of slices = 8,
Do I just put slicetiming = ( [2, 4, 6, 8, 1, 3, 5, 7] - 1 ) / 8 * 2.0 = [0.25, 0.75, 1.25, 1.75, 0.0, 0.5, 1.0, 1.5]
This is from what i read on neurostars.
I understand that for siemens interleaved, the slice order is 2, 4, 6, 8, 1, 3, 5, 7. (And the numbers represent the anatomical order)
From what i understand, i figured that 2nd slice is measured at 0.0, then the 4th slice is measured at 0.25s, …, 8th slice is measured at 0.75s, then 1st slice at 1.0s, …, 7th slice at 1.75s.
So then shouldn’t slicetiming be [1.0, 0.0, 1.25, 0.25, 1.5, 0.5, 1.75, 0.75]?
Also, does Multi-slice mode: interleaved mean nothing in this case?