Skip to content

Commit ca2d2ee

Browse files
authored
🔧 Fix forking list issue
1 parent d8cf7b3 commit ca2d2ee

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

CPAC/anat_preproc/anat_preproc.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1273,14 +1273,17 @@ def acpc_align_head(wf, cfg, strat_pool, pipe_num, opt=None):
12731273
["anatomical_preproc", "run"]],
12741274
"option_key": "None",
12751275
"option_val": "None",
1276-
"inputs": [["desc-preproc_T1w",
1277-
"desc-head_T1w"],
1276+
"inputs": ["desc-preproc_T1w",
1277+
"desc-head_T1w",
12781278
"T1w-ACPC-template"],
12791279
"outputs": ["desc-head_T1w",
12801280
"desc-preproc_T1w",
12811281
"from-T1w_to-ACPC_mode-image_desc-aff2rig_xfm"]}
12821282
'''
1283-
1283+
1284+
# NOTE: desc-preproc_T1w and desc-head_T1w are both needed in this
1285+
# nodeblock despite the list called in get_data() below
1286+
12841287
acpc_align = acpc_alignment(config=cfg,
12851288
acpc_target=cfg.anatomical_preproc[
12861289
'acpc_alignment']['acpc_target'],

0 commit comments

Comments
 (0)