junifer 0.0.6.dev478__py3-none-any.whl → 0.0.6.dev505__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- junifer/_version.py +9 -4
- junifer/data/coordinates/_coordinates.py +23 -21
- {junifer-0.0.6.dev478.dist-info → junifer-0.0.6.dev505.dist-info}/METADATA +1 -1
- {junifer-0.0.6.dev478.dist-info → junifer-0.0.6.dev505.dist-info}/RECORD +9 -9
- {junifer-0.0.6.dev478.dist-info → junifer-0.0.6.dev505.dist-info}/WHEEL +1 -1
- {junifer-0.0.6.dev478.dist-info → junifer-0.0.6.dev505.dist-info}/AUTHORS.rst +0 -0
- {junifer-0.0.6.dev478.dist-info → junifer-0.0.6.dev505.dist-info}/LICENSE.md +0 -0
- {junifer-0.0.6.dev478.dist-info → junifer-0.0.6.dev505.dist-info}/entry_points.txt +0 -0
- {junifer-0.0.6.dev478.dist-info → junifer-0.0.6.dev505.dist-info}/top_level.txt +0 -0
junifer/_version.py
CHANGED
@@ -1,8 +1,13 @@
|
|
1
|
-
# file generated by
|
1
|
+
# file generated by setuptools-scm
|
2
2
|
# don't change, don't track in version control
|
3
|
+
|
4
|
+
__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
|
5
|
+
|
3
6
|
TYPE_CHECKING = False
|
4
7
|
if TYPE_CHECKING:
|
5
|
-
from typing import Tuple
|
8
|
+
from typing import Tuple
|
9
|
+
from typing import Union
|
10
|
+
|
6
11
|
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
7
12
|
else:
|
8
13
|
VERSION_TUPLE = object
|
@@ -12,5 +17,5 @@ __version__: str
|
|
12
17
|
__version_tuple__: VERSION_TUPLE
|
13
18
|
version_tuple: VERSION_TUPLE
|
14
19
|
|
15
|
-
__version__ = version = '0.0.6.
|
16
|
-
__version_tuple__ = version_tuple = (0, 0, 6, '
|
20
|
+
__version__ = version = '0.0.6.dev505'
|
21
|
+
__version_tuple__ = version_tuple = (0, 0, 6, 'dev505')
|
@@ -47,83 +47,85 @@ class CoordinatesRegistry(BasePipelineDataRegistry, metaclass=Singleton):
|
|
47
47
|
self._builtin.update(
|
48
48
|
{
|
49
49
|
"CogAC": {
|
50
|
-
"file_path_suffix": "CogAC_VOIs.txt",
|
50
|
+
"file_path_suffix": "CogAC/CogAC_VOIs.txt",
|
51
51
|
"space": "MNI",
|
52
52
|
},
|
53
53
|
"CogAR": {
|
54
|
-
"file_path_suffix": "CogAR_VOIs.txt",
|
54
|
+
"file_path_suffix": "CogAR/CogAR_VOIs.txt",
|
55
55
|
"space": "MNI",
|
56
56
|
},
|
57
57
|
"DMNBuckner": {
|
58
|
-
"file_path_suffix": "DMNBuckner_VOIs.txt",
|
58
|
+
"file_path_suffix": "DMNBuckner/DMNBuckner_VOIs.txt",
|
59
59
|
"space": "MNI",
|
60
60
|
},
|
61
61
|
"eMDN": {
|
62
|
-
"file_path_suffix": "eMDN_VOIs.txt",
|
62
|
+
"file_path_suffix": "eMDN/eMDN_VOIs.txt",
|
63
63
|
"space": "MNI",
|
64
64
|
},
|
65
65
|
"Empathy": {
|
66
|
-
"file_path_suffix": "Empathy_VOIs.txt",
|
66
|
+
"file_path_suffix": "Empathy/Empathy_VOIs.txt",
|
67
67
|
"space": "MNI",
|
68
68
|
},
|
69
69
|
"eSAD": {
|
70
|
-
"file_path_suffix": "eSAD_VOIs.txt",
|
70
|
+
"file_path_suffix": "eSAD/eSAD_VOIs.txt",
|
71
71
|
"space": "MNI",
|
72
72
|
},
|
73
73
|
"extDMN": {
|
74
|
-
"file_path_suffix": "extDMN_VOIs.txt",
|
74
|
+
"file_path_suffix": "extDMN/extDMN_VOIs.txt",
|
75
75
|
"space": "MNI",
|
76
76
|
},
|
77
77
|
"Motor": {
|
78
|
-
"file_path_suffix": "Motor_VOIs.txt",
|
78
|
+
"file_path_suffix": "Motor/Motor_VOIs.txt",
|
79
79
|
"space": "MNI",
|
80
80
|
},
|
81
81
|
"MultiTask": {
|
82
|
-
"file_path_suffix": "MultiTask_VOIs.txt",
|
82
|
+
"file_path_suffix": "MultiTask/MultiTask_VOIs.txt",
|
83
83
|
"space": "MNI",
|
84
84
|
},
|
85
85
|
"PhysioStress": {
|
86
|
-
"file_path_suffix": "PhysioStress_VOIs.txt",
|
86
|
+
"file_path_suffix": "PhysioStress/PhysioStress_VOIs.txt",
|
87
87
|
"space": "MNI",
|
88
88
|
},
|
89
89
|
"Rew": {
|
90
|
-
"file_path_suffix": "Rew_VOIs.txt",
|
90
|
+
"file_path_suffix": "Rew/Rew_VOIs.txt",
|
91
91
|
"space": "MNI",
|
92
92
|
},
|
93
93
|
"Somatosensory": {
|
94
|
-
"file_path_suffix": "Somatosensory_VOIs.txt",
|
94
|
+
"file_path_suffix": "Somatosensory/Somatosensory_VOIs.txt",
|
95
95
|
"space": "MNI",
|
96
96
|
},
|
97
97
|
"ToM": {
|
98
|
-
"file_path_suffix": "ToM_VOIs.txt",
|
98
|
+
"file_path_suffix": "ToM/ToM_VOIs.txt",
|
99
99
|
"space": "MNI",
|
100
100
|
},
|
101
101
|
"VigAtt": {
|
102
|
-
"file_path_suffix": "VigAtt_VOIs.txt",
|
102
|
+
"file_path_suffix": "VigAtt/VigAtt_VOIs.txt",
|
103
103
|
"space": "MNI",
|
104
104
|
},
|
105
105
|
"WM": {
|
106
|
-
"file_path_suffix": "WM_VOIs.txt",
|
106
|
+
"file_path_suffix": "WM/WM_VOIs.txt",
|
107
107
|
"space": "MNI",
|
108
108
|
},
|
109
109
|
"Power": {
|
110
|
-
"file_path_suffix": "Power2011_MNI_VOIs.txt",
|
110
|
+
"file_path_suffix": "Power/Power2011_MNI_VOIs.txt",
|
111
111
|
"space": "MNI",
|
112
112
|
},
|
113
113
|
"Power2011": {
|
114
|
-
"file_path_suffix": "Power2011_MNI_VOIs.txt",
|
114
|
+
"file_path_suffix": "Power/Power2011_MNI_VOIs.txt",
|
115
115
|
"space": "MNI",
|
116
116
|
},
|
117
117
|
"Dosenbach": {
|
118
|
-
"file_path_suffix": "Dosenbach2010_MNI_VOIs.txt",
|
118
|
+
"file_path_suffix": "Dosenbach/Dosenbach2010_MNI_VOIs.txt",
|
119
119
|
"space": "MNI",
|
120
120
|
},
|
121
121
|
"Power2013": {
|
122
|
-
"file_path_suffix": "Power2013_MNI_VOIs.tsv",
|
122
|
+
"file_path_suffix": "Power/Power2013_MNI_VOIs.tsv",
|
123
123
|
"space": "MNI",
|
124
124
|
},
|
125
125
|
"AutobiographicalMemory": {
|
126
|
-
"file_path_suffix":
|
126
|
+
"file_path_suffix": (
|
127
|
+
"AutobiographicalMemory/AutobiographicalMemory_VOIs.txt"
|
128
|
+
),
|
127
129
|
"space": "MNI",
|
128
130
|
},
|
129
131
|
}
|
@@ -277,7 +279,7 @@ class CoordinatesRegistry(BasePipelineDataRegistry, metaclass=Singleton):
|
|
277
279
|
if t_coord.get("file_path_suffix") is not None:
|
278
280
|
# Set file path to retrieve
|
279
281
|
coords_file_path = Path(
|
280
|
-
f"coordinates/{
|
282
|
+
f"coordinates/{t_coord['file_path_suffix']}"
|
281
283
|
)
|
282
284
|
logger.debug(f"Loading coordinates: `{name}`")
|
283
285
|
# Load via pandas
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: junifer
|
3
|
-
Version: 0.0.6.
|
3
|
+
Version: 0.0.6.dev505
|
4
4
|
Summary: JUelich NeuroImaging FEature extractoR
|
5
5
|
Author-email: Fede Raimondo <f.raimondo@fz-juelich.de>, Synchon Mandal <s.mandal@fz-juelich.de>
|
6
6
|
Maintainer-email: Fede Raimondo <f.raimondo@fz-juelich.de>, Synchon Mandal <s.mandal@fz-juelich.de>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
junifer/__init__.py,sha256=2McgH1yNue6Z1V26-uN_mfMjbTcx4CLhym-DMBl5xA4,266
|
2
2
|
junifer/__init__.pyi,sha256=SsTvgq2Dod6UqJN96GH1lCphH6hJQQurEJHGNhHjGUI,508
|
3
|
-
junifer/_version.py,sha256=
|
3
|
+
junifer/_version.py,sha256=DTERGyuHTczYxtYIjKleqS8wne_AfGBK-yJ7a0FH5xI,528
|
4
4
|
junifer/conftest.py,sha256=PWYkkRDU8ly2lYwv7VBKMHje4et6HX7Yey3Md_I2KbA,613
|
5
5
|
junifer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
junifer/stats.py,sha256=e9aaagMGtgpRfW3Wdpz9ocpnYld1IWylCDcjFUgX9Mk,6225
|
@@ -80,7 +80,7 @@ junifer/data/utils.py,sha256=c3o4RcaTrD24jhmwjVBKz6P2gCCKPMg9SbMvNLBFUZA,3712
|
|
80
80
|
junifer/data/coordinates/__init__.py,sha256=ffM8rwcHLgHAWixJbKrATrbUKzX940V1UF6RAxZdUMg,186
|
81
81
|
junifer/data/coordinates/__init__.pyi,sha256=Z-Ti5XD3HigkZ8uYN6oYsLqw40-F1GvTVQ5QAy08Wng,88
|
82
82
|
junifer/data/coordinates/_ants_coordinates_warper.py,sha256=5RWDC-nI3VG9lkSJ-_y_hlDtjPctKSJokQOp3v8ozwY,2956
|
83
|
-
junifer/data/coordinates/_coordinates.py,sha256=
|
83
|
+
junifer/data/coordinates/_coordinates.py,sha256=ByGCaJ2Ftp5W2zDdFKLHCdIS0_Z5EOXMvScEfozYloo,13494
|
84
84
|
junifer/data/coordinates/_fsl_coordinates_warper.py,sha256=5h7rwiPMYBQlA3sMZUImcpnNLLWvIp2-bAEaaHtzX9c,2409
|
85
85
|
junifer/data/coordinates/VOIs/meta/AutobiographicalMemory_VOIs.txt,sha256=9af38naeL18Tlt_gy_ep6vyTAxOB336JYjbo5FvP8PQ,686
|
86
86
|
junifer/data/coordinates/VOIs/meta/CogAC_VOIs.txt,sha256=Sr5_E712OLdeQRyUcDNM0wLBvZIyO6gc9Q7KkyJHX1A,398
|
@@ -341,10 +341,10 @@ junifer/utils/tests/test_config.py,sha256=7ltIXuwb_W4Mv_1dxQWyiyM10XgUAfsWKV6D_i
|
|
341
341
|
junifer/utils/tests/test_fs.py,sha256=WQS7cKlKEZ742CIuiOYYpueeAhY9PqlastfDVpVVtvE,923
|
342
342
|
junifer/utils/tests/test_helpers.py,sha256=k5qqfxK8dFyuewTJyR1Qn6-nFaYNuVr0ysc18bfPjyU,929
|
343
343
|
junifer/utils/tests/test_logging.py,sha256=duO4ou365hxwa_kwihFtKPLaL6LC5XHiyhOijrrngbA,8009
|
344
|
-
junifer-0.0.6.
|
345
|
-
junifer-0.0.6.
|
346
|
-
junifer-0.0.6.
|
347
|
-
junifer-0.0.6.
|
348
|
-
junifer-0.0.6.
|
349
|
-
junifer-0.0.6.
|
350
|
-
junifer-0.0.6.
|
344
|
+
junifer-0.0.6.dev505.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
|
345
|
+
junifer-0.0.6.dev505.dist-info/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
|
346
|
+
junifer-0.0.6.dev505.dist-info/METADATA,sha256=A8OE5bPou_SYMs3SNqLEHW0q4kS9nYjQcXR2742WS1I,8420
|
347
|
+
junifer-0.0.6.dev505.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
348
|
+
junifer-0.0.6.dev505.dist-info/entry_points.txt,sha256=6O8ru0BP-SP7YMUZiizFNoaZ2HvJpadO2G7nKk4PwjI,48
|
349
|
+
junifer-0.0.6.dev505.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
|
350
|
+
junifer-0.0.6.dev505.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|