Skip to content

Commit

Permalink
Missing docstrings added
Browse files Browse the repository at this point in the history
  • Loading branch information
engrosamaali91 committed Oct 12, 2023
1 parent ee54377 commit 13ec264
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion brainprint/brainprint.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Definition of the brainprint analysis execution functions.
Definition of the brainprint analysis execution functions..
"""

import shutil
Expand Down
2 changes: 2 additions & 0 deletions brainprint/surfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ def create_aseg_surfaces(subject_dir: Path, destination: Path) -> Dict[str, Path
for label, indices in aseg_labels.items()
}


def create_cortical_surfaces(subject_dir: Path, destination: Path) -> Dict[str, Path]:
"""
Create cortical surfaces from FreeSurfer labels.
Expand Down Expand Up @@ -174,6 +175,7 @@ def create_cortical_surfaces(subject_dir: Path, destination: Path) -> Dict[str,
for label, name in cortical_labels.items()
}


def create_surfaces(
subject_dir: Path, destination: Path, skip_cortex: bool = False
) -> Dict[str, Path]:
Expand Down

0 comments on commit 13ec264

Please sign in to comment.