You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ cortical parcellations or label files).
12
12
13
13
## Installation
14
14
15
-
Use the following code to install the latest release of LaPy into your local
15
+
Use the following code to install the latest release into your local
16
16
Python package directory:
17
17
18
18
`python3 -m pip install brainprint`
@@ -88,7 +88,14 @@ asymmetry calculation is performed and/or for the eigenvectors (CLI `--evecs` fl
88
88
89
89
## Changes
90
90
91
-
There are some changes in functionality in comparison to the original [BrainPrint](https://github.com/Deep-MI/BrainPrint-legacy)
91
+
Since version 0.5.0, some changes break compatibility with earlier versions (0.4.0 and lower) as well as the [original BrainPrint](https://github.com/Deep-MI/BrainPrint-legacy). These changes include:
92
+
93
+
- for the creation of surfaces from voxel-based segmentations, we have replaced FreeSurfer's marching cube algorithm by scikit-image's marching cube algorithm. Similarly, other FreeSurfer binaries have been replaced by custom Python functions. As a result, a parallel FreeSurfer installation is no longer a requirement for running the brainprint software.
94
+
- we have changed / removed the following composite structures from the brainprint shape descriptor: the left and right *striatum* (composite of caudate, putamen, and nucleus accumbens) and the left and right *ventricles* (composite of lateral, inferior lateral, 3rd ventricle, choroid plexus, and CSF) have been removed; the left and right *cerebellum-white-matter* and *cerebellum-cortex* have been merged into left and right *cerebellum*.
95
+
96
+
As a result of these changes, numerical values for the brainprint shape descriptor that are obtained from version 0.5.0 and higher are expected to differ from earlier versions when applied to the same data, but should remain highly correlated with earlier results.
97
+
98
+
There are some changes in version 0.4.0 (and lower) in functionality in comparison to the original [BrainPrint](https://github.com/Deep-MI/BrainPrint-legacy)
Copy file name to clipboardExpand all lines: brainprint/cli/help_text.py
+6-8Lines changed: 6 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
"""
2
2
Help text strings for the :mod:`brainprint.cli` module.
3
3
"""
4
+
4
5
CLI_DESCRIPTION: str= (
5
6
"This program conducts a brainprint analysis of FreeSurfer output."
6
7
)
@@ -20,7 +21,9 @@
20
21
ASYM_DISTANCE: str= (
21
22
"Distance measurement to use for asymmetry calculation (default: euc)"
22
23
)
23
-
CHOLMOD: str="Use cholesky decomposition (faster) instead of LU decomposition (slower). May require manual install of scikit-sparse library. Default is LU decomposition."
24
+
CHOLMOD: str= (
25
+
"Use cholesky decomposition (faster) instead of LU decomposition (slower). May require manual install of scikit-sparse library. Default is LU decomposition."
26
+
)
24
27
KEEP_TEMP: str= (
25
28
"Whether to keep the temporary files directory or not, by default False"
0 commit comments