Skip to content

Commit a37fbd9

Browse files
authored
Merge pull request #1938 from FCP-INDI/bugfix/forking
🔧 Fix forking list issue
2 parents d8cf7b3 + d6932d0 commit a37fbd9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
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'],

CPAC/surface/fMRISurface/SubcorticalProcessing.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ unset POSIXLY_CORRECT
5050
#hj edit: make a temp dir
5151
TempSubjectDIR="$ResultsFolder/TempSubjectDIR"
5252
mkdir -p $TempSubjectDIR
53-
chmod 770 $TempSubjectDIR
53+
chmod 775 $TempSubjectDIR
5454

5555
#function clean_up {
5656
# echo Exit code caught. Removing temp scratch space directory

0 commit comments

Comments
 (0)