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
@@ -1,260 +0,0 @@
|
|
1
|
-
"""Provide tests for ReHo map compute comparison."""
|
2
|
-
|
3
|
-
# Authors: Synchon Mandal <s.mandal@fz-juelich.de>
|
4
|
-
# License: AGPL
|
5
|
-
|
6
|
-
import time
|
7
|
-
|
8
|
-
import nibabel as nib
|
9
|
-
import pytest
|
10
|
-
from scipy.stats import pearsonr
|
11
|
-
|
12
|
-
from junifer.datareader.default import DefaultDataReader
|
13
|
-
from junifer.markers.reho.reho_estimator import ReHoEstimator
|
14
|
-
from junifer.pipeline.utils import _check_afni
|
15
|
-
from junifer.testing.datagrabbers import PartlyCloudyTestingDataGrabber
|
16
|
-
from junifer.utils.logging import logger
|
17
|
-
|
18
|
-
|
19
|
-
def test_reho_estimator_cache_python() -> None:
|
20
|
-
"""Test that the cache works properly when using Python implementation."""
|
21
|
-
# Get subject from datagrabber
|
22
|
-
with PartlyCloudyTestingDataGrabber() as dg:
|
23
|
-
subject = dg["sub-01"]
|
24
|
-
# Read data for subject
|
25
|
-
subject_data = DefaultDataReader().fit_transform(subject)
|
26
|
-
# Setup estimator
|
27
|
-
reho_estimator = ReHoEstimator()
|
28
|
-
|
29
|
-
first_tic = time.time()
|
30
|
-
reho_map_without_cache = reho_estimator.fit_transform(
|
31
|
-
use_afni=False,
|
32
|
-
input_data=subject_data["BOLD"],
|
33
|
-
nneigh=27,
|
34
|
-
)
|
35
|
-
first_toc = time.time()
|
36
|
-
logger.info(
|
37
|
-
f"ReHo estimator in Python without cache: {first_toc - first_tic}"
|
38
|
-
)
|
39
|
-
assert isinstance(reho_map_without_cache, nib.Nifti1Image)
|
40
|
-
# Count intermediate files
|
41
|
-
n_files = len(list(reho_estimator.temp_dir_path.glob("*")))
|
42
|
-
assert n_files == 0 # no files in python
|
43
|
-
|
44
|
-
# Now fit again, should be faster
|
45
|
-
second_tic = time.time()
|
46
|
-
reho_map_with_cache = reho_estimator.fit_transform(
|
47
|
-
use_afni=False,
|
48
|
-
input_data=subject_data["BOLD"],
|
49
|
-
nneigh=27,
|
50
|
-
)
|
51
|
-
second_toc = time.time()
|
52
|
-
logger.info(
|
53
|
-
f"ReHo estimator in Python with cache: {second_toc - second_tic}"
|
54
|
-
)
|
55
|
-
assert isinstance(reho_map_with_cache, nib.Nifti1Image)
|
56
|
-
# Check that cache is being used
|
57
|
-
assert (second_toc - second_tic) < ((first_toc - first_tic) / 1000)
|
58
|
-
# Count intermediate files
|
59
|
-
n_files = len(list(reho_estimator.temp_dir_path.glob("*")))
|
60
|
-
assert n_files == 0 # no files in python
|
61
|
-
|
62
|
-
# Now change a parameter, should compute again, without clearing the
|
63
|
-
# cache
|
64
|
-
third_tic = time.time()
|
65
|
-
reho_map_with_partial_cache = reho_estimator.fit_transform(
|
66
|
-
use_afni=False,
|
67
|
-
input_data=subject_data["BOLD"],
|
68
|
-
nneigh=125,
|
69
|
-
)
|
70
|
-
third_toc = time.time()
|
71
|
-
logger.info(
|
72
|
-
f"ReHo estimator in Python with partial cache: {third_toc - third_tic}"
|
73
|
-
)
|
74
|
-
assert isinstance(reho_map_with_partial_cache, nib.Nifti1Image)
|
75
|
-
# Should require more time
|
76
|
-
assert (third_toc - third_tic) > ((first_toc - first_tic) / 10)
|
77
|
-
# Count intermediate files
|
78
|
-
n_files = len(list(reho_estimator.temp_dir_path.glob("*")))
|
79
|
-
assert n_files == 0 # no files in python
|
80
|
-
|
81
|
-
# Now fit again with the previous params, should be fast
|
82
|
-
fourth_tic = time.time()
|
83
|
-
reho_map_with_new_cache = reho_estimator.fit_transform(
|
84
|
-
use_afni=False,
|
85
|
-
input_data=subject_data["BOLD"],
|
86
|
-
nneigh=125,
|
87
|
-
)
|
88
|
-
fourth_toc = time.time()
|
89
|
-
logger.info(
|
90
|
-
f"ReHo estimator in Python with new cache: {fourth_toc - fourth_tic}"
|
91
|
-
)
|
92
|
-
assert isinstance(reho_map_with_new_cache, nib.Nifti1Image)
|
93
|
-
# Should require less time
|
94
|
-
assert (fourth_toc - fourth_tic) < ((first_toc - first_tic) / 1000)
|
95
|
-
# Count intermediate files
|
96
|
-
n_files = len(list(reho_estimator.temp_dir_path.glob("*")))
|
97
|
-
assert n_files == 0 # no files in python
|
98
|
-
|
99
|
-
# Now change the data, it should clear the cache
|
100
|
-
with PartlyCloudyTestingDataGrabber() as dg:
|
101
|
-
subject = dg["sub-02"]
|
102
|
-
# Read data for new subject
|
103
|
-
subject_data = DefaultDataReader().fit_transform(subject)
|
104
|
-
|
105
|
-
fifth_tic = time.time()
|
106
|
-
reho_map_with_different_cache = reho_estimator.fit_transform(
|
107
|
-
use_afni=False,
|
108
|
-
input_data=subject_data["BOLD"],
|
109
|
-
nneigh=27,
|
110
|
-
)
|
111
|
-
fifth_toc = time.time()
|
112
|
-
logger.info(
|
113
|
-
"ReHo estimator in Python with different cache: "
|
114
|
-
f"{fifth_toc - fifth_tic}"
|
115
|
-
)
|
116
|
-
assert isinstance(reho_map_with_different_cache, nib.Nifti1Image)
|
117
|
-
# Should take less time
|
118
|
-
assert (fifth_toc - fifth_tic) > ((first_toc - first_tic) / 10)
|
119
|
-
# Count intermediate files
|
120
|
-
n_files = len(list(reho_estimator.temp_dir_path.glob("*")))
|
121
|
-
assert n_files == 0 # no files in python
|
122
|
-
|
123
|
-
|
124
|
-
@pytest.mark.skipif(
|
125
|
-
_check_afni() is False, reason="requires afni to be in PATH"
|
126
|
-
)
|
127
|
-
def test_reho_estimator_cache_afni() -> None:
|
128
|
-
"""Test that the cache works properly when using afni."""
|
129
|
-
# Get subject from datagrabber
|
130
|
-
with PartlyCloudyTestingDataGrabber() as dg:
|
131
|
-
subject = dg["sub-01"]
|
132
|
-
# Read data for subject
|
133
|
-
subject_data = DefaultDataReader().fit_transform(subject)
|
134
|
-
# Setup estimator
|
135
|
-
reho_estimator = ReHoEstimator()
|
136
|
-
|
137
|
-
first_tic = time.time()
|
138
|
-
reho_map_without_cache = reho_estimator.fit_transform(
|
139
|
-
use_afni=True,
|
140
|
-
input_data=subject_data["BOLD"],
|
141
|
-
nneigh=19,
|
142
|
-
)
|
143
|
-
first_toc = time.time()
|
144
|
-
logger.info(
|
145
|
-
f"ReHo estimator in AFNI without cache: {first_toc - first_tic}"
|
146
|
-
)
|
147
|
-
assert isinstance(reho_map_without_cache, nib.Nifti1Image)
|
148
|
-
# Count intermediate files
|
149
|
-
n_files = len(list(reho_estimator.temp_dir_path.glob("*")))
|
150
|
-
assert n_files == 2 # input + reho
|
151
|
-
|
152
|
-
# Now fit again, should be faster
|
153
|
-
second_tic = time.time()
|
154
|
-
reho_map_with_cache = reho_estimator.fit_transform(
|
155
|
-
use_afni=True,
|
156
|
-
input_data=subject_data["BOLD"],
|
157
|
-
nneigh=19,
|
158
|
-
)
|
159
|
-
second_toc = time.time()
|
160
|
-
logger.info(
|
161
|
-
f"ReHo estimator in AFNI with cache: {second_toc - second_tic}"
|
162
|
-
)
|
163
|
-
assert isinstance(reho_map_with_cache, nib.Nifti1Image)
|
164
|
-
assert (second_toc - second_tic) < ((first_toc - first_tic) / 1000)
|
165
|
-
# Count intermediate files
|
166
|
-
n_files = len(list(reho_estimator.temp_dir_path.glob("*")))
|
167
|
-
assert n_files == 2 # input + reho
|
168
|
-
|
169
|
-
# Now change a parameter, should compute again, without clearing the
|
170
|
-
# cache
|
171
|
-
third_tic = time.time()
|
172
|
-
reho_map_with_partial_cache = reho_estimator.fit_transform(
|
173
|
-
use_afni=True,
|
174
|
-
input_data=subject_data["BOLD"],
|
175
|
-
nneigh=27,
|
176
|
-
)
|
177
|
-
third_toc = time.time()
|
178
|
-
logger.info(
|
179
|
-
f"ReHo estimator in AFNI with partial cache: {third_toc - third_tic}"
|
180
|
-
)
|
181
|
-
assert isinstance(reho_map_with_partial_cache, nib.Nifti1Image)
|
182
|
-
# Should require more time
|
183
|
-
assert (third_toc - third_tic) > ((first_toc - first_tic) / 10)
|
184
|
-
# Count intermediate files
|
185
|
-
n_files = len(list(reho_estimator.temp_dir_path.glob("*")))
|
186
|
-
assert n_files == 3 # input + 2 * reho
|
187
|
-
|
188
|
-
# Now fit again with the previous params, should be fast
|
189
|
-
fourth_tic = time.time()
|
190
|
-
reho_map_with_new_cache = reho_estimator.fit_transform(
|
191
|
-
use_afni=True,
|
192
|
-
input_data=subject_data["BOLD"],
|
193
|
-
nneigh=27,
|
194
|
-
)
|
195
|
-
fourth_toc = time.time()
|
196
|
-
logger.info(
|
197
|
-
f"ReHo estimator in AFNI with new cache: {fourth_toc - fourth_tic}"
|
198
|
-
)
|
199
|
-
assert isinstance(reho_map_with_new_cache, nib.Nifti1Image)
|
200
|
-
# Should require less time
|
201
|
-
assert (fourth_toc - fourth_tic) < ((first_toc - first_tic) / 1000)
|
202
|
-
n_files = len(list(reho_estimator.temp_dir_path.glob("*")))
|
203
|
-
assert n_files == 3 # input + 2 * reho
|
204
|
-
|
205
|
-
# Now change the data, it should clear the cache
|
206
|
-
with PartlyCloudyTestingDataGrabber() as dg:
|
207
|
-
subject = dg["sub-02"]
|
208
|
-
# Read data for new subject
|
209
|
-
subject_data = DefaultDataReader().fit_transform(subject)
|
210
|
-
|
211
|
-
fifth_tic = time.time()
|
212
|
-
reho_map_with_different_cache = reho_estimator.fit_transform(
|
213
|
-
use_afni=True,
|
214
|
-
input_data=subject_data["BOLD"],
|
215
|
-
nneigh=27,
|
216
|
-
)
|
217
|
-
fifth_toc = time.time()
|
218
|
-
logger.info(
|
219
|
-
f"ReHo estimator in AFNI with different cache: {fifth_toc - fifth_tic}"
|
220
|
-
)
|
221
|
-
assert isinstance(reho_map_with_different_cache, nib.Nifti1Image)
|
222
|
-
# Should take less time
|
223
|
-
assert (fifth_toc - fifth_tic) > ((first_toc - first_tic) / 10)
|
224
|
-
# Count intermediate files
|
225
|
-
n_files = len(list(reho_estimator.temp_dir_path.glob("*")))
|
226
|
-
assert n_files == 2 # input + reho
|
227
|
-
|
228
|
-
|
229
|
-
@pytest.mark.skipif(
|
230
|
-
_check_afni() is False, reason="requires afni to be in PATH"
|
231
|
-
)
|
232
|
-
def test_reho_estimator_afni_vs_python() -> None:
|
233
|
-
"""Compare afni and Python implementations."""
|
234
|
-
# Get subject from datagrabber
|
235
|
-
with PartlyCloudyTestingDataGrabber() as dg:
|
236
|
-
subject = dg["sub-01"]
|
237
|
-
# Read data for subject
|
238
|
-
subject_data = DefaultDataReader().fit_transform(subject)
|
239
|
-
# Setup estimator
|
240
|
-
reho_estimator = ReHoEstimator()
|
241
|
-
|
242
|
-
# Compare using 27 neighbours
|
243
|
-
reho_map_afni = reho_estimator.fit_transform(
|
244
|
-
use_afni=True,
|
245
|
-
input_data=subject_data["BOLD"],
|
246
|
-
nneigh=27,
|
247
|
-
)
|
248
|
-
reho_map_python = reho_estimator.fit_transform(
|
249
|
-
use_afni=False,
|
250
|
-
input_data=subject_data["BOLD"],
|
251
|
-
nneigh=27,
|
252
|
-
)
|
253
|
-
|
254
|
-
# Calculate Pearson correlation coefficient
|
255
|
-
r, _ = pearsonr(
|
256
|
-
reho_map_afni.get_fdata().flatten(),
|
257
|
-
reho_map_python.get_fdata().flatten(),
|
258
|
-
)
|
259
|
-
# Assert good correlation
|
260
|
-
assert r > 0.70
|
@@ -1,199 +0,0 @@
|
|
1
|
-
junifer/__init__.py,sha256=x1UR2jUcrUdm2HNl-3Qvyi4UUrU6ms5qm2qcmNY7zZk,391
|
2
|
-
junifer/_version.py,sha256=XbkMBuq7yk43qCqI9KIzQyyMbdEoZaKa6NpXaBSjCwE,177
|
3
|
-
junifer/stats.py,sha256=KUX4jJcLWnlE34coet8EkdFypFd-td4Vtpx5LvlomVs,5879
|
4
|
-
junifer/api/__init__.py,sha256=YILu9M7SC0Ri4CVd90fELH2OnK_gvCYAXCoqBNCFE8E,257
|
5
|
-
junifer/api/cli.py,sha256=epPGiMU9szF0Dbv-_ty3hxxWPUd8KM-gqQI10TJEl2Y,9843
|
6
|
-
junifer/api/decorators.py,sha256=8bnwHPAe7VgzKxl--M_e0umdAlTVSzaJQHEJZ5kof5k,2580
|
7
|
-
junifer/api/functions.py,sha256=_4_grnlTLHJtOd5psMpYTpTRyf6kATUmxAxk7nKTitk,22470
|
8
|
-
junifer/api/parser.py,sha256=SZr3k5tAkma3oHWj88MlCntEolhoGIbiYekFf8i797Y,3308
|
9
|
-
junifer/api/utils.py,sha256=dyjTdPMwX9qeCrn8SQT2Pjshfnu-y1FEyujV7lCzvm0,3333
|
10
|
-
junifer/api/res/run_conda.sh,sha256=GerhBGReDw-_fp6RPnaorMHT9IHrp3LRgHJY4mgK4_Y,501
|
11
|
-
junifer/api/res/afni/3dAFNItoNIFTI,sha256=Fsy5S5rwIBb1MepLfl_5FQhE7gv6NDwNyAR_k036NmM,51
|
12
|
-
junifer/api/res/afni/3dRSFC,sha256=MkPtS_nKEoJOHDAT3ZP9IA-SvMdhyzZDiyxObV_XI3g,44
|
13
|
-
junifer/api/res/afni/3dReHo,sha256=Jb5B97iPPPQ14zAz7tK5BVG4jPZyOe9c6kgM6ixKaY8,44
|
14
|
-
junifer/api/res/afni/afni,sha256=idLvNWHwd6P4jWXfk6hMXQckdpcTJYbvnLC3uNP6sBg,42
|
15
|
-
junifer/api/res/afni/run_afni_docker.sh,sha256=Qw_yLv7GijmjPmmuiDA0qRmB2Kxuvsoerm5R7mjtzZo,1106
|
16
|
-
junifer/api/tests/test_api_utils.py,sha256=_ykEECJN0qTEBcJ2YSvOAQrRN-xmEilRLPyirC5cO_o,2285
|
17
|
-
junifer/api/tests/test_cli.py,sha256=-V-oyKiEqnIOUOiO_5KHMKuAa71Azmd48Ghy5FcP5H0,2797
|
18
|
-
junifer/api/tests/test_functions.py,sha256=yIo4MQ64lTdpEMGUR7THYGYHQQyV0zC73-pQw_Sq0Xw,24632
|
19
|
-
junifer/api/tests/test_parser.py,sha256=3GZYamYbpW8bGnx95_RQ1uT783or_H-yqzZ138wQYmE,6107
|
20
|
-
junifer/api/tests/data/gmd_mean.yaml,sha256=Ohb_C5cfQMK-59U9O1ZhejXyBtzLc5Y4cv8QyYq2azg,330
|
21
|
-
junifer/api/tests/data/gmd_mean_htcondor.yaml,sha256=f7NLv_KIJXTiPNFmOWl2Vw8EfwojhfkGtwbh5prbd6w,417
|
22
|
-
junifer/configs/__init__.py,sha256=r6BU6vW7FVapSD81j24QeQiZe1oKspsJJRRPjXnCk00,120
|
23
|
-
junifer/configs/juseless/__init__.py,sha256=Ws98DvlLEMHfwW6BjmvHQmqTlFRDps9r4pLAfNjfEiM,149
|
24
|
-
junifer/configs/juseless/datagrabbers/__init__.py,sha256=tqCLmelWqB1xfElvknnaJ5oVRPp9XVXtZLzIpxYIghg,452
|
25
|
-
junifer/configs/juseless/datagrabbers/aomic_id1000_vbm.py,sha256=A4N8tpG66vWmqdWEBAh8Y8MHWsa_afcr3WTMNVhVIEA,1350
|
26
|
-
junifer/configs/juseless/datagrabbers/camcan_vbm.py,sha256=GGbWDTvf0aHxFi_iS6jmlttTiD3k5gN5FYPIxemEnG4,1398
|
27
|
-
junifer/configs/juseless/datagrabbers/ixi_vbm.py,sha256=UpOLpKFkfL_LeaYasUvpvpQSiX_RlZE99Nbfdexz8zk,2184
|
28
|
-
junifer/configs/juseless/datagrabbers/ucla.py,sha256=Aea1ixDqh8X4BefgAQg2lT-ELEnxmsM8BnSGeMml0Ag,4302
|
29
|
-
junifer/configs/juseless/datagrabbers/ukb_vbm.py,sha256=YWPL-VV84wyWApnakwsiNo6o2-mPtdAAWbU8hwEgBT0,1382
|
30
|
-
junifer/configs/juseless/datagrabbers/tests/test_aomic_id1000_vbm.py,sha256=Y_npFmmj0MN0TYv8jaxVMgFHLMQLZ8vXl8lWQKvOYbc,1001
|
31
|
-
junifer/configs/juseless/datagrabbers/tests/test_camcan_vbm.py,sha256=o0dzptS97pxrWaY7I1m0dpJtsnAwmIXNqdU9ABTWCqI,975
|
32
|
-
junifer/configs/juseless/datagrabbers/tests/test_ixi_vbm.py,sha256=8jxpNZelXwpJGvA5LOfpso2X8yt1chvERAYmv76hS_g,1252
|
33
|
-
junifer/configs/juseless/datagrabbers/tests/test_ucla.py,sha256=e-jdvcZ9B0mka6_573JJU_cGwSaUV54U8X_n0UadtJY,3351
|
34
|
-
junifer/configs/juseless/datagrabbers/tests/test_ukb_vbm.py,sha256=b9hjc1mgO--PSRC3id2EzzfE2yWNsuZ2UI47a6sfGZU,1025
|
35
|
-
junifer/data/__init__.py,sha256=UKoiW2DfuNgWlpdqSVPWAED1tSMl9ygUHMsCnFXPp2A,507
|
36
|
-
junifer/data/coordinates.py,sha256=mPiaOdw3HY5c_5geGiQbHjKCTvj2YVTXie0Y6HLFk_I,4896
|
37
|
-
junifer/data/masks.py,sha256=oRvKzbm4Z4q3Dz1PdnsuS4t08x70s1fpbEgPeFKuy2Y,11277
|
38
|
-
junifer/data/parcellations.py,sha256=REmkmRwWH9IrJJO_BhKq-xl4Z6IcdSFfEpYKTKLaB8k,48818
|
39
|
-
junifer/data/utils.py,sha256=K9quLIoWRmm2QFM8Rdy_5bYsWb_XhL0l5Uq_1Sie0kA,1274
|
40
|
-
junifer/data/VOIs/meta/CogAC_VOIs.txt,sha256=Sr5_E712OLdeQRyUcDNM0wLBvZIyO6gc9Q7KkyJHX1A,398
|
41
|
-
junifer/data/VOIs/meta/CogAR_VOIs.txt,sha256=t3NLwEVUZTPP34p15SaB3UInLrQyK-7Qc4iLBuQlZu8,189
|
42
|
-
junifer/data/VOIs/meta/DMNBuckner_VOIs.txt,sha256=2trjgKF00PnCxTtfCXYmr-J7P_Jl-iX_qUocmzOR1nk,86
|
43
|
-
junifer/data/VOIs/meta/Dosenbach2010_MNI_VOIs.txt,sha256=rIh9-OCBG0if2v1V4CeK27ZDVXPg6A2sFSqcwHZ1i3Y,3372
|
44
|
-
junifer/data/VOIs/meta/Empathy_VOIs.txt,sha256=8rwZkEe-TrI7vT_ArzqIMSSlkGvg3RJG3PlHoxZKYjU,486
|
45
|
-
junifer/data/VOIs/meta/Motor_VOIs.txt,sha256=NFpqgxlSrt9x3Tb9vn1ISogc684rRgVQbFPlifmI8S4,219
|
46
|
-
junifer/data/VOIs/meta/MultiTask_VOIs.txt,sha256=T2f7_9qWpJcfMic-Pgg4VyNDrcNDOzN9kE81WM_6elk,220
|
47
|
-
junifer/data/VOIs/meta/PhysioStress_VOIs.txt,sha256=6hLYGMPFFnbhtu_9J3_hDul0LfUYAwhygzdLLG6R0qU,378
|
48
|
-
junifer/data/VOIs/meta/Power2011_MNI_VOIs.txt,sha256=0tLVEmCEUjwJ7Rsdibv2qxilc2u-jvoBgCbOs7ax6iU,3836
|
49
|
-
junifer/data/VOIs/meta/Rew_VOIs.txt,sha256=dCYre7kP4Ca-S52W0weU7N2UUZM8522WYlb9d7kUo-A,569
|
50
|
-
junifer/data/VOIs/meta/Somatosensory_VOIs.txt,sha256=OylWpfoluG65whXqEODQ5qvreMdYXBQskMjmnvA2fYc,295
|
51
|
-
junifer/data/VOIs/meta/ToM_VOIs.txt,sha256=sMSqMCe6p0MGwIWEGkelMWuFH5sfpJ8ONjGlqmRe_Vw,323
|
52
|
-
junifer/data/VOIs/meta/VigAtt_VOIs.txt,sha256=EPklcFTcfKnuI08QjYIrE_87BSQLipU_VZYRWuSXhY8,353
|
53
|
-
junifer/data/VOIs/meta/WM_VOIs.txt,sha256=6uyH5nsv9i5bKS_aEYCgg3wgE7hjw5DI1gD37lUR5Zg,518
|
54
|
-
junifer/data/VOIs/meta/eMDN_VOIs.txt,sha256=p5D4GdBuGl1d5IbXhsuj3XIU6UGMxhzCR-T8Dwfxz30,382
|
55
|
-
junifer/data/VOIs/meta/eSAD_VOIs.txt,sha256=DwgDEFSZoAojG5RP6HpSvlRPpXItBzx8ms-1zoSxKRk,268
|
56
|
-
junifer/data/VOIs/meta/extDMN_VOIs.txt,sha256=Ogx1QvqZcnXDM3ncF2ha78br8xwQ5wklSjHygtoLpyI,317
|
57
|
-
junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean.nii.gz,sha256=j6EY8EtRnUuRxeKgD65Q6B0GPEPIALKDJEIje1TfnAU,88270
|
58
|
-
junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean_3mm.nii.gz,sha256=crb_y7YO1vjjf2PwbRJUm8KamPK6fx1y0B_l-E3g8FY,12862
|
59
|
-
junifer/data/masks/vickery-patil/GMprob0.2_cortex_3mm_NA_rm.nii.gz,sha256=jfMe_4H9XEnArYms5bSQbqS2V1_HbLHTfI5amQa_Pes,8700
|
60
|
-
junifer/data/tests/test_coordinates.py,sha256=RCYOuaAjs2wqPeFHX-l9Bryt5Zw5mOIV0WpsH891RwA,3240
|
61
|
-
junifer/data/tests/test_data_utils.py,sha256=Vy7x8zaHws5hmn92PKSv3H38hU2kamOpyaH6nG_NNpw,1086
|
62
|
-
junifer/data/tests/test_masks.py,sha256=sJ_rXAPddQ_2SAGvew1FEEMcLwy0NEfQv8TsCvgA2pA,13266
|
63
|
-
junifer/data/tests/test_parcellations.py,sha256=3JCTuaT4Ugs3t_EX5XWbr52bSaMSnoROF81Nthmn9Nc,31361
|
64
|
-
junifer/datagrabber/__init__.py,sha256=xKMQMjqoWul13YluGTLLMBgKahUg5jJKi4phPih3XJU,634
|
65
|
-
junifer/datagrabber/base.py,sha256=6JoIDBCWXCIQdjSg6OIbdrqbQKzV6_zBTk0Zs1Wj6_Y,4622
|
66
|
-
junifer/datagrabber/datalad_base.py,sha256=dDaBiIePPP6-G4ycgBMxTcXxs4vkg-yDS3OBURK4VGs,10731
|
67
|
-
junifer/datagrabber/multiple.py,sha256=eXQIsvSNvD8GuEITjMaMoi1GwoeyWXXbQMRi-f2qgc4,4923
|
68
|
-
junifer/datagrabber/pattern.py,sha256=LRI9eUSwvbuz3Go_MIrlo-Rk5bncpLdw8N0A2qi3eJE,10519
|
69
|
-
junifer/datagrabber/pattern_datalad.py,sha256=SyXhM0XQEF45poNaWyVAG054BSCYyqJ-JUwbRo05nyk,1653
|
70
|
-
junifer/datagrabber/utils.py,sha256=YnOtZvRx-lOyTRfqydhsN9nCpJ5E4EDYZeRtzyWFrn8,2828
|
71
|
-
junifer/datagrabber/aomic/__init__.py,sha256=R7yrRVBWsBW25CH0fw-KHpFwb_EC-MlPKDzssGfj5A0,281
|
72
|
-
junifer/datagrabber/aomic/id1000.py,sha256=ivLFo6Qs-fW1dgCM6uWgbEBU3gLmQOFbjLKNyK4MltE,4320
|
73
|
-
junifer/datagrabber/aomic/piop1.py,sha256=ROE2sPPB0ieETPNYt_LBiAMRDv78lQgu0QLNrfOdXac,6252
|
74
|
-
junifer/datagrabber/aomic/piop2.py,sha256=vVd32bF2J0v2TxyRoIg2NCLQsNvYft9U1riL-1UGPdY,5871
|
75
|
-
junifer/datagrabber/aomic/tests/test_id1000.py,sha256=eejuGiNQdX_s_8klGROd8OD8O5OprQywWN6O-JU3jD4,4824
|
76
|
-
junifer/datagrabber/aomic/tests/test_piop1.py,sha256=Trp905MCT4jhnCg1leP0PzpEVc_icoKJZrI0TwVCwSE,5578
|
77
|
-
junifer/datagrabber/aomic/tests/test_piop2.py,sha256=KAMU8eoQbKV3n9qRWbpZ24g-qN9uzZ55ZlofcSB9BIA,5377
|
78
|
-
junifer/datagrabber/hcp1200/__init__.py,sha256=zy4Qq1_m3vECEhioG-UDteco2b5cni_8xuElICaRtt4,189
|
79
|
-
junifer/datagrabber/hcp1200/datalad_hcp1200.py,sha256=5MlQnUgQl9CzXhGhrN0sjpZ8bG4d7lD4g-dfqBsEQyE,2321
|
80
|
-
junifer/datagrabber/hcp1200/hcp1200.py,sha256=joICsu26ZuvQuEVznjYDsgM43_-tgpDuKkS6sOKQXfk,5575
|
81
|
-
junifer/datagrabber/hcp1200/tests/test_hcp1200.py,sha256=KJ-Jq01l0a6TaboG898qjBdPTHG1E3PZtHCjJ7n-1X0,10765
|
82
|
-
junifer/datagrabber/tests/test_base.py,sha256=4dss506m2dryhOx-TM-V9Ts5T3yLyFQRjM6Qp9VMCwA,2001
|
83
|
-
junifer/datagrabber/tests/test_datagrabber_utils.py,sha256=08fdnXRehAhrWoNdMP_2Ecgam7a1uMbt1i0wIpderEg,2795
|
84
|
-
junifer/datagrabber/tests/test_datalad_base.py,sha256=GORMEzpIIK1StqJLv7jE8dZeLjXMZTPL_d_KDafDATc,16496
|
85
|
-
junifer/datagrabber/tests/test_multiple.py,sha256=Buu-ajH6AC8jVZz7RdEXm8kBIHwvFZvoSPH1DETxoFA,4955
|
86
|
-
junifer/datagrabber/tests/test_pattern.py,sha256=TKmS-ZbiQ_MZQOgHUJ0zhg6EMMnDV4U3CHkhys6Rj-I,9823
|
87
|
-
junifer/datagrabber/tests/test_pattern_datalad.py,sha256=QoeM6F1T-W0XAU_PDh0T2gU4Cqrnu-q7vZ8_O9gT5sU,6077
|
88
|
-
junifer/datareader/__init__.py,sha256=WWoiIz6y0EdExWO3WCGiERNw3Y3WUsXyHaWnHilP2kE,263
|
89
|
-
junifer/datareader/default.py,sha256=Ruumq98J2DOjZqgXHjGIO3NCFGcGfx4svJiqi-svTeo,4068
|
90
|
-
junifer/datareader/tests/test_default_reader.py,sha256=9dPZSkba1YQjFsA0XwdUbx5sq8DVIEZoy_WfMAcvRus,5220
|
91
|
-
junifer/external/__init__.py,sha256=58gL7gNN_PI1GyN6r9CO035TzvJdi8S-zFg5reDt4Xc,116
|
92
|
-
junifer/external/h5io/h5io/__init__.py,sha256=LG7ru_Rt3EOE2H4PGYfBhC12Iax3yeTquZkd8TICiKk,469
|
93
|
-
junifer/external/h5io/h5io/_h5io.py,sha256=8dWZDYegoPcBkH_fHPdl0eXNWTaRdk9hfIQo8Mcegzo,28748
|
94
|
-
junifer/external/h5io/h5io/_version.py,sha256=mFY0GwwuN-a3M8w93_mskS6GZIvv9SNdjLfJaWNsm-I,22
|
95
|
-
junifer/external/h5io/h5io/chunked_array.py,sha256=K1HWf7R2Jc7gCzBqAoBjx0ZnMmUhTe3iAO6RF6PdUO4,3338
|
96
|
-
junifer/external/h5io/h5io/chunked_list.py,sha256=1Y5BbuWzurJlEFQzJNuDdC3fNZ39ENEMba99X_4VeSM,1952
|
97
|
-
junifer/external/nilearn/__init__.py,sha256=QkT7Z2n6L7_qyN0o69Z-mYuyLre0SF884PSBTnG_ltQ,199
|
98
|
-
junifer/external/nilearn/junifer_nifti_spheres_masker.py,sha256=-gtVxCgQv4RO6sCLU0qdtIZgDAAleasvzOJkAx1iszs,16142
|
99
|
-
junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py,sha256=qlMFWjo9y8mNLrdmN2qCEK6_nplASv2OlomSfTxDcuw,10370
|
100
|
-
junifer/markers/__init__.py,sha256=exUUmpDsPkoNa9FK6Y7pDusOYv56_zoci8hiOaxyswE,778
|
101
|
-
junifer/markers/base.py,sha256=Uuaz8MvdHOfAnRGpUf6ISWgbNWzkmHIMo6f30jlW7zY,6109
|
102
|
-
junifer/markers/collection.py,sha256=u5DAWdEPsYK1Jmqob1FZgzOK_cm_8JXJ2CpSVxgamBY,4592
|
103
|
-
junifer/markers/ets_rss.py,sha256=7fr6mmbMM5NKIDV6bUyyu-pwHJH56GwYv6oozK4EX6k,4557
|
104
|
-
junifer/markers/parcel_aggregation.py,sha256=IhTqSs0zVodazuXxXjyFujPQIcnpyIUorD7uBLazBLU,8648
|
105
|
-
junifer/markers/sphere_aggregation.py,sha256=6is1hPIv0PV_iToZ5834RJsxI0HeuNcj4OUNXnbM-0o,7372
|
106
|
-
junifer/markers/utils.py,sha256=0F-6FI80IsKxcyVOAKh3xHho-wshzrB9hDfVOgHYsxk,4608
|
107
|
-
junifer/markers/falff/__init__.py,sha256=QAUIVtaOFWDL7B8xFrDgsmRum7Q0DCENyDYD1cPMJmM,197
|
108
|
-
junifer/markers/falff/falff_base.py,sha256=W6bwkEOtiBTNMow2OQlPWCtP5GLy75TlEWK-48_xGl8,6001
|
109
|
-
junifer/markers/falff/falff_estimator.py,sha256=cFzERgd_2YJxsz5Uc8NK33EttDMGrPoNDHuNcjNbU5E,10227
|
110
|
-
junifer/markers/falff/falff_parcels.py,sha256=UTADrIl96eO_xZ90LtOIt7tuN2eLDPnfIJghr9HAO88,4550
|
111
|
-
junifer/markers/falff/falff_spheres.py,sha256=XR2pcBRxjyTZ-J7j_HOjL20_2IHgYO0dI9x4LlQFoVE,5086
|
112
|
-
junifer/markers/falff/tests/test_falff_estimator.py,sha256=ezqxPEgwqFw1ezf87vDtw_FFOGR7FcROR3U8HPbr3HQ,7431
|
113
|
-
junifer/markers/falff/tests/test_falff_parcels.py,sha256=7mK1mblFZTltly1PV0lDPYMpSr_pm2sVD8Mq0GwTqQQ,4426
|
114
|
-
junifer/markers/falff/tests/test_falff_spheres.py,sha256=O6BFfqMyPUw3ksqADKNeFDZ8yPunbqfLpkTWPtC5TJM,4509
|
115
|
-
junifer/markers/functional_connectivity/__init__.py,sha256=Uq8aXpHJesedJNHEixpc4bn7VvYZMhf710jyiX45XlE,499
|
116
|
-
junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py,sha256=xrdHV1qOTpYu8V9_2C8P119RLdMRz_XbHcMa6KCv4S0,5214
|
117
|
-
junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py,sha256=03yp9023bBzmP4gXdQU0UJ75mkkqcYpAmfZgsS0EeFY,4338
|
118
|
-
junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py,sha256=fI2aa25NWRRTaP6AqXnaFL3FG3zpR6gYU85ZsxcpNG8,4994
|
119
|
-
junifer/markers/functional_connectivity/functional_connectivity_base.py,sha256=JDEXpadaIYQ-JIEKwN-fJtY9F40W0jKQ8yUS4UacmQU,5178
|
120
|
-
junifer/markers/functional_connectivity/functional_connectivity_parcels.py,sha256=QBaJQfgSqxGlnD47LMHJQqXvPlZF5a79yVmmDFJg-WQ,3990
|
121
|
-
junifer/markers/functional_connectivity/functional_connectivity_spheres.py,sha256=ZdMylng5uvlA4JDz-8giNeDh_hTWh4k2fuPx_HowfH0,4690
|
122
|
-
junifer/markers/functional_connectivity/tests/test_crossparcellation_functional_connectivity.py,sha256=eoVwLqQWk2COFjpD6D-kdRVGUxv8eP2fawIcEfmH0u4,2872
|
123
|
-
junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py,sha256=Ir9vZPNU5PoqfzVfy1Mfs5us-juuCegzMO0os2PWVfE,1945
|
124
|
-
junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py,sha256=8cjs8BlfjUgzHuu1uODKWtd__Dp81teHEw02ZAqvgBE,2293
|
125
|
-
junifer/markers/functional_connectivity/tests/test_functional_connectivity_base.py,sha256=RmPTrG0uLKb5RgdHXUnH6lon60FxN1JCtr-dsTBaX28,522
|
126
|
-
junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py,sha256=KmbhscwDxk_HbH2MKAXpiRnvj1KFVJZTb2snqcn9a9c,3118
|
127
|
-
junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py,sha256=zsiGsZp0Oy7qZOhNjoMafVBST69ET1q7WWITVaaQirc,4170
|
128
|
-
junifer/markers/reho/__init__.py,sha256=9IfeAxKEVgMWbhud-8T54Le07I4pR6A29sMKeFtvEPg,189
|
129
|
-
junifer/markers/reho/reho_base.py,sha256=mYIYVEt-4xT5lEUnuA1g0-lzPDQpREJFnKU6zhKlGkU,3704
|
130
|
-
junifer/markers/reho/reho_estimator.py,sha256=WXo_OzFBtSePt_yTSWpIvq61c4kL6SYS20oHs9kZH4w,17524
|
131
|
-
junifer/markers/reho/reho_parcels.py,sha256=BN2uIJ6vzaZZuw-PyRW947sYyXYtWFRRaut7Khw16io,5761
|
132
|
-
junifer/markers/reho/reho_spheres.py,sha256=MQyNrX9TCJLW0_SLkXSuQ2X_6Z3nnwNExjhRssNT-PM,6278
|
133
|
-
junifer/markers/reho/tests/test_reho_estimator.py,sha256=aa_7fGdxiUICODUVvf4l3ybPv928FL3fsCM0QHl9VRM,9030
|
134
|
-
junifer/markers/reho/tests/test_reho_parcels.py,sha256=sPiX-8bgukjoqSRavaKGHmuQPjcinAhUy9qUoi70nPw,4243
|
135
|
-
junifer/markers/reho/tests/test_reho_spheres.py,sha256=eAk5ZGBbRjtQP1_tOwjyVuO9KufS6jvUxPFsGGMgHu8,4251
|
136
|
-
junifer/markers/temporal_snr/__init__.py,sha256=gyJPT19xuig-og0yuzZZeRC_zX4ondcLf-wNKFDaGvs,243
|
137
|
-
junifer/markers/temporal_snr/temporal_snr_base.py,sha256=nyYCSChU6xBh_agOX6XkAcAPkSUPjiQ3KW-rFzb1s-4,4023
|
138
|
-
junifer/markers/temporal_snr/temporal_snr_parcels.py,sha256=OLkA5YZoPwc0kfTyxS7LTT-j1jBDiwLgHm8ulFHQs7o,3299
|
139
|
-
junifer/markers/temporal_snr/temporal_snr_spheres.py,sha256=VoxVA_b48Ppf7P6cxYq05WKdiqK9YteIFPbCPfOOyTM,4007
|
140
|
-
junifer/markers/temporal_snr/tests/test_temporal_snr_base.py,sha256=KRln5ibLTJJQ_f3pnioATfwyhK5htGc2o2J7CPcoyfs,426
|
141
|
-
junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py,sha256=KCfJFpg6oXR4hs1yGOrdV8xSh6zJi7dv1o75Lraq_nc,1594
|
142
|
-
junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py,sha256=rbfL4vQMtK_PbeIlHccp62wj9Ue97rJUxpupljmlkJs,1833
|
143
|
-
junifer/markers/tests/test_collection.py,sha256=HQvW6LNB2vSSSAImBU6paVOanyGJBY500_Yf9IrLJ_M,6850
|
144
|
-
junifer/markers/tests/test_ets_rss.py,sha256=uVNcSWh6TYCtwZACcununV38IBXY5loBaP7pBcDnwL4,2619
|
145
|
-
junifer/markers/tests/test_marker_utils.py,sha256=SR3ADWI3uGv4ozYqVu-rMZnJVqP6JnjLBgo6qUm16Wk,1478
|
146
|
-
junifer/markers/tests/test_markers_base.py,sha256=cbuCeMmjyFMP1ea6J6XRsBQo8CivQ41ooABiT1Snj2k,3076
|
147
|
-
junifer/markers/tests/test_parcel_aggregation.py,sha256=RW2EKRokmavMZB7e8WghYc6fLm6UOHzOm6xKdvBsoo0,21501
|
148
|
-
junifer/markers/tests/test_sphere_aggregation.py,sha256=1uOfnLQJ5hVCz7jcX9QG3M6htLSJSEOflKV6fXNtSZI,7652
|
149
|
-
junifer/onthefly/__init__.py,sha256=GG_Z5NgnVNph6CLPtGFI2HE_OIuVTZ874BOq72mA-ps,160
|
150
|
-
junifer/onthefly/read_transform.py,sha256=2yLlFscCZDS3z80ffD36_vF1GeKxSFfK0xNB-xsqOTM,4040
|
151
|
-
junifer/onthefly/tests/test_read_transform.py,sha256=D2C3IpXQHdsJSF07v8rEwGntLGXjZOserlRhebJUAVM,4719
|
152
|
-
junifer/pipeline/__init__.py,sha256=gOOrLf_C3oe9RdmLLjKMhs2gqtrr5Tzfi_cyTFEp8HM,238
|
153
|
-
junifer/pipeline/pipeline_step_mixin.py,sha256=fZtJa5NJ2_9r6dD_UOkXA5fOPtRjuPUbh4lnF-ILB4c,5019
|
154
|
-
junifer/pipeline/registry.py,sha256=PQq8D6DiHhSeh0tdHs9J6jv9L1WsfEUqJxzhlzAQDbE,3956
|
155
|
-
junifer/pipeline/update_meta_mixin.py,sha256=gzGDQQ13IGe5H4kJ_RXcqcritFPY4KCLBmX9dvhIsGk,1214
|
156
|
-
junifer/pipeline/utils.py,sha256=jHgFxFVUH7nNFvt3AvY73gPK6DkiKrRQlopeQLl1jx4,3515
|
157
|
-
junifer/pipeline/tests/test_pipeline_step_mixin.py,sha256=LMVMgc6e4ahhcQWL9VNL3IgxEEZ-phO7jhKae5-Mqns,5393
|
158
|
-
junifer/pipeline/tests/test_registry.py,sha256=rYN0pO3gSueQ6XsasEM9VU5BkLyaNl8WaCZiaO8Rno0,4105
|
159
|
-
junifer/pipeline/tests/test_update_meta_mixin.py,sha256=KiMqiTthXP24NMSyHJKKRhRGJWSUSBroukhw1WV9GIE,1354
|
160
|
-
junifer/preprocess/__init__.py,sha256=GPbiTHFhb9BzUOSgmo_SpgTFNMmkcCJPhQoUA2MQgJI,255
|
161
|
-
junifer/preprocess/base.py,sha256=Wu-tQZmMJBWsqcyA8q6lBALfJUHBB_AakTbho3OBUAw,5493
|
162
|
-
junifer/preprocess/confounds/__init__.py,sha256=EDlcD9jy8O9xluJr6XOnFXtjGCDVqwg6sDIRDMbM8ZU,235
|
163
|
-
junifer/preprocess/confounds/fmriprep_confound_remover.py,sha256=jqj1Zq2D2ZTe6tnQMqC7LMMWPOL14czo9ARd3VeSl2U,21922
|
164
|
-
junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py,sha256=-Zx-Z6GpInTMP0pGC7bZx7I-st09pfKFY5rgfYSaqro,21578
|
165
|
-
junifer/preprocess/tests/test_preprocess_base.py,sha256=UHuH_YOK7AU3AfApWqgB6YLG-J669BgztuxNSWCtmtI,2560
|
166
|
-
junifer/storage/__init__.py,sha256=QlzBw9UrRhmg_f7zQVas9h313u3sfZIBicA3_0Skm4M,337
|
167
|
-
junifer/storage/base.py,sha256=LtiB3cKfQQKw0gfoWM_H8PlA3sQlxosbzGxA_sA9RP8,9459
|
168
|
-
junifer/storage/hdf5.py,sha256=7JbLUrOLI0f7WEGMSv-YO9AJGi1-rAX1sqGU6X7NFbE,35520
|
169
|
-
junifer/storage/pandas_base.py,sha256=UpMXztwDVSTN3FN_4_73wtxycX8FfghEJ3KZmAZloXE,7450
|
170
|
-
junifer/storage/sqlite.py,sha256=6pcxC2RN6YHq2BePvcpORoMk9mJQ0bFfv1IY2YYGmio,21243
|
171
|
-
junifer/storage/utils.py,sha256=amE5AQI3vWoMRUV6pwwLcRgl4sL0ooYjp59JpuHHk6U,7257
|
172
|
-
junifer/storage/tests/test_hdf5.py,sha256=4CunM2xwhPuci4Z78Q7F0QA2Ocu-sgpzokjVhfauzN0,29334
|
173
|
-
junifer/storage/tests/test_pandas_base.py,sha256=y_TfUGpuXkj_39yVon3rMDxMeBrZXs58ZW6OSty5LNw,4058
|
174
|
-
junifer/storage/tests/test_sqlite.py,sha256=kua5BqNKpUG1MTqldHLNiEcfomX6RS3dzDA_KlbJE4g,28294
|
175
|
-
junifer/storage/tests/test_storage_base.py,sha256=YzgfspuggzXejyPIoRCPST3ZzH9Pi7dgl0IHN7kynXM,3071
|
176
|
-
junifer/storage/tests/test_utils.py,sha256=kpnp1IozQGKHXCpZbg2yGBe_XtDfsL8mfJGE6a9vYyk,11853
|
177
|
-
junifer/testing/__init__.py,sha256=5rCgJOF9m2du2u4Qsaze9SZ1oDjKptn6-QbN7VPhD1I,235
|
178
|
-
junifer/testing/datagrabbers.py,sha256=D5YxYll6wpH74G9ve9ZQfR1asltgp515I4PZ0apAQqM,6366
|
179
|
-
junifer/testing/registry.py,sha256=iGH3hAt36VtvnZO7UQjybHGh2FI8vo1InY3uDSct5Ps,720
|
180
|
-
junifer/testing/utils.py,sha256=n7sBKvsHwJ8_BpU4TbZhViWy1_OZythBI4fcRl1zNvw,557
|
181
|
-
junifer/testing/data/sub-0001_task-anticipation_acq-seq_desc-confounds_regressors.tsv,sha256=iDY1apF5caxnyGqvBYWer5JRKQIfuOwoT-SzzsgL59s,406849
|
182
|
-
junifer/testing/tests/test_oasisvmbtesting_datagrabber.py,sha256=BtfExi4VF-jZsi5A3hHS_EGm2O_bJoXnxWF44Z_4i24,794
|
183
|
-
junifer/testing/tests/test_partlycloudytesting_datagrabber.py,sha256=1VY71RhGtLD9Yb40o617G4fWRJQkhDoE2N50udyn6ng,1276
|
184
|
-
junifer/testing/tests/test_spmauditory_datagrabber.py,sha256=1G1emk-Ze59HiNLaYsyIz5O1YGW9darcqlzvhE-J_Mc,919
|
185
|
-
junifer/testing/tests/test_testing_registry.py,sha256=oerticBaPRaRZm3yANzInLac0Mqph3Y0aZPQFayu7xA,827
|
186
|
-
junifer/tests/test_main.py,sha256=GMff7jlisGM9_FsiUwWDte43j-KQJGFRYZpwRRqTkd8,373
|
187
|
-
junifer/tests/test_stats.py,sha256=u3bLjbshzc5fV207tLM79rR5vHDvNhdN7ZoYI1UTI04,4093
|
188
|
-
junifer/utils/__init__.py,sha256=ZDPU9ezSKawAJhb-3T67jDf-16QEyF6e7ONyu-lnBtQ,277
|
189
|
-
junifer/utils/fs.py,sha256=Jd9AoV2fIF7pT7KhXsn8T1O1fJ1_SFZgaFuOBAM7DG8,460
|
190
|
-
junifer/utils/logging.py,sha256=phBwOFaK6ejqbSjkCSAkZhhdo4sr01GdVZmJIL8t-Lw,8994
|
191
|
-
junifer/utils/tests/test_fs.py,sha256=WQS7cKlKEZ742CIuiOYYpueeAhY9PqlastfDVpVVtvE,923
|
192
|
-
junifer/utils/tests/test_logging.py,sha256=l8oo-AiBV7H6_IzlsNcj__cLeZBUvgIGoaMszD9VaJg,7754
|
193
|
-
junifer-0.0.3.dev188.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
|
194
|
-
junifer-0.0.3.dev188.dist-info/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
|
195
|
-
junifer-0.0.3.dev188.dist-info/METADATA,sha256=-C9mQsPB7gTQ9ZQnjZKEihMJ9rRvfL3dZEH6cgJ6ngg,6706
|
196
|
-
junifer-0.0.3.dev188.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
197
|
-
junifer-0.0.3.dev188.dist-info/entry_points.txt,sha256=DxFvKq0pOqRunAK0FxwJcoDfV1-dZvsFDpD5HRqSDhw,48
|
198
|
-
junifer-0.0.3.dev188.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
|
199
|
-
junifer-0.0.3.dev188.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|