Skip to content

Commit

Permalink
Fix the echo time processing loop.
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiavasis committed Oct 30, 2022
1 parent f4feae1 commit 4203333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CPAC/utils/datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ def ingress_func_metadata(wf, cfg, rpool, sub_dict, subject_id,
function=gather_echo_times),
name='fugue_gather_echo_times')

for idx, fmap_file in enumerate(fmap_TE_list):
for idx, fmap_file in enumerate(fmap_TE_list, start=1):
try:
node, out_file = rpool.get(fmap_file)[
f"['{fmap_file}:fmap_TE_ingress']"]['data']
Expand Down

0 comments on commit 4203333

Please sign in to comment.