8000 [ENH] Issue 3345: Adding FreeSurfer longitudinal interfaces by l-espana · Pull Request #3529 · nipy/nipype · GitHub
[go: up one dir, main page]

Skip to content

[ENH] Issue 3345: Adding FreeSurfer longitudinal interfaces #3529

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Jul 5, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix typo
Co-authored-by: Ghislain Vaillant <ghisvail@users.noreply.github.com>
  • Loading branch information
l-espana and ghisvail authored Dec 15, 2022
commit bdc39fc3806880c879ad226cd4b698afe5cd0e79
2 changes: 1 addition & 1 deletion nipype/interfaces/freesurfer/longitudinal.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def _list_outputs(self):

def _is_resuming(self):
subjects_dir = self.inputs.subjects_dir
subject_id = f"{self.inputs.long_id}.long{self.inputs.base_id}"
subject_id = f"{self.inputs.long_id}.long.{self.inputs.base_id}"
if not isdefined(subjects_dir):
subjects_dir = self._gen_subjects_dir()
if os.path.isdir(os.path.join(subjects_dir, subject_id, "mri")):
Expand Down
0