junifer 0.0.3.dev188__py3-none-any.whl → 0.0.4__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 +14 -2
- junifer/api/cli.py +162 -17
- junifer/api/functions.py +87 -419
- junifer/api/parser.py +24 -0
- junifer/api/queue_context/__init__.py +8 -0
- junifer/api/queue_context/gnu_parallel_local_adapter.py +258 -0
- junifer/api/queue_context/htcondor_adapter.py +365 -0
- junifer/api/queue_context/queue_context_adapter.py +60 -0
- junifer/api/queue_context/tests/test_gnu_parallel_local_adapter.py +192 -0
- junifer/api/queue_context/tests/test_htcondor_adapter.py +257 -0
- junifer/api/res/afni/run_afni_docker.sh +6 -6
- junifer/api/res/ants/ResampleImage +3 -0
- junifer/api/res/ants/antsApplyTransforms +3 -0
- junifer/api/res/ants/antsApplyTransformsToPoints +3 -0
- junifer/api/res/ants/run_ants_docker.sh +39 -0
- junifer/api/res/fsl/applywarp +3 -0
- junifer/api/res/fsl/flirt +3 -0
- junifer/api/res/fsl/img2imgcoord +3 -0
- junifer/api/res/fsl/run_fsl_docker.sh +39 -0
- junifer/api/res/fsl/std2imgcoord +3 -0
- junifer/api/res/run_conda.sh +4 -4
- junifer/api/res/run_venv.sh +22 -0
- junifer/api/tests/data/partly_cloudy_agg_mean_tian.yml +16 -0
- junifer/api/tests/test_api_utils.py +21 -3
- junifer/api/tests/test_cli.py +232 -9
- junifer/api/tests/test_functions.py +211 -439
- junifer/api/tests/test_parser.py +1 -1
- junifer/configs/juseless/datagrabbers/aomic_id1000_vbm.py +6 -1
- junifer/configs/juseless/datagrabbers/camcan_vbm.py +6 -1
- junifer/configs/juseless/datagrabbers/ixi_vbm.py +6 -1
- junifer/configs/juseless/datagrabbers/tests/test_ucla.py +8 -8
- junifer/configs/juseless/datagrabbers/ucla.py +44 -26
- junifer/configs/juseless/datagrabbers/ukb_vbm.py +6 -1
- junifer/data/VOIs/meta/AutobiographicalMemory_VOIs.txt +23 -0
- junifer/data/VOIs/meta/Power2013_MNI_VOIs.tsv +264 -0
- junifer/data/__init__.py +4 -0
- junifer/data/coordinates.py +298 -31
- junifer/data/masks.py +360 -28
- junifer/data/parcellations.py +621 -188
- junifer/data/template_spaces.py +190 -0
- junifer/data/tests/test_coordinates.py +34 -3
- junifer/data/tests/test_data_utils.py +1 -0
- junifer/data/tests/test_masks.py +202 -86
- junifer/data/tests/test_parcellations.py +266 -55
- junifer/data/tests/test_template_spaces.py +104 -0
- junifer/data/utils.py +4 -2
- junifer/datagrabber/__init__.py +1 -0
- junifer/datagrabber/aomic/id1000.py +111 -70
- junifer/datagrabber/aomic/piop1.py +116 -53
- junifer/datagrabber/aomic/piop2.py +116 -53
- junifer/datagrabber/aomic/tests/test_id1000.py +27 -27
- junifer/datagrabber/aomic/tests/test_piop1.py +27 -27
- junifer/datagrabber/aomic/tests/test_piop2.py +27 -27
- junifer/datagrabber/base.py +62 -10
- junifer/datagrabber/datalad_base.py +0 -2
- junifer/datagrabber/dmcc13_benchmark.py +372 -0
- junifer/datagrabber/hcp1200/datalad_hcp1200.py +5 -0
- junifer/datagrabber/hcp1200/hcp1200.py +30 -13
- junifer/datagrabber/pattern.py +133 -27
- junifer/datagrabber/pattern_datalad.py +111 -13
- junifer/datagrabber/tests/test_base.py +57 -6
- junifer/datagrabber/tests/test_datagrabber_utils.py +204 -76
- junifer/datagrabber/tests/test_datalad_base.py +0 -6
- junifer/datagrabber/tests/test_dmcc13_benchmark.py +256 -0
- junifer/datagrabber/tests/test_multiple.py +43 -10
- junifer/datagrabber/tests/test_pattern.py +125 -178
- junifer/datagrabber/tests/test_pattern_datalad.py +44 -25
- junifer/datagrabber/utils.py +151 -16
- junifer/datareader/default.py +36 -10
- junifer/external/nilearn/junifer_nifti_spheres_masker.py +6 -0
- junifer/markers/base.py +25 -16
- junifer/markers/collection.py +35 -16
- junifer/markers/complexity/__init__.py +27 -0
- junifer/markers/complexity/complexity_base.py +149 -0
- junifer/markers/complexity/hurst_exponent.py +136 -0
- junifer/markers/complexity/multiscale_entropy_auc.py +140 -0
- junifer/markers/complexity/perm_entropy.py +132 -0
- junifer/markers/complexity/range_entropy.py +136 -0
- junifer/markers/complexity/range_entropy_auc.py +145 -0
- junifer/markers/complexity/sample_entropy.py +134 -0
- junifer/markers/complexity/tests/test_complexity_base.py +19 -0
- junifer/markers/complexity/tests/test_hurst_exponent.py +69 -0
- junifer/markers/complexity/tests/test_multiscale_entropy_auc.py +68 -0
- junifer/markers/complexity/tests/test_perm_entropy.py +68 -0
- junifer/markers/complexity/tests/test_range_entropy.py +69 -0
- junifer/markers/complexity/tests/test_range_entropy_auc.py +69 -0
- junifer/markers/complexity/tests/test_sample_entropy.py +68 -0
- junifer/markers/complexity/tests/test_weighted_perm_entropy.py +68 -0
- junifer/markers/complexity/weighted_perm_entropy.py +133 -0
- junifer/markers/falff/_afni_falff.py +153 -0
- junifer/markers/falff/_junifer_falff.py +142 -0
- junifer/markers/falff/falff_base.py +91 -84
- junifer/markers/falff/falff_parcels.py +61 -45
- junifer/markers/falff/falff_spheres.py +64 -48
- junifer/markers/falff/tests/test_falff_parcels.py +89 -121
- junifer/markers/falff/tests/test_falff_spheres.py +92 -127
- junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py +1 -0
- junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py +1 -0
- junifer/markers/functional_connectivity/functional_connectivity_base.py +1 -0
- junifer/markers/functional_connectivity/tests/test_crossparcellation_functional_connectivity.py +46 -44
- junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py +34 -39
- junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py +40 -52
- junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py +62 -70
- junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py +99 -85
- junifer/markers/parcel_aggregation.py +60 -38
- junifer/markers/reho/_afni_reho.py +192 -0
- junifer/markers/reho/_junifer_reho.py +281 -0
- junifer/markers/reho/reho_base.py +69 -34
- junifer/markers/reho/reho_parcels.py +26 -16
- junifer/markers/reho/reho_spheres.py +23 -9
- junifer/markers/reho/tests/test_reho_parcels.py +93 -92
- junifer/markers/reho/tests/test_reho_spheres.py +88 -86
- junifer/markers/sphere_aggregation.py +54 -9
- junifer/markers/temporal_snr/temporal_snr_base.py +1 -0
- junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py +38 -37
- junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py +34 -38
- junifer/markers/tests/test_collection.py +43 -42
- junifer/markers/tests/test_ets_rss.py +29 -37
- junifer/markers/tests/test_parcel_aggregation.py +587 -468
- junifer/markers/tests/test_sphere_aggregation.py +209 -157
- junifer/markers/utils.py +2 -40
- junifer/onthefly/read_transform.py +13 -6
- junifer/pipeline/__init__.py +1 -0
- junifer/pipeline/pipeline_step_mixin.py +105 -41
- junifer/pipeline/registry.py +17 -0
- junifer/pipeline/singleton.py +45 -0
- junifer/pipeline/tests/test_pipeline_step_mixin.py +139 -51
- junifer/pipeline/tests/test_update_meta_mixin.py +1 -0
- junifer/pipeline/tests/test_workdir_manager.py +104 -0
- junifer/pipeline/update_meta_mixin.py +8 -2
- junifer/pipeline/utils.py +154 -15
- junifer/pipeline/workdir_manager.py +246 -0
- junifer/preprocess/__init__.py +3 -0
- junifer/preprocess/ants/__init__.py +4 -0
- junifer/preprocess/ants/ants_apply_transforms_warper.py +185 -0
- junifer/preprocess/ants/tests/test_ants_apply_transforms_warper.py +56 -0
- junifer/preprocess/base.py +96 -69
- junifer/preprocess/bold_warper.py +265 -0
- junifer/preprocess/confounds/fmriprep_confound_remover.py +91 -134
- junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py +106 -111
- junifer/preprocess/fsl/__init__.py +4 -0
- junifer/preprocess/fsl/apply_warper.py +179 -0
- junifer/preprocess/fsl/tests/test_apply_warper.py +45 -0
- junifer/preprocess/tests/test_bold_warper.py +159 -0
- junifer/preprocess/tests/test_preprocess_base.py +6 -6
- junifer/preprocess/warping/__init__.py +6 -0
- junifer/preprocess/warping/_ants_warper.py +167 -0
- junifer/preprocess/warping/_fsl_warper.py +109 -0
- junifer/preprocess/warping/space_warper.py +213 -0
- junifer/preprocess/warping/tests/test_space_warper.py +198 -0
- junifer/stats.py +18 -4
- junifer/storage/base.py +9 -1
- junifer/storage/hdf5.py +8 -3
- junifer/storage/pandas_base.py +2 -1
- junifer/storage/sqlite.py +1 -0
- junifer/storage/tests/test_hdf5.py +2 -1
- junifer/storage/tests/test_sqlite.py +8 -8
- junifer/storage/tests/test_utils.py +6 -6
- junifer/storage/utils.py +1 -0
- junifer/testing/datagrabbers.py +11 -7
- junifer/testing/utils.py +1 -0
- junifer/tests/test_stats.py +2 -0
- junifer/utils/__init__.py +1 -0
- junifer/utils/helpers.py +53 -0
- junifer/utils/logging.py +14 -3
- junifer/utils/tests/test_helpers.py +35 -0
- {junifer-0.0.3.dev188.dist-info → junifer-0.0.4.dist-info}/METADATA +59 -28
- junifer-0.0.4.dist-info/RECORD +257 -0
- {junifer-0.0.3.dev188.dist-info → junifer-0.0.4.dist-info}/WHEEL +1 -1
- junifer/markers/falff/falff_estimator.py +0 -334
- junifer/markers/falff/tests/test_falff_estimator.py +0 -238
- junifer/markers/reho/reho_estimator.py +0 -515
- junifer/markers/reho/tests/test_reho_estimator.py +0 -260
- junifer-0.0.3.dev188.dist-info/RECORD +0 -199
- {junifer-0.0.3.dev188.dist-info → junifer-0.0.4.dist-info}/AUTHORS.rst +0 -0
- {junifer-0.0.3.dev188.dist-info → junifer-0.0.4.dist-info}/LICENSE.md +0 -0
- {junifer-0.0.3.dev188.dist-info → junifer-0.0.4.dist-info}/entry_points.txt +0 -0
- {junifer-0.0.3.dev188.dist-info → junifer-0.0.4.dist-info}/top_level.txt +0 -0
junifer/api/tests/test_parser.py
CHANGED
@@ -53,7 +53,7 @@ def test_parse_yaml_success_with_module_autoload(tmp_path: Path) -> None:
|
|
53
53
|
assert "foo" in contents
|
54
54
|
assert contents["foo"] == "bar"
|
55
55
|
assert "with" in contents
|
56
|
-
assert contents["with"] == "numpy"
|
56
|
+
assert contents["with"] == ["numpy"]
|
57
57
|
assert "numpy" in sys.modules
|
58
58
|
assert "junifer.configs.wrong_config" not in sys.modules
|
59
59
|
|
@@ -31,7 +31,12 @@ class JuselessDataladAOMICID1000VBM(PatternDataladDataGrabber):
|
|
31
31
|
types = ["VBM_GM"]
|
32
32
|
replacements = ["subject"]
|
33
33
|
patterns = {
|
34
|
-
"VBM_GM":
|
34
|
+
"VBM_GM": {
|
35
|
+
"pattern": (
|
36
|
+
"{subject}/mri/mwp1{subject}_run-2_T1w.nii.gz"
|
37
|
+
),
|
38
|
+
"space": "IXI549Space",
|
39
|
+
},
|
35
40
|
}
|
36
41
|
super().__init__(
|
37
42
|
types=types,
|
@@ -34,7 +34,12 @@ class JuselessDataladCamCANVBM(PatternDataladDataGrabber):
|
|
34
34
|
)
|
35
35
|
types = ["VBM_GM"]
|
36
36
|
replacements = ["subject"]
|
37
|
-
patterns = {
|
37
|
+
patterns = {
|
38
|
+
"VBM_GM": {
|
39
|
+
"pattern": "{subject}/mri/m0wp1{subject}.nii.gz",
|
40
|
+
"space": "IXI549Space",
|
41
|
+
},
|
42
|
+
}
|
38
43
|
super().__init__(
|
39
44
|
types=types,
|
40
45
|
datadir=datadir,
|
@@ -43,7 +43,12 @@ class JuselessDataladIXIVBM(PatternDataladDataGrabber):
|
|
43
43
|
types = ["VBM_GM"]
|
44
44
|
replacements = ["site", "subject"]
|
45
45
|
patterns = {
|
46
|
-
"VBM_GM":
|
46
|
+
"VBM_GM": {
|
47
|
+
"pattern": (
|
48
|
+
"{site}/{subject}/mri/m0wp1{subject}.nii.gz"
|
49
|
+
),
|
50
|
+
"space": "IXI549Space",
|
51
|
+
},
|
47
52
|
}
|
48
53
|
|
49
54
|
# validate and/or transform 'site' input
|
@@ -29,9 +29,9 @@ def test_JuselessUCLA() -> None:
|
|
29
29
|
"BOLD",
|
30
30
|
"BOLD_confounds",
|
31
31
|
"T1w",
|
32
|
-
"
|
33
|
-
"
|
34
|
-
"
|
32
|
+
"VBM_CSF",
|
33
|
+
"VBM_GM",
|
34
|
+
"VBM_WM",
|
35
35
|
]
|
36
36
|
|
37
37
|
for t in types:
|
@@ -45,12 +45,12 @@ def test_JuselessUCLA() -> None:
|
|
45
45
|
"BOLD",
|
46
46
|
"BOLD_confounds",
|
47
47
|
"T1w",
|
48
|
-
"
|
49
|
-
"
|
50
|
-
"
|
48
|
+
"VBM_CSF",
|
49
|
+
"VBM_GM",
|
50
|
+
"VBM_WM",
|
51
51
|
["BOLD", "BOLD_confounds"],
|
52
|
-
["T1w", "
|
53
|
-
["
|
52
|
+
["T1w", "VBM_CSF"],
|
53
|
+
["VBM_GM", "VBM_WM"],
|
54
54
|
["BOLD", "T1w"],
|
55
55
|
],
|
56
56
|
)
|
@@ -23,8 +23,8 @@ class JuselessUCLA(PatternDataGrabber):
|
|
23
23
|
datadir : str or Path, optional
|
24
24
|
The directory where the dataset is stored.
|
25
25
|
(default "/data/project/psychosis_thalamus/data/fmriprep").
|
26
|
-
types: {"BOLD", "BOLD_confounds", "T1w", "
|
27
|
-
"
|
26
|
+
types: {"BOLD", "BOLD_confounds", "T1w", "VBM_CSF", "VBM_GM", \
|
27
|
+
"VBM_WM"} or a list of the options, optional
|
28
28
|
UCLA data types. If None, all available data types are selected.
|
29
29
|
(default None).
|
30
30
|
tasks : {"rest", "bart", "bht", "pamenc", "pamret", \
|
@@ -70,30 +70,48 @@ class JuselessUCLA(PatternDataGrabber):
|
|
70
70
|
self.tasks = tasks
|
71
71
|
# The patterns
|
72
72
|
patterns = {
|
73
|
-
"BOLD":
|
74
|
-
"
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
"
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
"
|
96
|
-
|
73
|
+
"BOLD": {
|
74
|
+
"pattern": (
|
75
|
+
"{subject}/func/{subject}_task-{task}_bold_space-"
|
76
|
+
"MNI152NLin2009cAsym_preproc.nii.gz"
|
77
|
+
),
|
78
|
+
"space": "MNI152NLin2009cAsym",
|
79
|
+
},
|
80
|
+
"BOLD_confounds": {
|
81
|
+
"pattern": (
|
82
|
+
"{subject}/func/{subject}_"
|
83
|
+
"task-{task}_bold_confounds.tsv"
|
84
|
+
),
|
85
|
+
"space": "fmriprep",
|
86
|
+
},
|
87
|
+
"T1w": {
|
88
|
+
"pattern": (
|
89
|
+
"{subject}/anat/{subject}_"
|
90
|
+
"T1w_space-MNI152NLin2009cAsym_preproc.nii.gz"
|
91
|
+
),
|
92
|
+
"space": "MNI152NLin2009cAsym",
|
93
|
+
},
|
94
|
+
"VBM_CSF": {
|
95
|
+
"pattern": (
|
96
|
+
"{subject}/anat/{subject}_T1w_space-"
|
97
|
+
"MNI152NLin2009cAsym_class-CSF_probtissue.nii.gz"
|
98
|
+
),
|
99
|
+
"space": "MNI152NLin2009cAsym",
|
100
|
+
},
|
101
|
+
"VBM_GM": {
|
102
|
+
"pattern": (
|
103
|
+
"{subject}/anat/{subject}_T1w_space-"
|
104
|
+
"MNI152NLin2009cAsym_class-GM_probtissue.nii.gz"
|
105
|
+
),
|
106
|
+
"space": "MNI152NLin2009cAsym",
|
107
|
+
},
|
108
|
+
"VBM_WM": {
|
109
|
+
"pattern": (
|
110
|
+
"{subject}/anat/{subject}_T1w_space"
|
111
|
+
"-MNI152NLin2009cAsym_class-WM_probtissue.nii.gz"
|
112
|
+
),
|
113
|
+
"space": "MNI152NLin2009cAsym",
|
114
|
+
},
|
97
115
|
}
|
98
116
|
# Set default types
|
99
117
|
if types is None:
|
@@ -32,7 +32,12 @@ class JuselessDataladUKBVBM(PatternDataladDataGrabber):
|
|
32
32
|
rootdir = "m0wp1"
|
33
33
|
types = ["VBM_GM"]
|
34
34
|
replacements = ["subject", "session"]
|
35
|
-
patterns = {
|
35
|
+
patterns = {
|
36
|
+
"VBM_GM": {
|
37
|
+
"pattern": "m0wp1{subject}_ses-{session}_T1w.nii.gz",
|
38
|
+
"space": "IXI549Space",
|
39
|
+
},
|
40
|
+
}
|
36
41
|
super().__init__(
|
37
42
|
types=types,
|
38
43
|
datadir=datadir,
|
@@ -0,0 +1,23 @@
|
|
1
|
+
-2 -53 18 PCu-PCC_LR
|
2
|
+
-25 -26 -14 HC-PHC-AMG_L
|
3
|
+
-47 -61 26 TPJ_L
|
4
|
+
-3 47 -1 Medial-prefrontal-cortex_rACC(bilateral)_L
|
5
|
+
-56 -8 -14 STS_MTG_inferior-temporal-sulcus_L
|
6
|
+
-47 25 -5 Ventrolateral-prefrontal-cortex_temporal-pole_L
|
7
|
+
23 -31 -12 HC-PHC_R
|
8
|
+
-3 12 57 Middle-frontal-gyrus_LR
|
9
|
+
49 -59 27 TPJ_R
|
10
|
+
-45 3 45 Posterior-lateral-prefrontal-cortex_L
|
11
|
+
-40 47 14 Frontal-pole(lateral)_L
|
12
|
+
23 -13 -15 HC-PHC_R
|
13
|
+
49 -5 -13 Temporal-pole_STS_MTG_R
|
14
|
+
-37 14 -32 Temporal-pole_L
|
15
|
+
-37 -81 30 Occ_L
|
16
|
+
-46 24 21 Dorsolateral-prefrontal-cortex_L
|
17
|
+
50 27 -5 Ventrolateral-prefrontal-cortex_R
|
18
|
+
-11 55 17 Frontal_pole(medial)_L
|
19
|
+
3 -9 5 Thalamus_R
|
20
|
+
-5 33 22 rACC_L
|
21
|
+
-6 -37 33 PCC_L
|
22
|
+
-28 9 51 Superior-frontal-sulcus_L
|
23
|
+
28 1 -19 AMG_R
|
@@ -0,0 +1,264 @@
|
|
1
|
+
22 -65 48 1
|
2
|
+
25 -58 60 2
|
3
|
+
-35 20 0 3
|
4
|
+
12 36 20 4
|
5
|
+
40 18 40 5
|
6
|
+
54 -28 34 6
|
7
|
+
36 22 3 7
|
8
|
+
59 -17 29 8
|
9
|
+
-45 0 9 9
|
10
|
+
46 -59 4 10
|
11
|
+
-32 -1 54 11
|
12
|
+
32 14 56 12
|
13
|
+
-42 -60 -9 13
|
14
|
+
-34 3 4 14
|
15
|
+
37 1 -4 15
|
16
|
+
29 -5 54 16
|
17
|
+
11 -39 50 17
|
18
|
+
37 -65 40 18
|
19
|
+
-34 -38 -16 19
|
20
|
+
-52 -63 5 20
|
21
|
+
-10 11 67 21
|
22
|
+
-44 2 46 22
|
23
|
+
-3 26 44 23
|
24
|
+
49 8 -1 24
|
25
|
+
-33 -46 47 25
|
26
|
+
-27 -71 37 26
|
27
|
+
55 -45 37 27
|
28
|
+
7 8 51 28
|
29
|
+
36 10 1 29
|
30
|
+
-39 51 17 30
|
31
|
+
10 -62 61 31
|
32
|
+
-16 -5 71 32
|
33
|
+
43 49 -2 33
|
34
|
+
37 32 -2 34
|
35
|
+
10 -2 45 35
|
36
|
+
47 -30 49 36
|
37
|
+
36 -9 14 37
|
38
|
+
-3 2 53 38
|
39
|
+
-51 8 -2 39
|
40
|
+
-1 15 44 40
|
41
|
+
31 -14 2 41
|
42
|
+
19 -8 64 42
|
43
|
+
-10 -2 42 43
|
44
|
+
65 -33 20 44
|
45
|
+
-30 -27 12 45
|
46
|
+
6 -72 24 46
|
47
|
+
-7 -52 61 47
|
48
|
+
-49 -42 1 48
|
49
|
+
-49 25 -1 49
|
50
|
+
-5 18 34 50
|
51
|
+
-23 11 64 51
|
52
|
+
31 33 26 52
|
53
|
+
-0 30 27 53
|
54
|
+
-53 -22 23 54
|
55
|
+
-42 -55 45 55
|
56
|
+
-50 -34 26 56
|
57
|
+
48 22 10 57
|
58
|
+
31 56 14 58
|
59
|
+
44 -8 57 59
|
60
|
+
49 35 -12 60
|
61
|
+
-56 -50 10 61
|
62
|
+
2 -24 30 62
|
63
|
+
29 -39 59 63
|
64
|
+
-42 -74 0 64
|
65
|
+
-34 55 4 65
|
66
|
+
13 -1 70 66
|
67
|
+
42 -0 47 67
|
68
|
+
-3 42 16 68
|
69
|
+
5 23 37 69
|
70
|
+
51 -29 -4 70
|
71
|
+
0 -15 47 71
|
72
|
+
52 -33 8 72
|
73
|
+
34 16 -8 73
|
74
|
+
-7 -71 42 74
|
75
|
+
-29 -43 61 75
|
76
|
+
33 -53 44 76
|
77
|
+
-55 -40 14 77
|
78
|
+
-17 -59 64 78
|
79
|
+
56 -5 13 79
|
80
|
+
46 -47 -17 80
|
81
|
+
-11 26 25 81
|
82
|
+
22 -42 69 82
|
83
|
+
-13 -40 1 83
|
84
|
+
43 -23 20 84
|
85
|
+
-53 -49 43 85
|
86
|
+
-47 11 23 86
|
87
|
+
54 -43 22 87
|
88
|
+
53 33 1 88
|
89
|
+
10 22 27 89
|
90
|
+
-55 -9 12 90
|
91
|
+
-58 -30 -4 91
|
92
|
+
-42 45 -2 92
|
93
|
+
56 -46 11 93
|
94
|
+
-45 -32 47 94
|
95
|
+
11 -66 42 95
|
96
|
+
-28 -79 19 96
|
97
|
+
-47 -76 -10 97
|
98
|
+
-2 38 36 98
|
99
|
+
-54 -23 43 99
|
100
|
+
-28 52 21 100
|
101
|
+
47 -50 29 101
|
102
|
+
-2 -35 31 102
|
103
|
+
50 -20 42 103
|
104
|
+
-42 38 21 104
|
105
|
+
26 50 27 105
|
106
|
+
58 -53 -14 106
|
107
|
+
47 10 33 107
|
108
|
+
32 -26 13 108
|
109
|
+
-46 31 -13 109
|
110
|
+
10 -46 73 110
|
111
|
+
27 -37 -13 111
|
112
|
+
43 -72 28 112
|
113
|
+
52 -2 -16 113
|
114
|
+
-2 -37 44 114
|
115
|
+
38 43 15 115
|
116
|
+
-60 -25 14 116
|
117
|
+
-41 6 33 117
|
118
|
+
-2 -13 12 118
|
119
|
+
42 -66 -8 119
|
120
|
+
9 -4 6 120
|
121
|
+
29 1 4 121
|
122
|
+
15 5 7 122
|
123
|
+
-42 25 30 123
|
124
|
+
-26 -40 -8 124
|
125
|
+
65 -31 -9 125
|
126
|
+
44 -53 47 126
|
127
|
+
-18 -76 -24 127
|
128
|
+
-35 20 51 128
|
129
|
+
-28 -58 48 129
|
130
|
+
-49 -26 5 130
|
131
|
+
-53 -10 24 131
|
132
|
+
-47 -51 -21 132
|
133
|
+
58 -16 7 133
|
134
|
+
49 -42 45 134
|
135
|
+
40 -72 14 135
|
136
|
+
-32 -55 -25 136
|
137
|
+
-14 -18 40 137
|
138
|
+
-41 -75 26 138
|
139
|
+
-16 -77 34 139
|
140
|
+
4 -48 51 140
|
141
|
+
-68 -41 -5 141
|
142
|
+
35 -67 -34 142
|
143
|
+
22 39 39 143
|
144
|
+
-56 -13 -10 144
|
145
|
+
15 -63 26 145
|
146
|
+
-15 4 8 146
|
147
|
+
29 -77 25 147
|
148
|
+
38 -17 45 148
|
149
|
+
23 10 1 149
|
150
|
+
66 -8 25 150
|
151
|
+
51 -6 32 151
|
152
|
+
-39 -75 44 152
|
153
|
+
-11 45 8 153
|
154
|
+
52 7 -30 154
|
155
|
+
-21 41 -20 155
|
156
|
+
-12 -95 -13 156
|
157
|
+
8 42 -5 157
|
158
|
+
34 38 -12 158
|
159
|
+
-16 -46 73 159
|
160
|
+
37 -84 13 160
|
161
|
+
18 -47 -10 161
|
162
|
+
-11 -56 16 162
|
163
|
+
48 25 27 163
|
164
|
+
-53 3 -27 164
|
165
|
+
46 16 -30 165
|
166
|
+
-31 19 -19 166
|
167
|
+
37 -81 1 167
|
168
|
+
52 -59 36 168
|
169
|
+
27 16 -17 169
|
170
|
+
24 45 -15 170
|
171
|
+
-44 12 -34 171
|
172
|
+
-46 -61 21 172
|
173
|
+
-49 -11 35 173
|
174
|
+
-25 -98 -12 174
|
175
|
+
-33 -79 -13 175
|
176
|
+
11 -54 17 176
|
177
|
+
23 33 48 177
|
178
|
+
-3 -49 13 178
|
179
|
+
12 -17 8 179
|
180
|
+
-38 -33 17 180
|
181
|
+
8 48 -15 181
|
182
|
+
-10 39 52 182
|
183
|
+
43 -78 -12 183
|
184
|
+
20 -29 60 184
|
185
|
+
-40 -19 54 185
|
186
|
+
-20 45 39 186
|
187
|
+
13 30 59 187
|
188
|
+
-24 -91 19 188
|
189
|
+
-16 29 53 189
|
190
|
+
8 -91 -7 190
|
191
|
+
-21 -31 61 191
|
192
|
+
6 67 -4 192
|
193
|
+
17 -80 -34 193
|
194
|
+
-23 -30 72 194
|
195
|
+
2 -28 60 195
|
196
|
+
15 -77 31 196
|
197
|
+
3 -17 58 197
|
198
|
+
55 -31 -17 198
|
199
|
+
-31 -10 -36 199
|
200
|
+
-40 -88 -6 200
|
201
|
+
-18 63 -9 201
|
202
|
+
27 -59 -9 202
|
203
|
+
49 -3 -38 203
|
204
|
+
-31 -11 -0 204
|
205
|
+
65 -24 -19 205
|
206
|
+
17 -28 -17 206
|
207
|
+
-7 51 -1 207
|
208
|
+
24 32 -18 208
|
209
|
+
9 54 3 209
|
210
|
+
-7 -55 27 210
|
211
|
+
-21 -22 -20 211
|
212
|
+
34 54 -13 212
|
213
|
+
-38 -15 69 213
|
214
|
+
-38 -27 69 214
|
215
|
+
65 -12 -19 215
|
216
|
+
-16 -52 -1 216
|
217
|
+
-8 48 23 217
|
218
|
+
-3 44 -9 218
|
219
|
+
-37 -29 -26 219
|
220
|
+
27 -97 -13 220
|
221
|
+
17 -91 -14 221
|
222
|
+
6 54 16 222
|
223
|
+
8 41 -24 223
|
224
|
+
8 -48 31 224
|
225
|
+
24 -87 24 225
|
226
|
+
-58 -26 -15 226
|
227
|
+
29 -17 71 227
|
228
|
+
-68 -23 -16 228
|
229
|
+
-10 -18 7 229
|
230
|
+
-13 -17 75 230
|
231
|
+
-7 -33 72 231
|
232
|
+
15 -87 37 232
|
233
|
+
-20 64 19 233
|
234
|
+
42 -20 55 234
|
235
|
+
26 -79 -16 235
|
236
|
+
-10 55 39 236
|
237
|
+
13 -33 75 237
|
238
|
+
33 -12 -34 238
|
239
|
+
-26 -90 3 239
|
240
|
+
-7 -21 65 240
|
241
|
+
10 -17 74 241
|
242
|
+
-44 -65 35 242
|
243
|
+
6 -59 35 243
|
244
|
+
6 64 22 244
|
245
|
+
-18 -68 5 245
|
246
|
+
-16 -65 -20 246
|
247
|
+
8 -72 11 247
|
248
|
+
13 55 38 248
|
249
|
+
-14 -91 31 249
|
250
|
+
-3 -81 21 250
|
251
|
+
20 -86 -2 251
|
252
|
+
-50 -7 -39 252
|
253
|
+
-56 -45 -24 253
|
254
|
+
-8 -81 7 254
|
255
|
+
20 -66 2 255
|
256
|
+
6 -81 6 256
|
257
|
+
52 -34 -27 257
|
258
|
+
-15 -72 -8 258
|
259
|
+
6 -24 -0 259
|
260
|
+
28 -77 -32 260
|
261
|
+
22 -58 -23 261
|
262
|
+
1 -62 -18 262
|
263
|
+
-22 7 -5 263
|
264
|
+
-5 -28 -4 264
|
junifer/data/__init__.py
CHANGED
@@ -8,12 +8,14 @@ from .coordinates import (
|
|
8
8
|
list_coordinates,
|
9
9
|
load_coordinates,
|
10
10
|
register_coordinates,
|
11
|
+
get_coordinates,
|
11
12
|
)
|
12
13
|
from .parcellations import (
|
13
14
|
list_parcellations,
|
14
15
|
load_parcellation,
|
15
16
|
register_parcellation,
|
16
17
|
merge_parcellations,
|
18
|
+
get_parcellation,
|
17
19
|
)
|
18
20
|
|
19
21
|
from .masks import (
|
@@ -23,4 +25,6 @@ from .masks import (
|
|
23
25
|
get_mask,
|
24
26
|
)
|
25
27
|
|
28
|
+
from .template_spaces import get_template, get_xfm
|
29
|
+
|
26
30
|
from . import utils
|