Skip to content

Commit afaf91e

Browse files
authored
Merge pull request #3697 from shnizzedy/ts_Z_corr
[FIX] `ts_Z_corr` → `ts_wb_Z`
2 parents 237a9a7 + cbcb487 commit afaf91e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.zenodo.json

+5
Original file line numberDiff line numberDiff line change
@@ -920,6 +920,11 @@
920920
"name": "Mihai, Paul Glad",
921921
"orcid": "0000-0001-5715-6442"
922922
},
923+
{
924+
"affiliation": "Child Mind Institute",
925+
"name": "Cluce, Jon",
926+
"orcid": "0000-0001-7590-5806"
927+
},
923928
{
924929
"affiliation": "Department of Psychology, Stanford University",
925930
"name": "Gorgolewski, Krzysztof J.",

nipype/interfaces/afni/preprocess.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2741,7 +2741,7 @@ def _list_outputs(self):
27412741
odir = os.path.dirname(os.path.abspath(prefix))
27422742
outputs["out_corr_matrix"] = glob.glob(os.path.join(odir, "*.netcc"))[0]
27432743

2744-
if isdefined(self.inputs.ts_wb_corr) or isdefined(self.inputs.ts_Z_corr):
2744+
if self.inputs.ts_wb_corr or self.inputs.ts_wb_Z:
27452745
corrdir = os.path.join(odir, prefix + "_000_INDIV")
27462746
outputs["out_corr_maps"] = glob.glob(os.path.join(corrdir, "*.nii.gz"))
27472747

0 commit comments

Comments
 (0)