Skip to content
Snippets Groups Projects
Verified Commit bd9e1e12 authored by Michiel Cottaar's avatar Michiel Cottaar
Browse files

Fix loading blocks with time ID

parent 0abc71ab
No related branches found
No related tags found
No related merge requests found
...@@ -234,10 +234,12 @@ function build_sequence(; scanner=nothing, B0=3., TR=nothing, definitions, versi ...@@ -234,10 +234,12 @@ function build_sequence(; scanner=nothing, B0=3., TR=nothing, definitions, versi
phase_size = rad2deg.(phase_shape) .+ phase_times .* (proc.freq * 1e-3 * 360) .+ rad2deg(proc.phase) phase_size = rad2deg.(phase_shape) .+ phase_times .* (proc.freq * 1e-3 * 360) .+ rad2deg(proc.phase)
end end
if version != v"1.3.1" && !iszero(proc.time_id) if version != v"1.3.1" && !iszero(proc.time_id)
(num, time_shape) = shapes[proc.time_id] @show shapes
times = time_shape.amplitudes .* rf_raster (num, _, time_shape) = shapes[proc.time_id]
times = time_shape .* rf_raster
ampl = ampl_size ampl = ampl_size
phase = phase_size phase = phase_size
@assert length(times) == length(ampl) == length(phase)
else else
(times, ampl, phase) = align_in_time((ampl_times, ampl_size), (phase_times, phase_size)) (times, ampl, phase) = align_in_time((ampl_times, ampl_size), (phase_times, phase_size))
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment