junifer 0.0.5.dev242__py3-none-any.whl → 0.0.6__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/__init__.py +2 -31
- junifer/__init__.pyi +37 -0
- junifer/_version.py +9 -4
- junifer/api/__init__.py +3 -5
- junifer/api/__init__.pyi +4 -0
- junifer/api/decorators.py +14 -19
- junifer/api/functions.py +165 -109
- junifer/api/py.typed +0 -0
- junifer/api/queue_context/__init__.py +2 -4
- junifer/api/queue_context/__init__.pyi +5 -0
- junifer/api/queue_context/gnu_parallel_local_adapter.py +22 -6
- junifer/api/queue_context/htcondor_adapter.py +23 -6
- junifer/api/queue_context/py.typed +0 -0
- junifer/api/queue_context/tests/test_gnu_parallel_local_adapter.py +3 -3
- junifer/api/queue_context/tests/test_htcondor_adapter.py +3 -3
- junifer/api/tests/test_functions.py +168 -74
- junifer/cli/__init__.py +24 -0
- junifer/cli/__init__.pyi +3 -0
- junifer/{api → cli}/cli.py +141 -125
- junifer/cli/parser.py +235 -0
- junifer/cli/py.typed +0 -0
- junifer/{api → cli}/tests/test_cli.py +8 -8
- junifer/{api/tests/test_api_utils.py → cli/tests/test_cli_utils.py} +5 -4
- junifer/{api → cli}/tests/test_parser.py +2 -2
- junifer/{api → cli}/utils.py +6 -16
- junifer/configs/juseless/__init__.py +2 -2
- junifer/configs/juseless/__init__.pyi +3 -0
- junifer/configs/juseless/datagrabbers/__init__.py +2 -12
- junifer/configs/juseless/datagrabbers/__init__.pyi +13 -0
- junifer/configs/juseless/datagrabbers/ixi_vbm.py +2 -2
- junifer/configs/juseless/datagrabbers/py.typed +0 -0
- junifer/configs/juseless/datagrabbers/tests/test_ucla.py +2 -2
- junifer/configs/juseless/datagrabbers/ucla.py +4 -4
- junifer/configs/juseless/py.typed +0 -0
- junifer/conftest.py +25 -0
- junifer/data/__init__.py +2 -42
- junifer/data/__init__.pyi +29 -0
- junifer/data/_dispatch.py +248 -0
- junifer/data/coordinates/__init__.py +9 -0
- junifer/data/coordinates/__init__.pyi +5 -0
- junifer/data/coordinates/_ants_coordinates_warper.py +104 -0
- junifer/data/coordinates/_coordinates.py +385 -0
- junifer/data/coordinates/_fsl_coordinates_warper.py +81 -0
- junifer/data/{tests → coordinates/tests}/test_coordinates.py +26 -33
- junifer/data/masks/__init__.py +9 -0
- junifer/data/masks/__init__.pyi +6 -0
- junifer/data/masks/_ants_mask_warper.py +177 -0
- junifer/data/masks/_fsl_mask_warper.py +106 -0
- junifer/data/masks/_masks.py +802 -0
- junifer/data/{tests → masks/tests}/test_masks.py +67 -63
- junifer/data/parcellations/__init__.py +9 -0
- junifer/data/parcellations/__init__.pyi +6 -0
- junifer/data/parcellations/_ants_parcellation_warper.py +166 -0
- junifer/data/parcellations/_fsl_parcellation_warper.py +89 -0
- junifer/data/parcellations/_parcellations.py +1388 -0
- junifer/data/{tests → parcellations/tests}/test_parcellations.py +165 -295
- junifer/data/pipeline_data_registry_base.py +76 -0
- junifer/data/py.typed +0 -0
- junifer/data/template_spaces.py +44 -79
- junifer/data/tests/test_data_utils.py +1 -2
- junifer/data/tests/test_template_spaces.py +8 -4
- junifer/data/utils.py +109 -4
- junifer/datagrabber/__init__.py +2 -26
- junifer/datagrabber/__init__.pyi +27 -0
- junifer/datagrabber/aomic/__init__.py +2 -4
- junifer/datagrabber/aomic/__init__.pyi +5 -0
- junifer/datagrabber/aomic/id1000.py +81 -52
- junifer/datagrabber/aomic/piop1.py +83 -55
- junifer/datagrabber/aomic/piop2.py +85 -56
- junifer/datagrabber/aomic/py.typed +0 -0
- junifer/datagrabber/aomic/tests/test_id1000.py +19 -12
- junifer/datagrabber/aomic/tests/test_piop1.py +52 -18
- junifer/datagrabber/aomic/tests/test_piop2.py +50 -17
- junifer/datagrabber/base.py +22 -18
- junifer/datagrabber/datalad_base.py +71 -34
- junifer/datagrabber/dmcc13_benchmark.py +31 -18
- junifer/datagrabber/hcp1200/__init__.py +2 -3
- junifer/datagrabber/hcp1200/__init__.pyi +4 -0
- junifer/datagrabber/hcp1200/datalad_hcp1200.py +3 -3
- junifer/datagrabber/hcp1200/hcp1200.py +26 -15
- junifer/datagrabber/hcp1200/py.typed +0 -0
- junifer/datagrabber/hcp1200/tests/test_hcp1200.py +8 -2
- junifer/datagrabber/multiple.py +14 -9
- junifer/datagrabber/pattern.py +132 -96
- junifer/datagrabber/pattern_validation_mixin.py +206 -94
- junifer/datagrabber/py.typed +0 -0
- junifer/datagrabber/tests/test_datalad_base.py +27 -12
- junifer/datagrabber/tests/test_dmcc13_benchmark.py +28 -11
- junifer/datagrabber/tests/test_multiple.py +48 -2
- junifer/datagrabber/tests/test_pattern_datalad.py +1 -1
- junifer/datagrabber/tests/test_pattern_validation_mixin.py +6 -6
- junifer/datareader/__init__.py +2 -2
- junifer/datareader/__init__.pyi +3 -0
- junifer/datareader/default.py +6 -6
- junifer/datareader/py.typed +0 -0
- junifer/external/nilearn/__init__.py +2 -3
- junifer/external/nilearn/__init__.pyi +4 -0
- junifer/external/nilearn/junifer_connectivity_measure.py +25 -17
- junifer/external/nilearn/junifer_nifti_spheres_masker.py +4 -4
- junifer/external/nilearn/py.typed +0 -0
- junifer/external/nilearn/tests/test_junifer_connectivity_measure.py +17 -16
- junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py +2 -3
- junifer/markers/__init__.py +2 -38
- junifer/markers/__init__.pyi +37 -0
- junifer/markers/base.py +11 -14
- junifer/markers/brainprint.py +12 -14
- junifer/markers/complexity/__init__.py +2 -18
- junifer/markers/complexity/__init__.pyi +17 -0
- junifer/markers/complexity/complexity_base.py +9 -11
- junifer/markers/complexity/hurst_exponent.py +7 -7
- junifer/markers/complexity/multiscale_entropy_auc.py +7 -7
- junifer/markers/complexity/perm_entropy.py +7 -7
- junifer/markers/complexity/py.typed +0 -0
- junifer/markers/complexity/range_entropy.py +7 -7
- junifer/markers/complexity/range_entropy_auc.py +7 -7
- junifer/markers/complexity/sample_entropy.py +7 -7
- junifer/markers/complexity/tests/test_complexity_base.py +1 -1
- junifer/markers/complexity/tests/test_hurst_exponent.py +5 -5
- junifer/markers/complexity/tests/test_multiscale_entropy_auc.py +5 -5
- junifer/markers/complexity/tests/test_perm_entropy.py +5 -5
- junifer/markers/complexity/tests/test_range_entropy.py +5 -5
- junifer/markers/complexity/tests/test_range_entropy_auc.py +5 -5
- junifer/markers/complexity/tests/test_sample_entropy.py +5 -5
- junifer/markers/complexity/tests/test_weighted_perm_entropy.py +5 -5
- junifer/markers/complexity/weighted_perm_entropy.py +7 -7
- junifer/markers/ets_rss.py +12 -11
- junifer/markers/falff/__init__.py +2 -3
- junifer/markers/falff/__init__.pyi +4 -0
- junifer/markers/falff/_afni_falff.py +38 -45
- junifer/markers/falff/_junifer_falff.py +16 -19
- junifer/markers/falff/falff_base.py +7 -11
- junifer/markers/falff/falff_parcels.py +9 -9
- junifer/markers/falff/falff_spheres.py +8 -8
- junifer/markers/falff/py.typed +0 -0
- junifer/markers/falff/tests/test_falff_spheres.py +3 -1
- junifer/markers/functional_connectivity/__init__.py +2 -12
- junifer/markers/functional_connectivity/__init__.pyi +13 -0
- junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py +9 -8
- junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py +8 -8
- junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py +7 -7
- junifer/markers/functional_connectivity/functional_connectivity_base.py +13 -12
- junifer/markers/functional_connectivity/functional_connectivity_parcels.py +8 -8
- junifer/markers/functional_connectivity/functional_connectivity_spheres.py +7 -7
- junifer/markers/functional_connectivity/py.typed +0 -0
- junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py +1 -2
- junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py +1 -2
- junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py +6 -6
- junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py +5 -5
- junifer/markers/parcel_aggregation.py +22 -17
- junifer/markers/py.typed +0 -0
- junifer/markers/reho/__init__.py +2 -3
- junifer/markers/reho/__init__.pyi +4 -0
- junifer/markers/reho/_afni_reho.py +29 -35
- junifer/markers/reho/_junifer_reho.py +13 -14
- junifer/markers/reho/py.typed +0 -0
- junifer/markers/reho/reho_base.py +7 -11
- junifer/markers/reho/reho_parcels.py +10 -10
- junifer/markers/reho/reho_spheres.py +9 -9
- junifer/markers/sphere_aggregation.py +22 -17
- junifer/markers/temporal_snr/__init__.py +2 -3
- junifer/markers/temporal_snr/__init__.pyi +4 -0
- junifer/markers/temporal_snr/py.typed +0 -0
- junifer/markers/temporal_snr/temporal_snr_base.py +11 -10
- junifer/markers/temporal_snr/temporal_snr_parcels.py +8 -8
- junifer/markers/temporal_snr/temporal_snr_spheres.py +7 -7
- junifer/markers/tests/test_ets_rss.py +3 -3
- junifer/markers/tests/test_parcel_aggregation.py +24 -24
- junifer/markers/tests/test_sphere_aggregation.py +6 -6
- junifer/markers/utils.py +3 -3
- junifer/onthefly/__init__.py +2 -1
- junifer/onthefly/_brainprint.py +138 -0
- junifer/onthefly/read_transform.py +5 -8
- junifer/pipeline/__init__.py +2 -10
- junifer/pipeline/__init__.pyi +13 -0
- junifer/{markers/collection.py → pipeline/marker_collection.py} +8 -14
- junifer/pipeline/pipeline_component_registry.py +294 -0
- junifer/pipeline/pipeline_step_mixin.py +15 -11
- junifer/pipeline/py.typed +0 -0
- junifer/{markers/tests/test_collection.py → pipeline/tests/test_marker_collection.py} +2 -3
- junifer/pipeline/tests/test_pipeline_component_registry.py +200 -0
- junifer/pipeline/tests/test_pipeline_step_mixin.py +36 -37
- junifer/pipeline/tests/test_update_meta_mixin.py +4 -4
- junifer/pipeline/tests/test_workdir_manager.py +43 -0
- junifer/pipeline/update_meta_mixin.py +21 -17
- junifer/pipeline/utils.py +6 -6
- junifer/pipeline/workdir_manager.py +19 -5
- junifer/preprocess/__init__.py +2 -10
- junifer/preprocess/__init__.pyi +11 -0
- junifer/preprocess/base.py +10 -10
- junifer/preprocess/confounds/__init__.py +2 -2
- junifer/preprocess/confounds/__init__.pyi +3 -0
- junifer/preprocess/confounds/fmriprep_confound_remover.py +243 -64
- junifer/preprocess/confounds/py.typed +0 -0
- junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py +121 -14
- junifer/preprocess/py.typed +0 -0
- junifer/preprocess/smoothing/__init__.py +2 -2
- junifer/preprocess/smoothing/__init__.pyi +3 -0
- junifer/preprocess/smoothing/_afni_smoothing.py +40 -40
- junifer/preprocess/smoothing/_fsl_smoothing.py +22 -32
- junifer/preprocess/smoothing/_nilearn_smoothing.py +35 -14
- junifer/preprocess/smoothing/py.typed +0 -0
- junifer/preprocess/smoothing/smoothing.py +11 -13
- junifer/preprocess/warping/__init__.py +2 -2
- junifer/preprocess/warping/__init__.pyi +3 -0
- junifer/preprocess/warping/_ants_warper.py +136 -32
- junifer/preprocess/warping/_fsl_warper.py +73 -22
- junifer/preprocess/warping/py.typed +0 -0
- junifer/preprocess/warping/space_warper.py +39 -11
- junifer/preprocess/warping/tests/test_space_warper.py +5 -9
- junifer/py.typed +0 -0
- junifer/stats.py +5 -5
- junifer/storage/__init__.py +2 -10
- junifer/storage/__init__.pyi +11 -0
- junifer/storage/base.py +47 -13
- junifer/storage/hdf5.py +95 -33
- junifer/storage/pandas_base.py +12 -11
- junifer/storage/py.typed +0 -0
- junifer/storage/sqlite.py +11 -11
- junifer/storage/tests/test_hdf5.py +86 -4
- junifer/storage/tests/test_sqlite.py +2 -2
- junifer/storage/tests/test_storage_base.py +5 -2
- junifer/storage/tests/test_utils.py +33 -7
- junifer/storage/utils.py +95 -9
- junifer/testing/__init__.py +2 -3
- junifer/testing/__init__.pyi +4 -0
- junifer/testing/datagrabbers.py +10 -11
- junifer/testing/py.typed +0 -0
- junifer/testing/registry.py +4 -7
- junifer/testing/tests/test_testing_registry.py +9 -17
- junifer/tests/test_stats.py +2 -2
- junifer/typing/__init__.py +9 -0
- junifer/typing/__init__.pyi +31 -0
- junifer/typing/_typing.py +68 -0
- junifer/utils/__init__.py +2 -12
- junifer/utils/__init__.pyi +18 -0
- junifer/utils/_config.py +110 -0
- junifer/utils/_yaml.py +16 -0
- junifer/utils/helpers.py +6 -6
- junifer/utils/logging.py +117 -8
- junifer/utils/py.typed +0 -0
- junifer/{pipeline → utils}/singleton.py +19 -14
- junifer/utils/tests/test_config.py +59 -0
- {junifer-0.0.5.dev242.dist-info → junifer-0.0.6.dist-info}/METADATA +43 -38
- junifer-0.0.6.dist-info/RECORD +350 -0
- {junifer-0.0.5.dev242.dist-info → junifer-0.0.6.dist-info}/WHEEL +1 -1
- junifer-0.0.6.dist-info/entry_points.txt +2 -0
- junifer/api/parser.py +0 -118
- junifer/data/coordinates.py +0 -408
- junifer/data/masks.py +0 -670
- junifer/data/parcellations.py +0 -1828
- junifer/pipeline/registry.py +0 -177
- junifer/pipeline/tests/test_registry.py +0 -150
- junifer-0.0.5.dev242.dist-info/RECORD +0 -275
- junifer-0.0.5.dev242.dist-info/entry_points.txt +0 -2
- /junifer/{api → cli}/tests/data/gmd_mean.yaml +0 -0
- /junifer/{api → cli}/tests/data/gmd_mean_htcondor.yaml +0 -0
- /junifer/{api → cli}/tests/data/partly_cloudy_agg_mean_tian.yml +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/AutobiographicalMemory_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/CogAC_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/CogAR_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/DMNBuckner_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/Dosenbach2010_MNI_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/Empathy_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/Motor_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/MultiTask_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/PhysioStress_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/Power2011_MNI_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/Power2013_MNI_VOIs.tsv +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/Rew_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/Somatosensory_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/ToM_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/VigAtt_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/WM_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/eMDN_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/eSAD_VOIs.txt +0 -0
- /junifer/data/{VOIs → coordinates/VOIs}/meta/extDMN_VOIs.txt +0 -0
- {junifer-0.0.5.dev242.dist-info → junifer-0.0.6.dist-info/licenses}/AUTHORS.rst +0 -0
- {junifer-0.0.5.dev242.dist-info → junifer-0.0.6.dist-info/licenses}/LICENSE.md +0 -0
- {junifer-0.0.5.dev242.dist-info → junifer-0.0.6.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: junifer
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.6
|
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>
|
@@ -19,53 +19,57 @@ Classifier: Topic :: Software Development
|
|
19
19
|
Classifier: Topic :: Scientific/Engineering
|
20
20
|
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
21
21
|
Classifier: Operating System :: OS Independent
|
22
|
-
Classifier: Programming Language :: Python :: 3.8
|
23
22
|
Classifier: Programming Language :: Python :: 3.9
|
24
23
|
Classifier: Programming Language :: Python :: 3.10
|
25
24
|
Classifier: Programming Language :: Python :: 3.11
|
26
25
|
Classifier: Programming Language :: Python :: 3.12
|
27
|
-
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
27
|
+
Requires-Python: >=3.9
|
28
28
|
Description-Content-Type: text/markdown
|
29
29
|
License-File: LICENSE.md
|
30
30
|
License-File: AUTHORS.rst
|
31
|
-
Requires-Dist: click
|
32
|
-
Requires-Dist: numpy
|
33
|
-
Requires-Dist: scipy
|
34
|
-
Requires-Dist: datalad
|
35
|
-
Requires-Dist: pandas
|
36
|
-
Requires-Dist: nibabel
|
37
|
-
Requires-Dist: nilearn
|
38
|
-
Requires-Dist: sqlalchemy
|
39
|
-
Requires-Dist: ruamel.yaml
|
40
|
-
Requires-Dist: h5py
|
41
|
-
Requires-Dist:
|
42
|
-
Requires-Dist:
|
43
|
-
Requires-Dist:
|
44
|
-
Requires-Dist:
|
45
|
-
Requires-Dist:
|
46
|
-
Requires-Dist: looseversion
|
31
|
+
Requires-Dist: click<8.2,>=8.1.3
|
32
|
+
Requires-Dist: numpy<2.0.0,>=1.26.0
|
33
|
+
Requires-Dist: scipy<=1.15.0,>=1.10.0
|
34
|
+
Requires-Dist: datalad<1.2.0,>=1.0.0
|
35
|
+
Requires-Dist: pandas<2.3.0,>=2.0.0
|
36
|
+
Requires-Dist: nibabel<5.4.0,>=5.2.0
|
37
|
+
Requires-Dist: nilearn<=0.10.4,>=0.10.3
|
38
|
+
Requires-Dist: sqlalchemy<=2.1.0,>=2.0.25
|
39
|
+
Requires-Dist: ruamel.yaml<0.19,>=0.17
|
40
|
+
Requires-Dist: h5py>=3.10
|
41
|
+
Requires-Dist: tqdm<4.67.0,>=4.66.1
|
42
|
+
Requires-Dist: templateflow>=23.0.0
|
43
|
+
Requires-Dist: lapy<2.0.0,>=1.0.0
|
44
|
+
Requires-Dist: lazy_loader==0.4
|
45
|
+
Requires-Dist: importlib_metadata; python_version < "3.9"
|
46
|
+
Requires-Dist: looseversion==1.3.0; python_version >= "3.12"
|
47
|
+
Requires-Dist: junifer_data==1.3.0
|
47
48
|
Provides-Extra: all
|
48
|
-
Requires-Dist: bctpy
|
49
|
-
Requires-Dist: neurokit2
|
49
|
+
Requires-Dist: bctpy==0.6.0; extra == "all"
|
50
|
+
Requires-Dist: neurokit2>=0.1.7; extra == "all"
|
50
51
|
Provides-Extra: bct
|
51
|
-
Requires-Dist: bctpy
|
52
|
+
Requires-Dist: bctpy==0.6.0; extra == "bct"
|
53
|
+
Provides-Extra: onthefly
|
54
|
+
Requires-Dist: bctpy==0.6.0; extra == "onthefly"
|
55
|
+
Provides-Extra: neurokit2
|
56
|
+
Requires-Dist: neurokit2>=0.1.7; extra == "neurokit2"
|
52
57
|
Provides-Extra: dev
|
53
|
-
Requires-Dist: tox
|
54
|
-
Requires-Dist: pre-commit
|
58
|
+
Requires-Dist: tox; extra == "dev"
|
59
|
+
Requires-Dist: pre-commit; extra == "dev"
|
55
60
|
Provides-Extra: docs
|
56
|
-
Requires-Dist: seaborn
|
57
|
-
Requires-Dist: sphinx
|
58
|
-
Requires-Dist: sphinx-gallery
|
59
|
-
Requires-Dist: furo
|
60
|
-
Requires-Dist: numpydoc
|
61
|
-
Requires-Dist: julearn
|
62
|
-
Requires-Dist: sphinx-copybutton
|
63
|
-
Requires-Dist: towncrier
|
64
|
-
Requires-Dist: sphinxcontrib-mermaid
|
65
|
-
|
66
|
-
Requires-Dist:
|
67
|
-
|
68
|
-
Requires-Dist: bctpy ==0.6.0 ; extra == 'onthefly'
|
61
|
+
Requires-Dist: seaborn<0.14.0,>=0.13.0; extra == "docs"
|
62
|
+
Requires-Dist: sphinx<8.1.0,>=7.3.0; extra == "docs"
|
63
|
+
Requires-Dist: sphinx-gallery<0.18.0,>=0.17.0; extra == "docs"
|
64
|
+
Requires-Dist: furo<2024.9.0,>=2024.4.27; extra == "docs"
|
65
|
+
Requires-Dist: numpydoc<1.9.0,>=1.6.0; extra == "docs"
|
66
|
+
Requires-Dist: julearn==0.3.3; extra == "docs"
|
67
|
+
Requires-Dist: sphinx-copybutton<0.5.3,>=0.5.1; extra == "docs"
|
68
|
+
Requires-Dist: towncrier<24.7.0,>=23.10.0; extra == "docs"
|
69
|
+
Requires-Dist: sphinxcontrib-mermaid<0.10,>=0.8.1; extra == "docs"
|
70
|
+
Requires-Dist: sphinxcontrib-towncrier==0.4.0a0; extra == "docs"
|
71
|
+
Requires-Dist: setuptools-scm>=8; extra == "docs"
|
72
|
+
Dynamic: license-file
|
69
73
|
|
70
74
|

|
71
75
|
|
@@ -108,6 +112,7 @@ The documentation is available at [https://juaml.github.io/junifer](https://juam
|
|
108
112
|
* `preprocess`: Preprocessing module.
|
109
113
|
* `storage`: Storage module.
|
110
114
|
* `testing`: Testing components module.
|
115
|
+
* `typing`: Type hints module.
|
111
116
|
* `utils`: Utilities module (e.g. logging).
|
112
117
|
|
113
118
|
## Installation
|
@@ -0,0 +1,350 @@
|
|
1
|
+
junifer/__init__.py,sha256=2McgH1yNue6Z1V26-uN_mfMjbTcx4CLhym-DMBl5xA4,266
|
2
|
+
junifer/__init__.pyi,sha256=SsTvgq2Dod6UqJN96GH1lCphH6hJQQurEJHGNhHjGUI,508
|
3
|
+
junifer/_version.py,sha256=juzdq-mLyQD1MXj2IU1nbwqAl0oOYH7zZ9BDjNsqyB0,511
|
4
|
+
junifer/conftest.py,sha256=PWYkkRDU8ly2lYwv7VBKMHje4et6HX7Yey3Md_I2KbA,613
|
5
|
+
junifer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
junifer/stats.py,sha256=e9aaagMGtgpRfW3Wdpz9ocpnYld1IWylCDcjFUgX9Mk,6225
|
7
|
+
junifer/api/__init__.py,sha256=aAXW_KAEGQ8aAP5Eni2G1R4MWBF7UgjKOgM6akLuJco,252
|
8
|
+
junifer/api/__init__.pyi,sha256=UJu55ApMFd43N0xlQyNKrYpCdzqhAxA3Jjaj0ETwCXU,169
|
9
|
+
junifer/api/decorators.py,sha256=xphy55NJHnMZnJ-aNA70UzHUJ3SIgh5Xc8ekcozvj3U,2854
|
10
|
+
junifer/api/functions.py,sha256=AeOSWA-U_Z18gtFYpFPvhk9Fip_FPWTW2NOMAzNIrQc,14242
|
11
|
+
junifer/api/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
|
+
junifer/api/queue_context/__init__.py,sha256=glr8x4aMm4EvVrHywDIlugdNlwD1RzqV2FTDNPqYQZ4,204
|
13
|
+
junifer/api/queue_context/__init__.pyi,sha256=LoDQFGZ9wCDmgx5a1_nhKo4zOSvqViXZ8V882DksF7U,246
|
14
|
+
junifer/api/queue_context/gnu_parallel_local_adapter.py,sha256=3jynHE7dmKUrJN8KfuzUbUokk2ZtriFE5XdpIk1gz8g,10187
|
15
|
+
junifer/api/queue_context/htcondor_adapter.py,sha256=5gPlGbuNpfhcWuVB7BhqXqmtoKy2Wm1sAvaD2qOFpzo,13887
|
16
|
+
junifer/api/queue_context/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
+
junifer/api/queue_context/queue_context_adapter.py,sha256=a6UE8xavDfuaZbkWYsayVs6l-rwIrbpFSpqSyHsEeYY,1577
|
18
|
+
junifer/api/queue_context/tests/test_gnu_parallel_local_adapter.py,sha256=Nv_0axIW4SOE7-TyQXd_nM_0A_kDiFAgrkQcmQafW_s,6585
|
19
|
+
junifer/api/queue_context/tests/test_htcondor_adapter.py,sha256=-8bA1E-2sS0RMwB-_78l11hud-G-YKJR6x-tUpdg7vs,8600
|
20
|
+
junifer/api/res/run_conda.bash,sha256=Axm0xTsP6doUV0X0k6nUP_UJr_2GzA8CPvulQZ01Uno,517
|
21
|
+
junifer/api/res/run_conda.zsh,sha256=32Sm1VNjsrpdH_Wi46jGhPbrJjrmNlPIHtkQ6cHVUkU,515
|
22
|
+
junifer/api/res/run_venv.bash,sha256=aynMRwBgFzYc4CAWbnne_A0UPD5ZFd81w62u22IXzPo,507
|
23
|
+
junifer/api/res/run_venv.zsh,sha256=PaZJ5444TBdM3XntUETyxyngQ9xtjiq7I6hhHQev2Hc,506
|
24
|
+
junifer/api/res/afni/3dAFNItoNIFTI,sha256=Fsy5S5rwIBb1MepLfl_5FQhE7gv6NDwNyAR_k036NmM,51
|
25
|
+
junifer/api/res/afni/3dRSFC,sha256=MkPtS_nKEoJOHDAT3ZP9IA-SvMdhyzZDiyxObV_XI3g,44
|
26
|
+
junifer/api/res/afni/3dReHo,sha256=Jb5B97iPPPQ14zAz7tK5BVG4jPZyOe9c6kgM6ixKaY8,44
|
27
|
+
junifer/api/res/afni/afni,sha256=idLvNWHwd6P4jWXfk6hMXQckdpcTJYbvnLC3uNP6sBg,42
|
28
|
+
junifer/api/res/afni/run_afni_docker.sh,sha256=aXUBL7RaTDpXJFmLXTUH3lkr7K3SRm78sOzh32M_wew,1130
|
29
|
+
junifer/api/res/ants/ResampleImage,sha256=oJKZ31rBAW20ETozB8Ub5SbXMuhmZfrerpJTnRu-hOY,51
|
30
|
+
junifer/api/res/ants/antsApplyTransforms,sha256=SqlQEJ2RMMw_qGyDaNTXKzQqO7Bvrm6y5SEPmyqHiYc,57
|
31
|
+
junifer/api/res/ants/antsApplyTransformsToPoints,sha256=lqyvQGo8oI-RNpNlRqz-BvLHh7Th5HQgsDZjHF6nEeI,65
|
32
|
+
junifer/api/res/ants/run_ants_docker.sh,sha256=IZN1o2ppW7roe83t1Hi7bzAM4qQ26l-5PW36YA5IQEg,1120
|
33
|
+
junifer/api/res/freesurfer/mri_binarize,sha256=d6tjwyOTvLxaMcmUMaeYdR6gE0aI0Bj7ITnDLO3eNdk,56
|
34
|
+
junifer/api/res/freesurfer/mri_mc,sha256=sTVbj27M_rjs1RIj6dyp_OTSN4ZB3Q_7f2A5z-ri1QA,50
|
35
|
+
junifer/api/res/freesurfer/mri_pretess,sha256=BxhyeD8M3jxIpA_1i6sMAHcsaBQQtvfPu2i1u_nGFBg,55
|
36
|
+
junifer/api/res/freesurfer/mris_convert,sha256=7r6L2nQlBNUMJwtsRiIicU_LvKi5GQ9pQUkbDP__p_Q,56
|
37
|
+
junifer/api/res/freesurfer/run_freesurfer_docker.sh,sha256=zn6fa0lNAMx3KNZqLcjUYhabpCmcqSETBtqqiqiRQAY,1848
|
38
|
+
junifer/api/res/fsl/applywarp,sha256=DBgHfsn1yXWq0t-P7J0YvrjjJNgiblwDsh9L1hF9v_w,46
|
39
|
+
junifer/api/res/fsl/flirt,sha256=tSjiUco8ui8AbHD7mTzChEwbR0Rf_4iJTgzYTPF_WuQ,42
|
40
|
+
junifer/api/res/fsl/img2imgcoord,sha256=Zmaw3oJYrEltcXiPyEubXry9ppAq3SND52tdDWGgeZk,49
|
41
|
+
junifer/api/res/fsl/run_fsl_docker.sh,sha256=pq-fcNdLuvHzVIQePN4GebZGlcE2UF-xj5rBIqAMz4g,1122
|
42
|
+
junifer/api/res/fsl/std2imgcoord,sha256=-X5wRH6XMl0yqnTACJX6MFhO8DFOEWg42MHRxGvimXg,49
|
43
|
+
junifer/api/tests/test_functions.py,sha256=HcJIBCtcgL1xJlDwtGHrGOWBMjXgCoAFoVxQW6n2Tds,20676
|
44
|
+
junifer/cli/__init__.py,sha256=LRmpmMe0DdZKYZTV61onUiLLxYZ_ZYSfmRbH55bBJMg,500
|
45
|
+
junifer/cli/__init__.pyi,sha256=PiV4znUnzSeuSSJGz-RT8N21PiMqoSMwYcypi7nt2Js,40
|
46
|
+
junifer/cli/cli.py,sha256=IMaTj7eXdL0q9alLLtWsf2A4z6PbKtIDhE4gfM222VY,15734
|
47
|
+
junifer/cli/parser.py,sha256=jLinKVcZeuyTnxjB2p5sj8555DO5rcPcWKgZCtgFARY,8498
|
48
|
+
junifer/cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
+
junifer/cli/utils.py,sha256=AbPQC0Kl-tHMNKiPxp_01gLAGD3IGoLbsq3rXyPMM-c,3116
|
50
|
+
junifer/cli/tests/test_cli.py,sha256=AYL4my12GmFRCbI3JV7-rju32heYxAqbXNwnV8PwqVY,10982
|
51
|
+
junifer/cli/tests/test_cli_utils.py,sha256=AfBKG9nAxatDKPhs4fp42gSiF_e7F0XqGWLsWUg5DlQ,2736
|
52
|
+
junifer/cli/tests/test_parser.py,sha256=5A6yI2t9Ou5w--wpEzXY7mdcVMWWFZaTNLPQ6yLU9gI,6113
|
53
|
+
junifer/cli/tests/data/gmd_mean.yaml,sha256=Ohb_C5cfQMK-59U9O1ZhejXyBtzLc5Y4cv8QyYq2azg,330
|
54
|
+
junifer/cli/tests/data/gmd_mean_htcondor.yaml,sha256=f7NLv_KIJXTiPNFmOWl2Vw8EfwojhfkGtwbh5prbd6w,417
|
55
|
+
junifer/cli/tests/data/partly_cloudy_agg_mean_tian.yml,sha256=nS8K_R1hEuV71Vv-i9SYjnDGAK2FClQqBiE4kOuQ_ys,313
|
56
|
+
junifer/configs/__init__.py,sha256=mE70B1Sc7Tn4uts1vMVF7Ie6hdj7PuDvmDmie3soA9I,121
|
57
|
+
junifer/configs/juseless/__init__.py,sha256=whP6Ghqu2zig8gLy-6sx0lhGNfqffSavMsPe4dHoZaE,230
|
58
|
+
junifer/configs/juseless/__init__.pyi,sha256=Khqit2Ejsfgf8TVOwu_B4lgkZ3wX0uNtgi_Uu_BkmWY,55
|
59
|
+
junifer/configs/juseless/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
|
+
junifer/configs/juseless/datagrabbers/__init__.py,sha256=GbF1SzIGQF-CMzuah6aAS0GHX7sraQuM_loYgUeQy88,332
|
61
|
+
junifer/configs/juseless/datagrabbers/__init__.pyi,sha256=kzFvGofwt7yMj6iz-l_NHCM2ITR4MdklnnGoVUtLVek,388
|
62
|
+
junifer/configs/juseless/datagrabbers/aomic_id1000_vbm.py,sha256=dhOeIQg-IVDatJu2Y1ObuAANdMoYDgACtMOu-9SHzh8,1474
|
63
|
+
junifer/configs/juseless/datagrabbers/camcan_vbm.py,sha256=_d_nMmKQbGEK644wCMmVfHaI2ioTmDmg5ypr_Ik3hDI,1538
|
64
|
+
junifer/configs/juseless/datagrabbers/ixi_vbm.py,sha256=0EhIJAC6BGW7CX2MTwr3fuLvwOKHWAxI4Bg7WSVA8H4,2295
|
65
|
+
junifer/configs/juseless/datagrabbers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
|
+
junifer/configs/juseless/datagrabbers/ucla.py,sha256=IS0onoS4mUtUME3Gb3zKtc0XeHXzzWwi-PmMJmz1fVw,4869
|
67
|
+
junifer/configs/juseless/datagrabbers/ukb_vbm.py,sha256=gn7O4Oo7Sc5bw4J6ZKmb2Hmr5bs52oE0_zCK1-Vb378,1523
|
68
|
+
junifer/configs/juseless/datagrabbers/tests/test_aomic_id1000_vbm.py,sha256=Y_npFmmj0MN0TYv8jaxVMgFHLMQLZ8vXl8lWQKvOYbc,1001
|
69
|
+
junifer/configs/juseless/datagrabbers/tests/test_camcan_vbm.py,sha256=o0dzptS97pxrWaY7I1m0dpJtsnAwmIXNqdU9ABTWCqI,975
|
70
|
+
junifer/configs/juseless/datagrabbers/tests/test_ixi_vbm.py,sha256=8jxpNZelXwpJGvA5LOfpso2X8yt1chvERAYmv76hS_g,1252
|
71
|
+
junifer/configs/juseless/datagrabbers/tests/test_ucla.py,sha256=l-1y_m6NJo7JExhyIzp-vajUfiqiofX69YUOrRHIFKw,3246
|
72
|
+
junifer/configs/juseless/datagrabbers/tests/test_ukb_vbm.py,sha256=b9hjc1mgO--PSRC3id2EzzfE2yWNsuZ2UI47a6sfGZU,1025
|
73
|
+
junifer/data/__init__.py,sha256=xJDI2QKtdjcNzpd1oVFM3guh1SFHM6jKstl7pFmzOuk,267
|
74
|
+
junifer/data/__init__.pyi,sha256=qYszjUYcbFi_2zO23MnbA2HhTW-Ad2oh1pqPQYd6yt0,542
|
75
|
+
junifer/data/_dispatch.py,sha256=JYUfzcn3MwMw1m-11bC1oKQrGB1kUjVwHgwdKIKA7rw,6170
|
76
|
+
junifer/data/pipeline_data_registry_base.py,sha256=G8bE3WTj4D_rKC4ZKZe6E48Sd96CGea1PS3SxmTgGK4,2010
|
77
|
+
junifer/data/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
|
+
junifer/data/template_spaces.py,sha256=7LcQbUV_SWCic-TtETCejgat-BxxFDxZFm5z80rRZ-M,4661
|
79
|
+
junifer/data/utils.py,sha256=Z7M682Y24JIl3GtMlPd87SmjTYCOt7qZZ1iQ7VC8GLc,3958
|
80
|
+
junifer/data/coordinates/__init__.py,sha256=ffM8rwcHLgHAWixJbKrATrbUKzX940V1UF6RAxZdUMg,186
|
81
|
+
junifer/data/coordinates/__init__.pyi,sha256=Z-Ti5XD3HigkZ8uYN6oYsLqw40-F1GvTVQ5QAy08Wng,88
|
82
|
+
junifer/data/coordinates/_ants_coordinates_warper.py,sha256=5RWDC-nI3VG9lkSJ-_y_hlDtjPctKSJokQOp3v8ozwY,2956
|
83
|
+
junifer/data/coordinates/_coordinates.py,sha256=jfH1BhvYmXJNZfMYNvH70UaTfe5CNaes099EGHx3YfM,13345
|
84
|
+
junifer/data/coordinates/_fsl_coordinates_warper.py,sha256=5h7rwiPMYBQlA3sMZUImcpnNLLWvIp2-bAEaaHtzX9c,2409
|
85
|
+
junifer/data/coordinates/VOIs/meta/AutobiographicalMemory_VOIs.txt,sha256=9af38naeL18Tlt_gy_ep6vyTAxOB336JYjbo5FvP8PQ,686
|
86
|
+
junifer/data/coordinates/VOIs/meta/CogAC_VOIs.txt,sha256=Sr5_E712OLdeQRyUcDNM0wLBvZIyO6gc9Q7KkyJHX1A,398
|
87
|
+
junifer/data/coordinates/VOIs/meta/CogAR_VOIs.txt,sha256=t3NLwEVUZTPP34p15SaB3UInLrQyK-7Qc4iLBuQlZu8,189
|
88
|
+
junifer/data/coordinates/VOIs/meta/DMNBuckner_VOIs.txt,sha256=2trjgKF00PnCxTtfCXYmr-J7P_Jl-iX_qUocmzOR1nk,86
|
89
|
+
junifer/data/coordinates/VOIs/meta/Dosenbach2010_MNI_VOIs.txt,sha256=rIh9-OCBG0if2v1V4CeK27ZDVXPg6A2sFSqcwHZ1i3Y,3372
|
90
|
+
junifer/data/coordinates/VOIs/meta/Empathy_VOIs.txt,sha256=8rwZkEe-TrI7vT_ArzqIMSSlkGvg3RJG3PlHoxZKYjU,486
|
91
|
+
junifer/data/coordinates/VOIs/meta/Motor_VOIs.txt,sha256=NFpqgxlSrt9x3Tb9vn1ISogc684rRgVQbFPlifmI8S4,219
|
92
|
+
junifer/data/coordinates/VOIs/meta/MultiTask_VOIs.txt,sha256=T2f7_9qWpJcfMic-Pgg4VyNDrcNDOzN9kE81WM_6elk,220
|
93
|
+
junifer/data/coordinates/VOIs/meta/PhysioStress_VOIs.txt,sha256=6hLYGMPFFnbhtu_9J3_hDul0LfUYAwhygzdLLG6R0qU,378
|
94
|
+
junifer/data/coordinates/VOIs/meta/Power2011_MNI_VOIs.txt,sha256=0tLVEmCEUjwJ7Rsdibv2qxilc2u-jvoBgCbOs7ax6iU,3836
|
95
|
+
junifer/data/coordinates/VOIs/meta/Power2013_MNI_VOIs.tsv,sha256=FERfBfExvbBWQxOJ4xRITiFB1rL4O4PpUeHFKPS03Fk,3836
|
96
|
+
junifer/data/coordinates/VOIs/meta/Rew_VOIs.txt,sha256=dCYre7kP4Ca-S52W0weU7N2UUZM8522WYlb9d7kUo-A,569
|
97
|
+
junifer/data/coordinates/VOIs/meta/Somatosensory_VOIs.txt,sha256=OylWpfoluG65whXqEODQ5qvreMdYXBQskMjmnvA2fYc,295
|
98
|
+
junifer/data/coordinates/VOIs/meta/ToM_VOIs.txt,sha256=sMSqMCe6p0MGwIWEGkelMWuFH5sfpJ8ONjGlqmRe_Vw,323
|
99
|
+
junifer/data/coordinates/VOIs/meta/VigAtt_VOIs.txt,sha256=EPklcFTcfKnuI08QjYIrE_87BSQLipU_VZYRWuSXhY8,353
|
100
|
+
junifer/data/coordinates/VOIs/meta/WM_VOIs.txt,sha256=6uyH5nsv9i5bKS_aEYCgg3wgE7hjw5DI1gD37lUR5Zg,518
|
101
|
+
junifer/data/coordinates/VOIs/meta/eMDN_VOIs.txt,sha256=p5D4GdBuGl1d5IbXhsuj3XIU6UGMxhzCR-T8Dwfxz30,382
|
102
|
+
junifer/data/coordinates/VOIs/meta/eSAD_VOIs.txt,sha256=DwgDEFSZoAojG5RP6HpSvlRPpXItBzx8ms-1zoSxKRk,268
|
103
|
+
junifer/data/coordinates/VOIs/meta/extDMN_VOIs.txt,sha256=Ogx1QvqZcnXDM3ncF2ha78br8xwQ5wklSjHygtoLpyI,317
|
104
|
+
junifer/data/coordinates/tests/test_coordinates.py,sha256=mjHm90Fgytv47F2vPQHW58jRy6LLbAttizEeg1zjxmA,4196
|
105
|
+
junifer/data/masks/__init__.py,sha256=eEEhHglyVEx1LrqwXjq3cOmjf4sTsgBstRx5-k7zIQU,180
|
106
|
+
junifer/data/masks/__init__.pyi,sha256=lcgr8gmWDPibC4RxnWBXb8DDpIkO73Aax09u6VXiJJI,114
|
107
|
+
junifer/data/masks/_ants_mask_warper.py,sha256=JLK2Jh2AOAiv_NoUGhRoTBEhRFXPRXTDPmQGH9vBSok,5805
|
108
|
+
junifer/data/masks/_fsl_mask_warper.py,sha256=YZOMlRgQ7_4shnXNc_05tmwDk5xHI-1wqle-RdNsJ34,2857
|
109
|
+
junifer/data/masks/_masks.py,sha256=c30OPW01jfiZT4ExM2uZdoRvQ-VeTcXEk3R68EUDoHc,28664
|
110
|
+
junifer/data/masks/tests/test_masks.py,sha256=W0bzRB5Bp-iGO44VtEmaf7BuT-joe_2tQI0lma5NQHA,16090
|
111
|
+
junifer/data/masks/ukb/UKB_15K_GM_template.nii.gz,sha256=jcX1pDOrDsoph8cPMNFVKH5gZYio5G4rJNpOFXm9wJI,946636
|
112
|
+
junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean.nii.gz,sha256=j6EY8EtRnUuRxeKgD65Q6B0GPEPIALKDJEIje1TfnAU,88270
|
113
|
+
junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean_3mm.nii.gz,sha256=crb_y7YO1vjjf2PwbRJUm8KamPK6fx1y0B_l-E3g8FY,12862
|
114
|
+
junifer/data/masks/vickery-patil/GMprob0.2_cortex_3mm_NA_rm.nii.gz,sha256=jfMe_4H9XEnArYms5bSQbqS2V1_HbLHTfI5amQa_Pes,8700
|
115
|
+
junifer/data/parcellations/__init__.py,sha256=6-Ysil3NyZ69V6rWx4RO15_d-iDKizfbHuxSjsHNt24,188
|
116
|
+
junifer/data/parcellations/__init__.pyi,sha256=lhBHTbMDizzqUqVHrx2eyfPFodrTBgMFeTgxfESSkQ8,140
|
117
|
+
junifer/data/parcellations/_ants_parcellation_warper.py,sha256=YUCJC0_wutGw7j_n9JRU3LCwm9Ttg5PIlJUgqejfRhs,5806
|
118
|
+
junifer/data/parcellations/_fsl_parcellation_warper.py,sha256=JfJ022flg5OR48P4OAALVHHQgTVxdMBXT-fAqBl3nUM,2679
|
119
|
+
junifer/data/parcellations/_parcellations.py,sha256=meMSrOMQpY0wCyoOdIVsJcZb3uRLi4vqtDehOvXOyic,48567
|
120
|
+
junifer/data/parcellations/tests/test_parcellations.py,sha256=Pf7klYabWikrvanYPlukq2GcVyFXDc_IVB2TgN_BU9c,36027
|
121
|
+
junifer/data/tests/test_data_utils.py,sha256=136iGPjGecCxyqgUwU8VZMHoE6imcYJ0WNC32PDGK4g,1063
|
122
|
+
junifer/data/tests/test_template_spaces.py,sha256=ZEicEcLqOJ-NpuBZ5SYh4yZ0xZRkhYHnYXiC_YSxjrY,3219
|
123
|
+
junifer/datagrabber/__init__.py,sha256=EHIK-lbjuvkt0V8ypFvLSt85OAAXSkaxBmVlCbNNz8M,323
|
124
|
+
junifer/datagrabber/__init__.pyi,sha256=zOQE4TaCKXBTHnNqgmECtsszWIOHYiQ1CUEeXXFU9F4,832
|
125
|
+
junifer/datagrabber/base.py,sha256=Llr5bHyHovkySI-bzxoQ1TklEF6WOaNRN9D_srqQvYM,6661
|
126
|
+
junifer/datagrabber/datalad_base.py,sha256=52T2DbqDGOxiKSESBESzElrVJ3WihLWrrGlQewSvYOs,12616
|
127
|
+
junifer/datagrabber/dmcc13_benchmark.py,sha256=VMyiwvkr4qSvzBICSksPPKOI2w_WVo06H89Url-hrNs,12819
|
128
|
+
junifer/datagrabber/multiple.py,sha256=4tCOzojs3hoG7daHJJ7HUsx15atWR5nTmyP0S0__aig,6666
|
129
|
+
junifer/datagrabber/pattern.py,sha256=hZxXc59qFGiH710aZkcVgt-JcvVjuR-EMmQ1_QFAoHM,18724
|
130
|
+
junifer/datagrabber/pattern_datalad.py,sha256=QPWXIToYHDU4mvm9lz_hy8BjdqqoCXiGiJKCcATrT-w,4568
|
131
|
+
junifer/datagrabber/pattern_validation_mixin.py,sha256=6IlL5EMbr-XEtiiXs_buD3DJkujjs335BmAgAiWGZ3M,19369
|
132
|
+
junifer/datagrabber/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
133
|
+
junifer/datagrabber/aomic/__init__.py,sha256=ATxzXq9NBPmWowTMuL77zqrmIbbnk0Wd1iXtXCP3XDg,266
|
134
|
+
junifer/datagrabber/aomic/__init__.pyi,sha256=Rp6C075fZDdKY8VIq508_g4NhVj8bWzR6zb9yln761Q,189
|
135
|
+
junifer/datagrabber/aomic/id1000.py,sha256=GNURDZUBqystS2fn9COtIJkDfUVkwsS2uBuVcZQArqc,7931
|
136
|
+
junifer/datagrabber/aomic/piop1.py,sha256=johUxDm4rS0QOH9JwotxzVYOWeTrVAdfXuHnkE-o7TI,10329
|
137
|
+
junifer/datagrabber/aomic/piop2.py,sha256=JxZqX6i_Jrj3evcxnblSdmWqS2bV5XxoIGhAUoSs8o4,9990
|
138
|
+
junifer/datagrabber/aomic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
139
|
+
junifer/datagrabber/aomic/tests/test_id1000.py,sha256=N8jnL5bERP1N_DqNsbH_QeO-aQy8kBym1LihBrAYCsA,3708
|
140
|
+
junifer/datagrabber/aomic/tests/test_piop1.py,sha256=8-vdcx2X4QraJV8PAaVwHsoul3kMu1QpLKR9naPMwiQ,5798
|
141
|
+
junifer/datagrabber/aomic/tests/test_piop2.py,sha256=vGd43XzcqNXRy_usAJF803S_P-MwcyLHpOz7WA04EN0,5096
|
142
|
+
junifer/datagrabber/hcp1200/__init__.py,sha256=2CUYsdWu3RbOdHWME_peYNHEqKUkiq_W3Aw-aczbFdY,214
|
143
|
+
junifer/datagrabber/hcp1200/__init__.pyi,sha256=2ttZanYSzCsB195_xfXUyztPsVIF02ARM-sjlNK3Wdg,114
|
144
|
+
junifer/datagrabber/hcp1200/datalad_hcp1200.py,sha256=49kWPrjLnmUKzJNYPbV9SD0g5KkkCLXlVVpkYRxwkow,2457
|
145
|
+
junifer/datagrabber/hcp1200/hcp1200.py,sha256=L_JTY0RYQ_Wst2La5EaGVDbya7IfSkTVkK92PGGsAzI,6489
|
146
|
+
junifer/datagrabber/hcp1200/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
147
|
+
junifer/datagrabber/hcp1200/tests/test_hcp1200.py,sha256=HeXlD6wjvDq0EyqlB_nPqfXSIhAzALYAYjSCAjNOGGg,10972
|
148
|
+
junifer/datagrabber/tests/test_base.py,sha256=fZdVhNhvfht9lpTHrAUf5E6mAfNNUP7OTQ5KLaBQ1gI,3506
|
149
|
+
junifer/datagrabber/tests/test_datalad_base.py,sha256=nPF_N2Q09tgPmd5TD0dI9KU8G8HHLmydFa3agamijI8,16790
|
150
|
+
junifer/datagrabber/tests/test_dmcc13_benchmark.py,sha256=QSdYAAwAj1DoE1oLhoraIc4lAgUgIaJyrtcOs_witzM,9914
|
151
|
+
junifer/datagrabber/tests/test_multiple.py,sha256=tZBQhlEiSE1PeQ5E3TtuVgsHENquna9t39p54AJ-O5w,9963
|
152
|
+
junifer/datagrabber/tests/test_pattern.py,sha256=H55jYRPfT3rMsoIQOAnWJgw3nGrkU7m2xFa3-ed6NQE,9527
|
153
|
+
junifer/datagrabber/tests/test_pattern_datalad.py,sha256=HJ3dQ3XSlMZ3UT1w2b2xpdPqvfmNxRWmla9zhRejWYI,6483
|
154
|
+
junifer/datagrabber/tests/test_pattern_validation_mixin.py,sha256=KU3xha3Mo7IX_5Tp4RL5awvEzZrX43OmrRFjeqMYVgk,7498
|
155
|
+
junifer/datareader/__init__.py,sha256=CDWjL4PQthskxWX5d0ASro6YIfTT1Tb7ZmyDllWWZso,318
|
156
|
+
junifer/datareader/__init__.pyi,sha256=VOqhh-C3-eqapHVR7-F9Ulc_6iyHTb35XLoGb2DCRaA,72
|
157
|
+
junifer/datareader/default.py,sha256=q8aXHlBzLtRtgM2z3JWIsB-daSZncr33mliZlV5RzdM,6733
|
158
|
+
junifer/datareader/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
159
|
+
junifer/datareader/tests/test_default_reader.py,sha256=9dPZSkba1YQjFsA0XwdUbx5sq8DVIEZoy_WfMAcvRus,5220
|
160
|
+
junifer/external/__init__.py,sha256=CBB7eQul2hf-WWwT_PYFV1MS9KkXlZBO7oQWWVLgB_I,110
|
161
|
+
junifer/external/BrainPrint/brainprint/__init__.py,sha256=Q7EQjLww8j2LbxCySqYLtPK5giHEAWQ2Ae_wbcL3OY4,222
|
162
|
+
junifer/external/BrainPrint/brainprint/_version.py,sha256=r5UsrV3x19TmOEVjh4xFs05U02B9phChpQuVsNRawgc,45
|
163
|
+
junifer/external/BrainPrint/brainprint/asymmetry.py,sha256=jJLLq4KgaDWKplG_iYDbp2cRZDMbU8tYI3UHZY0UkPU,2997
|
164
|
+
junifer/external/BrainPrint/brainprint/brainprint.py,sha256=7RhvB_zMUzTgFywD6ny7SkMj-POV4SsiCUkfUG-qYeo,14470
|
165
|
+
junifer/external/BrainPrint/brainprint/surfaces.py,sha256=9viP_rK8-uLKQlXHqt_rGljjwnhq4ahOaRcGPy8vqGE,8051
|
166
|
+
junifer/external/BrainPrint/brainprint/utils/__init__.py,sha256=71RI91jS3LTWno-1YnDvzXMaI8Ma3ghoGmtlCkKMTWk,24
|
167
|
+
junifer/external/BrainPrint/brainprint/utils/_config.py,sha256=Y0fTctFt785--1wz9VbqSgIpz4kE3ptLKII9mP4jfz8,3619
|
168
|
+
junifer/external/BrainPrint/brainprint/utils/utils.py,sha256=l9UeJJTs1awPee6Pe-RDuT67OSan3VfYuLaELeaJCzw,5420
|
169
|
+
junifer/external/h5io/h5io/__init__.py,sha256=LG7ru_Rt3EOE2H4PGYfBhC12Iax3yeTquZkd8TICiKk,469
|
170
|
+
junifer/external/h5io/h5io/_h5io.py,sha256=8dWZDYegoPcBkH_fHPdl0eXNWTaRdk9hfIQo8Mcegzo,28748
|
171
|
+
junifer/external/h5io/h5io/_version.py,sha256=mFY0GwwuN-a3M8w93_mskS6GZIvv9SNdjLfJaWNsm-I,22
|
172
|
+
junifer/external/h5io/h5io/chunked_array.py,sha256=K1HWf7R2Jc7gCzBqAoBjx0ZnMmUhTe3iAO6RF6PdUO4,3338
|
173
|
+
junifer/external/h5io/h5io/chunked_list.py,sha256=1Y5BbuWzurJlEFQzJNuDdC3fNZ39ENEMba99X_4VeSM,1952
|
174
|
+
junifer/external/nilearn/__init__.py,sha256=pvDmJMwOBki2oaEw-bsniMQ9UXvzecwu6EwJvbVxD50,210
|
175
|
+
junifer/external/nilearn/__init__.pyi,sha256=bcCz7O02UameBxbtPjhUal-Z9rI01pv3iktPs_Nq7Ts,208
|
176
|
+
junifer/external/nilearn/junifer_connectivity_measure.py,sha256=R868Z6ltm2OiMgEVEBBtqTTtWkwhU5O7yhNSQDYudDA,17316
|
177
|
+
junifer/external/nilearn/junifer_nifti_spheres_masker.py,sha256=1CqtGFpfgVR2sK_pDYsBlgAEg-fIG5CkKzXzTTXG7EY,16533
|
178
|
+
junifer/external/nilearn/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
179
|
+
junifer/external/nilearn/tests/test_junifer_connectivity_measure.py,sha256=wOk8BOK_MZWJ0cdvN1lBRAVf8CHIlOi2A3-ZRqG894k,33928
|
180
|
+
junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py,sha256=9UvBAVO-uo0nMIHYfAQ85kJMrwpBxpVRsN1-mHLk7ik,12244
|
181
|
+
junifer/markers/__init__.py,sha256=wHAxljlZppxgXimSJw21mp9oUYYyaID4LYfeBolva30,310
|
182
|
+
junifer/markers/__init__.pyi,sha256=9a72D9k6esTzLvmvULXHOeaQtIchjtN7VELpCeaddsM,957
|
183
|
+
junifer/markers/base.py,sha256=e82fOcZW9KJsMn_N1d85dAE1ezzs8UnQm2SKfoCzjZk,8281
|
184
|
+
junifer/markers/brainprint.py,sha256=XGYOhO91pZn-9YNbeGtMgvi9531-EP_Zu0jOanHnx2M,15144
|
185
|
+
junifer/markers/ets_rss.py,sha256=LRw-94X4Gyyc4dtZXva2ZqK3x9oIaLfweSEPXBZh5AA,4292
|
186
|
+
junifer/markers/parcel_aggregation.py,sha256=7z24gTk38lHZN2Lp6VkePICSz3-boKVv5Dz_yOXZ95g,8430
|
187
|
+
junifer/markers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
|
+
junifer/markers/sphere_aggregation.py,sha256=wS2l2EqpcDedQkgEBHRMfzrVbCw_460VZmxTfx24VoQ,8008
|
189
|
+
junifer/markers/utils.py,sha256=DDaxMJVQgJ-cvbZjA5abIO9hh3dTHlZ7jdYrEFV_ack,3820
|
190
|
+
junifer/markers/complexity/__init__.py,sha256=6ZoTQy7hU_vnH65VlJbi61VfPAdg-RpuV84aXhzr8j0,552
|
191
|
+
junifer/markers/complexity/__init__.pyi,sha256=I2IbSuKnUEf03Yunv884ASBxKjQ9_fenACccjaxTkyc,495
|
192
|
+
junifer/markers/complexity/complexity_base.py,sha256=5zUzSEwwLLkIs-NICu7PuY4YykTthzCgj4KlJhtRkqc,4190
|
193
|
+
junifer/markers/complexity/hurst_exponent.py,sha256=XX3CA5Kd4wCA8fle2d1m39tKBkO5JlLCb3B_7gEAQEU,4642
|
194
|
+
junifer/markers/complexity/multiscale_entropy_auc.py,sha256=yrvcm_ChLuEbeanzQGhrWTm2z9ena_GDBdgnBl5F2t8,4873
|
195
|
+
junifer/markers/complexity/perm_entropy.py,sha256=TyiFz0dv5HBIitCSKIFwP9WeisPHnkjgwVHW_v_3c64,4391
|
196
|
+
junifer/markers/complexity/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
197
|
+
junifer/markers/complexity/range_entropy.py,sha256=4q23tK4T4JCxJsmuNeUAxJ2Eso21zQdlgshrWDK1hJA,4522
|
198
|
+
junifer/markers/complexity/range_entropy_auc.py,sha256=0jFCiVhfamK4PaXceEJNbiIOepC_CsjHz-BMZYJHlSE,5005
|
199
|
+
junifer/markers/complexity/sample_entropy.py,sha256=5hcd8YYHpB5-9he5O_7yq7bI-2KNqzIIdAdc7b6d-jU,4473
|
200
|
+
junifer/markers/complexity/weighted_perm_entropy.py,sha256=eNDPLICRcggYSKEsYw4i96-qPjkhb2qhNisweWhOeiA,4525
|
201
|
+
junifer/markers/complexity/tests/test_complexity_base.py,sha256=5-JqcADqDx-wDvbCE2Eplw4TUe7q_s9TDcxjLC1j6_Q,439
|
202
|
+
junifer/markers/complexity/tests/test_hurst_exponent.py,sha256=HmAK3-k5IugZ8RCgETeqzF3zWStC7rWKBDQqWZ7WYoU,2241
|
203
|
+
junifer/markers/complexity/tests/test_multiscale_entropy_auc.py,sha256=M-BmO-gQDlf16tJSdPZ1lsFxefY5Tz0ai0OlpDQvNn4,2312
|
204
|
+
junifer/markers/complexity/tests/test_perm_entropy.py,sha256=dXnZZErUmykn0C-P1sEH3hBJVRmDe37frcE2o2cRhuE,2229
|
205
|
+
junifer/markers/complexity/tests/test_range_entropy.py,sha256=oUC9ccLJuYsHf2XDIp3qpjTxvr802v71kzkpkBGFCaQ,2232
|
206
|
+
junifer/markers/complexity/tests/test_range_entropy_auc.py,sha256=k_FOKL_doreEqDuj8LVSY_IyV7hwoU26bQGEqHS-0j4,2268
|
207
|
+
junifer/markers/complexity/tests/test_sample_entropy.py,sha256=4lPQvhAEkp_GW3Q74lrJVj2j9t7l20EPhIFv3c-wJ1E,2240
|
208
|
+
junifer/markers/complexity/tests/test_weighted_perm_entropy.py,sha256=ogWOwmD224FtZhFXaxx-lmk4rvJ_OuNr2zi56Ftfjlg,2303
|
209
|
+
junifer/markers/falff/__init__.py,sha256=qxdx_3FsVrn7h3gtbocK0ZmvqZwPQZGKuVkPm31ejNM,217
|
210
|
+
junifer/markers/falff/__init__.pyi,sha256=X-q2zBjUX0imQ37yN2Cg5gKfDvq8sh_9y2hRH4g5ufY,120
|
211
|
+
junifer/markers/falff/_afni_falff.py,sha256=PYkSOFMyaHoGYDvmBjKLW1ALyWBe7yI36JBqZ71ji2c,4223
|
212
|
+
junifer/markers/falff/_junifer_falff.py,sha256=1PsavcopVjPtfmPZsnNi5ynl2GTfnCx9qjuKDb7YejE,4347
|
213
|
+
junifer/markers/falff/falff_base.py,sha256=WtJTMRn_Vmv9RZaaeLeyZpCsQc8QgB3UqIPWsUI3Lh4,4915
|
214
|
+
junifer/markers/falff/falff_parcels.py,sha256=sSb6QLaJKpL0GCTRWW3RnpOZCoy1f9lDLgJ0I_W_LlM,6017
|
215
|
+
junifer/markers/falff/falff_spheres.py,sha256=GrakJYPB01y9BNBXM8WzWaae0mC-S06txiycvfBGcj0,6656
|
216
|
+
junifer/markers/falff/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
|
+
junifer/markers/falff/tests/test_falff_parcels.py,sha256=Z3n1i8dkYbdXgouUjfIif9yLv5MubBEdrtAA-a6kRcc,4349
|
218
|
+
junifer/markers/falff/tests/test_falff_spheres.py,sha256=PGsxFjMxsH8HxIHVtdcQcX8suFa18ma_12Almknzn88,4503
|
219
|
+
junifer/markers/functional_connectivity/__init__.py,sha256=dGTn69eS7a3rylMQh_wKlO28UmYGjsoDEGu4q5sgQFA,230
|
220
|
+
junifer/markers/functional_connectivity/__init__.pyi,sha256=qfw6WVyE65u-5NZNi0xPa8zZVtkRfFvwyl4jHH2Xl00,539
|
221
|
+
junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py,sha256=uLdVGywmL7qrzloh1YBL4g4tPiamA47MgHF2DQH0JTU,5733
|
222
|
+
junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py,sha256=pMKGRdhjs_KXMonmQxI71v6-w93DFTzgTlrvouY9kIg,4724
|
223
|
+
junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py,sha256=TnwG1uF1PH2mN6n6ZhEvYsn9mEnhKVshRLHuI36kwqI,5393
|
224
|
+
junifer/markers/functional_connectivity/functional_connectivity_base.py,sha256=6M7iVPNSbQ1D0O8-1onCbgsLGWri1egyAIQvo9yfgnI,5676
|
225
|
+
junifer/markers/functional_connectivity/functional_connectivity_parcels.py,sha256=yjXPcpXmleHWlwxNEEL_1EuW_clsjq1qCcnCCLa576c,4192
|
226
|
+
junifer/markers/functional_connectivity/functional_connectivity_spheres.py,sha256=2JczueAU31fh6sW0Ecn8ap2lZhEG19oUvuR7w2mFDuE,4927
|
227
|
+
junifer/markers/functional_connectivity/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
228
|
+
junifer/markers/functional_connectivity/tests/test_crossparcellation_functional_connectivity.py,sha256=CP8ZZoTciMoI9c-VVsLF9mJivyzPB6C4mZE0tlL52pI,3231
|
229
|
+
junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py,sha256=Vf6nfBmtNbKj8KRNoTZ36hSgPDXgU1SXZg6FdduVsl4,2458
|
230
|
+
junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py,sha256=4FeccKHd7Ug7KKMSdlAYoZ3JWtWbomwgQBtOWMkcdvg,2498
|
231
|
+
junifer/markers/functional_connectivity/tests/test_functional_connectivity_base.py,sha256=RmPTrG0uLKb5RgdHXUnH6lon60FxN1JCtr-dsTBaX28,522
|
232
|
+
junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py,sha256=KuNMB-pYYV98aQOE4_9LilHTnfvwdhZSOUi9xAofTKQ,3879
|
233
|
+
junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py,sha256=A9OtFdndiSGOcPHH-QLPh6qoiD03A6KjM_emwxAlPg0,4145
|
234
|
+
junifer/markers/reho/__init__.py,sha256=WZf4A0XaRThjl8SlFOhvTLUfhTHp5koLxZgowsgTSAE,211
|
235
|
+
junifer/markers/reho/__init__.pyi,sha256=_aFb-Ry_EP2OMU6xRL4GlfuDpSl_egHllL-fz7vXjcE,118
|
236
|
+
junifer/markers/reho/_afni_reho.py,sha256=SOWR5y9AYKfw1wj2Z4Wy7ckMUVTmeS378bayvPPVqqo,6225
|
237
|
+
junifer/markers/reho/_junifer_reho.py,sha256=14ObaRa2-0JzcoYLJyhnx4bgPCpTdciDXmrn9-gPv20,9387
|
238
|
+
junifer/markers/reho/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
239
|
+
junifer/markers/reho/reho_base.py,sha256=Q88TbhIM4rQWdeQPLwwxwZ9DrR8l09orD1rdTkSYDtc,4077
|
240
|
+
junifer/markers/reho/reho_parcels.py,sha256=UE1ia3uqbmTcZMc_FI625xVPLxBYvwpfrcvhekopbkI,6392
|
241
|
+
junifer/markers/reho/reho_spheres.py,sha256=FCC2qncC85Kd82hg-MOu4T7NAKEkXHUaCcwC9taau9Y,6996
|
242
|
+
junifer/markers/reho/tests/test_reho_parcels.py,sha256=bRtDi91qRcRYaRqqQjuSU6NuNz-KwLVCoTYo-e5VmsI,4075
|
243
|
+
junifer/markers/reho/tests/test_reho_spheres.py,sha256=VyyQ3hhD6ArFc1BmigmAdePACB1EMQlo1mDr2QKvT2I,3989
|
244
|
+
junifer/markers/temporal_snr/__init__.py,sha256=86hNMyaSfWlWOXZ6m9reSDtMIgUaByOXjcxCvo7LmDw,235
|
245
|
+
junifer/markers/temporal_snr/__init__.pyi,sha256=20FhG9ZkAHQfmJ0r5p6fRMxhK8xrFQeFr0cgTrqu3ik,162
|
246
|
+
junifer/markers/temporal_snr/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
247
|
+
junifer/markers/temporal_snr/temporal_snr_base.py,sha256=ezttUNMqmp0hvbld4Z21jT6n2-jLQyL4Q9bF9qua6Lg,3911
|
248
|
+
junifer/markers/temporal_snr/temporal_snr_parcels.py,sha256=eAw0zipRA4aPcM_iHBIeVROXuVEVWTPET8Tes1WYtGc,3250
|
249
|
+
junifer/markers/temporal_snr/temporal_snr_spheres.py,sha256=5hgknORivjYVrVbtQ_acvg9k_6U42sb3eRMRk5LXOVY,3968
|
250
|
+
junifer/markers/temporal_snr/tests/test_temporal_snr_base.py,sha256=KRln5ibLTJJQ_f3pnioATfwyhK5htGc2o2J7CPcoyfs,426
|
251
|
+
junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py,sha256=JnsLIF0qT4L3JfSIBeHxFsugQ89P9by0CmNwNJiFnZY,2042
|
252
|
+
junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py,sha256=cxYnKreFRauIs3NYaaB1EKeFEHZxPplxOuywWNcUnLg,2175
|
253
|
+
junifer/markers/tests/test_brainprint.py,sha256=fjwGQZk0Or0VUaMxcOr8i_onXRInfspcm3wD_qjqxDs,1588
|
254
|
+
junifer/markers/tests/test_ets_rss.py,sha256=kKjdpn6QlJuE4D-JvFcwp9MlxLYzeS_X_O-egM2d0H0,2618
|
255
|
+
junifer/markers/tests/test_marker_utils.py,sha256=SR3ADWI3uGv4ozYqVu-rMZnJVqP6JnjLBgo6qUm16Wk,1478
|
256
|
+
junifer/markers/tests/test_markers_base.py,sha256=XYe1Z_88h2g1WX6Em4aM8VMyBuCpy5sNHbbpC0I89m4,2979
|
257
|
+
junifer/markers/tests/test_parcel_aggregation.py,sha256=04OqtY_Z-KW4W1jU5K6GeWnLpBYheM1shcH1Jgw_L3k,27798
|
258
|
+
junifer/markers/tests/test_sphere_aggregation.py,sha256=HPaLD6xKdewTt0iANz3nYOD7ZI-g7BqMTiRdV-4sM8M,10669
|
259
|
+
junifer/onthefly/__init__.py,sha256=TA6tPuw54ynDlumb9Ii-2p59hw2rGoCMe1-vQ89JzZ8,238
|
260
|
+
junifer/onthefly/_brainprint.py,sha256=_2WHvLN1Cn9KP-L08Tg49nJ-NdmGfz9cNEaV12pRrww,3765
|
261
|
+
junifer/onthefly/read_transform.py,sha256=5UcksaJvHRMAYeSi3Ub0x6o-_7HtGimub_sUQR_9q0o,4253
|
262
|
+
junifer/onthefly/tests/test_read_transform.py,sha256=D2C3IpXQHdsJSF07v8rEwGntLGXjZOserlRhebJUAVM,4719
|
263
|
+
junifer/pipeline/__init__.py,sha256=rxKQGRwc6_sts1KhVIcVVpuXeiFABf11mQQ2h5jgA3U,194
|
264
|
+
junifer/pipeline/__init__.pyi,sha256=hhcvNcABhtLaUQiZdTjo5sMWC3rtDkwVshL0sxD5JAE,399
|
265
|
+
junifer/pipeline/marker_collection.py,sha256=1Kmf5f0E2MFhDpO9OBui046b_6h1u9U64AdEqrxso-o,5377
|
266
|
+
junifer/pipeline/pipeline_component_registry.py,sha256=TdLXjQcUZstEF9n6IszBYAwLsiyf9SMw5QYb7Pl51MY,9413
|
267
|
+
junifer/pipeline/pipeline_step_mixin.py,sha256=oXfJh27yifHs1V3V_tMPCanRiHX1ggOVIbHTvMzq3cY,7853
|
268
|
+
junifer/pipeline/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
269
|
+
junifer/pipeline/update_meta_mixin.py,sha256=yzGCx8AUbc9mMnWKRu4qaIXTBBSIxtNlGH5zIQIUvzM,1812
|
270
|
+
junifer/pipeline/utils.py,sha256=qS0Xg_43ri-xtLeMJR838Axj9FkQ6s2H4r8CmSD58X8,10285
|
271
|
+
junifer/pipeline/workdir_manager.py,sha256=r5hhizktLat2bN_A-ZGeeBVWmpRUkUCiZeIDxG-9umM,8624
|
272
|
+
junifer/pipeline/tests/test_marker_collection.py,sha256=edBHfmwMTXG_q0ZagApbAbkFNoegi3hVEQiNcBtZOKc,6959
|
273
|
+
junifer/pipeline/tests/test_pipeline_component_registry.py,sha256=mrbz285K_TzSILRn9X-AyzcNXuPRHGBZY6dQiq5_9So,5776
|
274
|
+
junifer/pipeline/tests/test_pipeline_step_mixin.py,sha256=KCdhFdThm9TGkUvhGzQF3zR9SoZ9ont1z8yZELB2TtQ,7752
|
275
|
+
junifer/pipeline/tests/test_update_meta_mixin.py,sha256=po7mWGmXCkZUi201zqgtTm7-A1HKjBgUgqMglMvedqc,1338
|
276
|
+
junifer/pipeline/tests/test_workdir_manager.py,sha256=_rXlGb_PUQJBVgV1PWmwjFvTW971MkEbyDDY9dLfJAY,4051
|
277
|
+
junifer/preprocess/__init__.py,sha256=91D43p254il88g-7sSN64M7HsCvwytYoiTS_GLEr37Y,342
|
278
|
+
junifer/preprocess/__init__.pyi,sha256=EApXtuEZohQZnIeP6k882Y2H5IRiGmhJbVGdN7VCWFc,254
|
279
|
+
junifer/preprocess/base.py,sha256=hARO4Yq9sQ8m2tATeuBmPMbI4BSnwNxLf2prF8Iq_Tk,6662
|
280
|
+
junifer/preprocess/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
281
|
+
junifer/preprocess/confounds/__init__.py,sha256=L3CquKcndFb2b8yVo-XLi-zsNCe8MMKUN41UOVdooWc,270
|
282
|
+
junifer/preprocess/confounds/__init__.pyi,sha256=iC70cqcWNMX4JM42RcUgKb9YX8ciK8oVERdWWjo-13c,102
|
283
|
+
junifer/preprocess/confounds/fmriprep_confound_remover.py,sha256=sWAvo09TY0KD1nFjev7G6t56mJopvdOh3Wp7PvN9yrk,27053
|
284
|
+
junifer/preprocess/confounds/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
285
|
+
junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py,sha256=O_2wOZa7YvPtpEisZ2vWXUAgl6R4h4jAsjU3vfVRsTg,23532
|
286
|
+
junifer/preprocess/smoothing/__init__.py,sha256=7aTwvAG522kA76QQwqxwY5zV_6asyPaaH2uSMTaKQls,216
|
287
|
+
junifer/preprocess/smoothing/__init__.pyi,sha256=5sjw61Eyon9gE_SWoktND9raw6IkgqcT2rtGNhVV9EA,58
|
288
|
+
junifer/preprocess/smoothing/_afni_smoothing.py,sha256=4mdZk9YkA02wZ8rS6sbLnXL_7SIX7M0NwHPLckJgCmI,3325
|
289
|
+
junifer/preprocess/smoothing/_fsl_smoothing.py,sha256=vIj1sUjysujjPErZH2T5G1GrcaZyAkuvzERBgx4SmDU,2856
|
290
|
+
junifer/preprocess/smoothing/_nilearn_smoothing.py,sha256=bWljIiKX0dfIQmRo33Z-6WrCz05nMVAAroYaBsj2B1Q,2685
|
291
|
+
junifer/preprocess/smoothing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
292
|
+
junifer/preprocess/smoothing/smoothing.py,sha256=wdOnPi8XkEqzOQdUNJ0yOm_uWi3H4DnTQhOL8z7dZDs,5281
|
293
|
+
junifer/preprocess/smoothing/tests/test_smoothing.py,sha256=t1j3zEvJk5XLO4fzcb-wQyBMH-xuvR1k6WYm8zriwik,2390
|
294
|
+
junifer/preprocess/tests/test_preprocess_base.py,sha256=-0rpe8QjqYES36H6MHuDs3cv_6upHBdVHnFMgQsmEX4,2571
|
295
|
+
junifer/preprocess/warping/__init__.py,sha256=rzUUP7-6H_nygQ7a7TBZ4_RY7p0ELacosYsWQbSdVZk,214
|
296
|
+
junifer/preprocess/warping/__init__.pyi,sha256=Drbqp8N3uprvXcKSxqdfj90fesz9XYVLgivhPnKAYcc,65
|
297
|
+
junifer/preprocess/warping/_ants_warper.py,sha256=8-YzQmevZ_9vh4QnHDJgsXoEgitDtFV_atOZrVLQNtI,10170
|
298
|
+
junifer/preprocess/warping/_fsl_warper.py,sha256=dH1xd3jTRPREzgdh98Dz_4o2gwdrOgc0h5wbARSSB98,5226
|
299
|
+
junifer/preprocess/warping/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
300
|
+
junifer/preprocess/warping/space_warper.py,sha256=mf7SDu574R3TXNt82fqGl_hcEYx7SjXwz2TcmWObHQA,7706
|
301
|
+
junifer/preprocess/warping/tests/test_space_warper.py,sha256=amFHtt-q7L7v9uL4cOvrmHEbUOGDhmoMHkLnKJ0dF7A,5543
|
302
|
+
junifer/storage/__init__.py,sha256=aPGBFPPsTcZYMdkC_o5HIrzRIIwp-bc5bJDoh_GuQmo,270
|
303
|
+
junifer/storage/__init__.pyi,sha256=MHC-R129z_WuXVQuKBrFu8H1wqmUPAl5ZOQT_WZaXek,292
|
304
|
+
junifer/storage/base.py,sha256=zHvrRK62uzXo7C8FsOghbgcYdRluoO_imOuxgc_kncg,11887
|
305
|
+
junifer/storage/hdf5.py,sha256=P8k2KasLIukJ71piPwF9uU7-PCWmQ46xO1hkPylIeBQ,40309
|
306
|
+
junifer/storage/pandas_base.py,sha256=v3iRuoXJzBChZYkjR4OHJp99NM0BPTpYkw1TAX52Nto,7529
|
307
|
+
junifer/storage/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
308
|
+
junifer/storage/sqlite.py,sha256=QzkKB1pD4qNjrMe0bB7ATHnPgNjteTrP3ULCE_XuwD0,21269
|
309
|
+
junifer/storage/utils.py,sha256=dgSbYjpwzy7dutcsdacd-5ZLR8kIucRcdlXw99aAjFI,9806
|
310
|
+
junifer/storage/tests/test_hdf5.py,sha256=yEh5jw_6i37bch27FXIZmDPCA8vEfc-0TehXp9sYX0Y,34144
|
311
|
+
junifer/storage/tests/test_pandas_base.py,sha256=y_TfUGpuXkj_39yVon3rMDxMeBrZXs58ZW6OSty5LNw,4058
|
312
|
+
junifer/storage/tests/test_sqlite.py,sha256=0TQIcqHPgk67ALsR-98CA73ulDPsR2t9wGXYaem983w,28312
|
313
|
+
junifer/storage/tests/test_storage_base.py,sha256=o2CbklSxaq3XDX8XPf5aG5hiXzpBCmc5XXckCIsLVOo,3201
|
314
|
+
junifer/storage/tests/test_utils.py,sha256=tdQbgA7FOO4_qdCuo2ZiXBeD_-9IKc-CsYDfhA_rCI4,12730
|
315
|
+
junifer/testing/__init__.py,sha256=gqfrX2c7I31VYBmH9hCUERO-61NwubT1cvy1bKM0NqU,249
|
316
|
+
junifer/testing/__init__.pyi,sha256=OFqGc5GCjoD4hPVOYNWvnvvP_RVF-oO-UQR8n9HDVtM,133
|
317
|
+
junifer/testing/datagrabbers.py,sha256=ui2VwArMjx4KUD2Cf8PRJOExvDHfPntuuuhEEwWwTZ4,6571
|
318
|
+
junifer/testing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
319
|
+
junifer/testing/registry.py,sha256=MVO-xlzSH3pAv9ySTqO1R3sNqdnfD1Qh7oA775ZxlXs,688
|
320
|
+
junifer/testing/utils.py,sha256=TEIwdV7etWglXOFQX1O5ZR18GzfYZ0LcRqXuK-JPo8U,591
|
321
|
+
junifer/testing/data/sub-0001_task-anticipation_acq-seq_desc-confounds_regressors.tsv,sha256=iDY1apF5caxnyGqvBYWer5JRKQIfuOwoT-SzzsgL59s,406849
|
322
|
+
junifer/testing/tests/test_oasisvmbtesting_datagrabber.py,sha256=BtfExi4VF-jZsi5A3hHS_EGm2O_bJoXnxWF44Z_4i24,794
|
323
|
+
junifer/testing/tests/test_partlycloudytesting_datagrabber.py,sha256=ggU8XQQ6F0HSCh9VkbNGoaZM6CUxKXKlcuf_kGkrRF4,1297
|
324
|
+
junifer/testing/tests/test_spmauditory_datagrabber.py,sha256=1G1emk-Ze59HiNLaYsyIz5O1YGW9darcqlzvhE-J_Mc,919
|
325
|
+
junifer/testing/tests/test_testing_registry.py,sha256=MK4a_q4MHieCvYhnhuPm_dH76lX0yyDOZP8tZ30aC7Y,508
|
326
|
+
junifer/tests/test_main.py,sha256=GMff7jlisGM9_FsiUwWDte43j-KQJGFRYZpwRRqTkd8,373
|
327
|
+
junifer/tests/test_stats.py,sha256=NljoGFu2JOPADbi9W0WeUHwpf8nZSdOkcCgCv-Z1fY4,4149
|
328
|
+
junifer/typing/__init__.py,sha256=e0UbuxozXUIxz8h8pLokMOxZV629Q1lnA7vvgm95WF0,215
|
329
|
+
junifer/typing/__init__.pyi,sha256=GRGfrnReP1ROtQM6eT0EpFjmE-v-pCJuBiQZMXCVTsE,594
|
330
|
+
junifer/typing/_typing.py,sha256=2D7ibO5OB3yTgpjI1IV_QorZ6b-ZEQVPQE-z2qxis9I,1663
|
331
|
+
junifer/utils/__init__.py,sha256=I3tYaePAD_ZEU-36-TJ_OYeqW_aMmi5MZ3jmqie6RfU,260
|
332
|
+
junifer/utils/__init__.pyi,sha256=CMb4rq1VcQ00IRuiBFfAWu07Vb-vA4qtVLAoY0ll-bA,422
|
333
|
+
junifer/utils/_config.py,sha256=cfxyv1bfklID2atQseu6y3J7mZrCXPwnGEfBSImG9CM,3054
|
334
|
+
junifer/utils/_yaml.py,sha256=jpTroTI2rajECj0RXGCXaOwLpad858WzI7Jg-eXJ_jU,336
|
335
|
+
junifer/utils/fs.py,sha256=M3CKBLh4gPS6s9giyopgb1hHMXzLb6k3cung2wHVBjs,492
|
336
|
+
junifer/utils/helpers.py,sha256=QcfdHPhrYKTf6o5eSOIvDxqmIAxlp9SqmCEdR10jbIY,2033
|
337
|
+
junifer/utils/logging.py,sha256=8rWEtZPohugiB7niF9yvybi79w3Sj5xcaImJhsuXxks,12998
|
338
|
+
junifer/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
339
|
+
junifer/utils/singleton.py,sha256=iATJMdzsSVE9akTI4DDycubhAl98t0EdO17gwgOjAYA,1189
|
340
|
+
junifer/utils/tests/test_config.py,sha256=7ltIXuwb_W4Mv_1dxQWyiyM10XgUAfsWKV6D_iE-XU0,1540
|
341
|
+
junifer/utils/tests/test_fs.py,sha256=WQS7cKlKEZ742CIuiOYYpueeAhY9PqlastfDVpVVtvE,923
|
342
|
+
junifer/utils/tests/test_helpers.py,sha256=k5qqfxK8dFyuewTJyR1Qn6-nFaYNuVr0ysc18bfPjyU,929
|
343
|
+
junifer/utils/tests/test_logging.py,sha256=duO4ou365hxwa_kwihFtKPLaL6LC5XHiyhOijrrngbA,8009
|
344
|
+
junifer-0.0.6.dist-info/licenses/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
|
345
|
+
junifer-0.0.6.dist-info/licenses/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
|
346
|
+
junifer-0.0.6.dist-info/METADATA,sha256=GP9kTUVbtkYPaXRrxPhCG6dW6c61Old3HMvzzwkDYWA,8435
|
347
|
+
junifer-0.0.6.dist-info/WHEEL,sha256=DK49LOLCYiurdXXOXwGJm6U4DkHkg4lcxjhqwRa0CP4,91
|
348
|
+
junifer-0.0.6.dist-info/entry_points.txt,sha256=6O8ru0BP-SP7YMUZiizFNoaZ2HvJpadO2G7nKk4PwjI,48
|
349
|
+
junifer-0.0.6.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
|
350
|
+
junifer-0.0.6.dist-info/RECORD,,
|
junifer/api/parser.py
DELETED
@@ -1,118 +0,0 @@
|
|
1
|
-
"""Provide functions for parser."""
|
2
|
-
|
3
|
-
# Authors: Federico Raimondo <f.raimondo@fz-juelich.de>
|
4
|
-
# Synchon Mandal <s.mandal@fz-juelich.de>
|
5
|
-
# License: AGPL
|
6
|
-
|
7
|
-
import importlib
|
8
|
-
import importlib.util
|
9
|
-
import sys
|
10
|
-
from pathlib import Path
|
11
|
-
from typing import Dict, Union
|
12
|
-
|
13
|
-
from ..utils.logging import logger, raise_error
|
14
|
-
from .utils import yaml
|
15
|
-
|
16
|
-
|
17
|
-
__all__ = ["parse_yaml"]
|
18
|
-
|
19
|
-
|
20
|
-
def parse_yaml(filepath: Union[str, Path]) -> Dict:
|
21
|
-
"""Parse YAML.
|
22
|
-
|
23
|
-
Parameters
|
24
|
-
----------
|
25
|
-
filepath : str or pathlib.Path
|
26
|
-
The filepath to read from.
|
27
|
-
|
28
|
-
Returns
|
29
|
-
-------
|
30
|
-
dict
|
31
|
-
The contents represented as dictionary.
|
32
|
-
|
33
|
-
"""
|
34
|
-
# Convert str to Path
|
35
|
-
if not isinstance(filepath, Path):
|
36
|
-
filepath = Path(filepath)
|
37
|
-
|
38
|
-
logger.info(f"Parsing yaml file: {filepath.absolute()!s}")
|
39
|
-
# Filepath existence check
|
40
|
-
if not filepath.exists():
|
41
|
-
raise_error(f"File does not exist: {filepath.absolute()!s}")
|
42
|
-
# Filepath reading
|
43
|
-
contents = yaml.load(filepath)
|
44
|
-
if "elements" in contents:
|
45
|
-
if contents["elements"] is None:
|
46
|
-
raise_error(
|
47
|
-
"The elements key was defined but its content is empty. "
|
48
|
-
"Please define the elements to operate on or remove the key."
|
49
|
-
)
|
50
|
-
# load modules
|
51
|
-
if "with" in contents:
|
52
|
-
to_load = contents["with"]
|
53
|
-
# Convert load modules to list
|
54
|
-
if not isinstance(to_load, list):
|
55
|
-
to_load = [to_load]
|
56
|
-
# Initialize list to have absolute paths for custom modules
|
57
|
-
final_to_load = []
|
58
|
-
for t_module in to_load:
|
59
|
-
if t_module.endswith(".py"):
|
60
|
-
logger.debug(f"Importing file: {t_module}")
|
61
|
-
# This resolves both absolute and relative paths
|
62
|
-
file_path = filepath.parent / t_module
|
63
|
-
if not file_path.exists():
|
64
|
-
raise_error(
|
65
|
-
f"File in 'with' section does not exist: {file_path}"
|
66
|
-
)
|
67
|
-
spec = importlib.util.spec_from_file_location(
|
68
|
-
t_module, file_path
|
69
|
-
)
|
70
|
-
module = importlib.util.module_from_spec(spec) # type: ignore
|
71
|
-
sys.modules[t_module] = module
|
72
|
-
spec.loader.exec_module(module) # type: ignore
|
73
|
-
# Add absolute path to final list
|
74
|
-
final_to_load.append(str(file_path.resolve()))
|
75
|
-
else:
|
76
|
-
logger.info(f"Importing module: {t_module}")
|
77
|
-
importlib.import_module(t_module)
|
78
|
-
# Add module to final list
|
79
|
-
final_to_load.append(t_module)
|
80
|
-
|
81
|
-
# Replace modules to be loaded so that custom modules will take the
|
82
|
-
# absolute path. This was not the case as found in #224. Similar thing
|
83
|
-
# is done with the storage URI below.
|
84
|
-
contents["with"] = final_to_load
|
85
|
-
|
86
|
-
# Compute path for the URI parameter in storage files that are relative
|
87
|
-
# This is a tricky thing that appeared in #127. The problem is that
|
88
|
-
# the path in the URI parameter is relative to YAML file, not to the
|
89
|
-
# current working directory. If we leave it as is in the contents
|
90
|
-
# dict, then it will be used later in the ``build`` function as is,
|
91
|
-
# which will be computed relative to the current working directory.
|
92
|
-
# The solution is to compute the absolute path and replace the
|
93
|
-
# relative path in the contents dict with the absolute path.
|
94
|
-
|
95
|
-
# Check if the storage file is defined
|
96
|
-
if "storage" in contents:
|
97
|
-
if "uri" in contents["storage"]:
|
98
|
-
# Check if the storage file is relative
|
99
|
-
uri_path = Path(contents["storage"]["uri"])
|
100
|
-
if not uri_path.is_absolute():
|
101
|
-
# Compute the absolute path
|
102
|
-
contents["storage"]["uri"] = str(
|
103
|
-
(filepath.parent / uri_path).resolve()
|
104
|
-
)
|
105
|
-
|
106
|
-
# Allow relative path if queue env kind is venv; same motivation as above
|
107
|
-
if "queue" in contents:
|
108
|
-
if "env" in contents["queue"]:
|
109
|
-
if "venv" == contents["queue"]["env"]["kind"]:
|
110
|
-
# Check if the env name is relative
|
111
|
-
venv_path = Path(contents["queue"]["env"]["name"])
|
112
|
-
if not venv_path.is_absolute():
|
113
|
-
# Compute the absolute path
|
114
|
-
contents["queue"]["env"]["name"] = str(
|
115
|
-
(filepath.parent / venv_path).resolve()
|
116
|
-
)
|
117
|
-
|
118
|
-
return contents
|