Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -920,6 +920,11 @@
"name": "Mihai, Paul Glad",
"orcid": "0000-0001-5715-6442"
},
{
"affiliation": "Child Mind Institute",
"name": "Cluce, Jon",
"orcid": "0000-0001-7590-5806"
},
{
"affiliation": "Department of Psychology, Stanford University",
"name": "Gorgolewski, Krzysztof J.",
Expand Down
2 changes: 1 addition & 1 deletion nipype/interfaces/afni/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -2741,7 +2741,7 @@ def _list_outputs(self):
odir = os.path.dirname(os.path.abspath(prefix))
outputs["out_corr_matrix"] = glob.glob(os.path.join(odir, "*.netcc"))[0]

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

Expand Down