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
7 changes: 6 additions & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,12 @@
"affiliation": "University of Tübingen and MPI for Biological Cybernertics",
"name": "Bannert, Michael M.",
"orcid": "0000-0003-1010-7517"
}
},
{
"affiliation": "Research Centre Juelich",
"name": "Wu, Jianxiao",
"orcid": "0000-0002-4866-272X",
},
],
"keywords": [
"neuroimaging",
Expand Down
2 changes: 1 addition & 1 deletion nipype/interfaces/freesurfer/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1966,7 +1966,7 @@ def _format_arg(self, name, spec, value):
if name == "lta_in" and self.inputs.invert_lta_in:
spec = "--lta-inv %s"
if name in ("fsl_out", "lta_out") and value is True:
value = self._list_outputs()[name]
value = self._list_outputs()[f'{name[:3]}_file']
return super()._format_arg(name, spec, value)

def _list_outputs(self):
Expand Down