junifer 0.0.6.dev227__py3-none-any.whl → 0.0.6.dev252__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 +2 -2
- junifer/api/decorators.py +1 -2
- junifer/api/functions.py +18 -18
- junifer/api/queue_context/gnu_parallel_local_adapter.py +4 -4
- junifer/api/queue_context/htcondor_adapter.py +4 -4
- 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 +32 -32
- junifer/cli/cli.py +3 -3
- junifer/cli/parser.py +4 -4
- junifer/cli/tests/test_cli.py +5 -5
- junifer/cli/utils.py +5 -6
- junifer/configs/juseless/datagrabbers/ixi_vbm.py +2 -2
- junifer/configs/juseless/datagrabbers/tests/test_ucla.py +2 -2
- junifer/configs/juseless/datagrabbers/ucla.py +4 -4
- junifer/data/_dispatch.py +11 -14
- junifer/data/coordinates/_ants_coordinates_warper.py +6 -8
- junifer/data/coordinates/_coordinates.py +34 -21
- junifer/data/coordinates/_fsl_coordinates_warper.py +6 -8
- junifer/data/masks/_ants_mask_warper.py +18 -11
- junifer/data/masks/_fsl_mask_warper.py +6 -8
- junifer/data/masks/_masks.py +27 -34
- junifer/data/masks/tests/test_masks.py +4 -4
- junifer/data/parcellations/_ants_parcellation_warper.py +18 -11
- junifer/data/parcellations/_fsl_parcellation_warper.py +6 -8
- junifer/data/parcellations/_parcellations.py +39 -43
- junifer/data/parcellations/tests/test_parcellations.py +1 -2
- junifer/data/pipeline_data_registry_base.py +3 -2
- junifer/data/template_spaces.py +3 -3
- junifer/data/tests/test_data_utils.py +1 -2
- junifer/data/utils.py +69 -4
- junifer/datagrabber/aomic/id1000.py +24 -11
- junifer/datagrabber/aomic/piop1.py +27 -14
- junifer/datagrabber/aomic/piop2.py +27 -14
- junifer/datagrabber/aomic/tests/test_id1000.py +3 -3
- junifer/datagrabber/aomic/tests/test_piop1.py +4 -4
- junifer/datagrabber/aomic/tests/test_piop2.py +4 -4
- junifer/datagrabber/base.py +18 -12
- junifer/datagrabber/datalad_base.py +18 -11
- junifer/datagrabber/dmcc13_benchmark.py +31 -18
- junifer/datagrabber/hcp1200/datalad_hcp1200.py +3 -3
- junifer/datagrabber/hcp1200/hcp1200.py +26 -15
- junifer/datagrabber/hcp1200/tests/test_hcp1200.py +2 -1
- junifer/datagrabber/multiple.py +7 -7
- junifer/datagrabber/pattern.py +75 -45
- junifer/datagrabber/pattern_validation_mixin.py +204 -94
- junifer/datagrabber/tests/test_datalad_base.py +7 -8
- junifer/datagrabber/tests/test_dmcc13_benchmark.py +28 -11
- junifer/datagrabber/tests/test_pattern_validation_mixin.py +6 -6
- junifer/datareader/default.py +6 -6
- junifer/external/nilearn/junifer_connectivity_measure.py +2 -2
- junifer/external/nilearn/junifer_nifti_spheres_masker.py +4 -4
- junifer/external/nilearn/tests/test_junifer_connectivity_measure.py +15 -15
- junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py +2 -3
- junifer/markers/base.py +8 -8
- junifer/markers/brainprint.py +7 -9
- junifer/markers/complexity/complexity_base.py +6 -8
- junifer/markers/complexity/hurst_exponent.py +5 -5
- junifer/markers/complexity/multiscale_entropy_auc.py +5 -5
- junifer/markers/complexity/perm_entropy.py +5 -5
- junifer/markers/complexity/range_entropy.py +5 -5
- junifer/markers/complexity/range_entropy_auc.py +5 -5
- junifer/markers/complexity/sample_entropy.py +5 -5
- junifer/markers/complexity/weighted_perm_entropy.py +5 -5
- junifer/markers/ets_rss.py +7 -7
- junifer/markers/falff/_afni_falff.py +1 -2
- junifer/markers/falff/_junifer_falff.py +1 -2
- junifer/markers/falff/falff_base.py +2 -4
- junifer/markers/falff/falff_parcels.py +7 -7
- junifer/markers/falff/falff_spheres.py +6 -6
- junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py +6 -6
- junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py +7 -7
- junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py +6 -6
- junifer/markers/functional_connectivity/functional_connectivity_base.py +10 -10
- junifer/markers/functional_connectivity/functional_connectivity_parcels.py +7 -7
- junifer/markers/functional_connectivity/functional_connectivity_spheres.py +6 -6
- 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 +3 -3
- junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py +3 -3
- junifer/markers/parcel_aggregation.py +8 -8
- junifer/markers/reho/_afni_reho.py +1 -2
- junifer/markers/reho/_junifer_reho.py +1 -2
- junifer/markers/reho/reho_base.py +2 -4
- junifer/markers/reho/reho_parcels.py +8 -8
- junifer/markers/reho/reho_spheres.py +7 -7
- junifer/markers/sphere_aggregation.py +8 -8
- junifer/markers/temporal_snr/temporal_snr_base.py +8 -8
- junifer/markers/temporal_snr/temporal_snr_parcels.py +6 -6
- junifer/markers/temporal_snr/temporal_snr_spheres.py +5 -5
- junifer/markers/utils.py +3 -3
- junifer/onthefly/_brainprint.py +2 -2
- junifer/onthefly/read_transform.py +3 -3
- junifer/pipeline/marker_collection.py +4 -4
- junifer/pipeline/pipeline_component_registry.py +5 -4
- junifer/pipeline/pipeline_step_mixin.py +15 -11
- junifer/pipeline/tests/test_pipeline_component_registry.py +2 -3
- junifer/pipeline/tests/test_pipeline_step_mixin.py +19 -19
- junifer/pipeline/tests/test_update_meta_mixin.py +4 -4
- junifer/pipeline/update_meta_mixin.py +21 -17
- junifer/pipeline/utils.py +5 -5
- junifer/preprocess/base.py +10 -10
- junifer/preprocess/confounds/fmriprep_confound_remover.py +11 -14
- junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py +1 -2
- junifer/preprocess/smoothing/smoothing.py +7 -7
- junifer/preprocess/warping/_ants_warper.py +26 -6
- junifer/preprocess/warping/_fsl_warper.py +22 -7
- junifer/preprocess/warping/space_warper.py +37 -10
- junifer/preprocess/warping/tests/test_space_warper.py +3 -4
- junifer/stats.py +4 -4
- junifer/storage/base.py +14 -13
- junifer/storage/hdf5.py +21 -20
- junifer/storage/pandas_base.py +12 -11
- junifer/storage/sqlite.py +11 -11
- junifer/storage/tests/test_hdf5.py +1 -2
- junifer/storage/tests/test_sqlite.py +2 -2
- junifer/storage/tests/test_utils.py +8 -7
- junifer/storage/utils.py +7 -7
- junifer/testing/datagrabbers.py +9 -10
- junifer/tests/test_stats.py +2 -2
- junifer/typing/_typing.py +6 -9
- junifer/utils/helpers.py +2 -3
- junifer/utils/logging.py +5 -5
- junifer/utils/singleton.py +3 -3
- {junifer-0.0.6.dev227.dist-info → junifer-0.0.6.dev252.dist-info}/METADATA +2 -2
- {junifer-0.0.6.dev227.dist-info → junifer-0.0.6.dev252.dist-info}/RECORD +131 -131
- {junifer-0.0.6.dev227.dist-info → junifer-0.0.6.dev252.dist-info}/WHEEL +1 -1
- {junifer-0.0.6.dev227.dist-info → junifer-0.0.6.dev252.dist-info}/AUTHORS.rst +0 -0
- {junifer-0.0.6.dev227.dist-info → junifer-0.0.6.dev252.dist-info}/LICENSE.md +0 -0
- {junifer-0.0.6.dev227.dist-info → junifer-0.0.6.dev252.dist-info}/entry_points.txt +0 -0
- {junifer-0.0.6.dev227.dist-info → junifer-0.0.6.dev252.dist-info}/top_level.txt +0 -0
@@ -1,22 +1,22 @@
|
|
1
1
|
junifer/__init__.py,sha256=2McgH1yNue6Z1V26-uN_mfMjbTcx4CLhym-DMBl5xA4,266
|
2
2
|
junifer/__init__.pyi,sha256=SsTvgq2Dod6UqJN96GH1lCphH6hJQQurEJHGNhHjGUI,508
|
3
|
-
junifer/_version.py,sha256=
|
3
|
+
junifer/_version.py,sha256=S9qDvnNyOO9a_to9Vo0ycmZ4Gm9Jem18xQI-OFVf2kY,428
|
4
4
|
junifer/conftest.py,sha256=PWYkkRDU8ly2lYwv7VBKMHje4et6HX7Yey3Md_I2KbA,613
|
5
5
|
junifer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
junifer/stats.py,sha256=
|
6
|
+
junifer/stats.py,sha256=pQCy9u4q3Wp0kMFmS0BVIfU8UCKsRqrNbyprhtlNUOg,6225
|
7
7
|
junifer/api/__init__.py,sha256=aAXW_KAEGQ8aAP5Eni2G1R4MWBF7UgjKOgM6akLuJco,252
|
8
8
|
junifer/api/__init__.pyi,sha256=UJu55ApMFd43N0xlQyNKrYpCdzqhAxA3Jjaj0ETwCXU,169
|
9
|
-
junifer/api/decorators.py,sha256=
|
10
|
-
junifer/api/functions.py,sha256=
|
9
|
+
junifer/api/decorators.py,sha256=kEIcJIznNG_HwrvG9i7bnM1AeZOQPbSBmgDQ3yWFmIQ,2854
|
10
|
+
junifer/api/functions.py,sha256=GB0CODQEAx6WOEFa7g1rSbWx8_4Qw8DQRdfC4JVPkrA,12826
|
11
11
|
junifer/api/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
12
|
junifer/api/queue_context/__init__.py,sha256=glr8x4aMm4EvVrHywDIlugdNlwD1RzqV2FTDNPqYQZ4,204
|
13
13
|
junifer/api/queue_context/__init__.pyi,sha256=LoDQFGZ9wCDmgx5a1_nhKo4zOSvqViXZ8V882DksF7U,246
|
14
|
-
junifer/api/queue_context/gnu_parallel_local_adapter.py,sha256=
|
15
|
-
junifer/api/queue_context/htcondor_adapter.py,sha256=
|
14
|
+
junifer/api/queue_context/gnu_parallel_local_adapter.py,sha256=HBsH9ql0AnU87KfiUEpQ7rCakbFEf4dlz8JzYdlqEpg,9542
|
15
|
+
junifer/api/queue_context/htcondor_adapter.py,sha256=MihS26FJX92_0ysoJm-INP1YUoRcnU_S_WVCgbkoD08,13214
|
16
16
|
junifer/api/queue_context/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
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=
|
19
|
-
junifer/api/queue_context/tests/test_htcondor_adapter.py,sha256
|
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
20
|
junifer/api/res/run_conda.bash,sha256=Axm0xTsP6doUV0X0k6nUP_UJr_2GzA8CPvulQZ01Uno,517
|
21
21
|
junifer/api/res/run_conda.zsh,sha256=32Sm1VNjsrpdH_Wi46jGhPbrJjrmNlPIHtkQ6cHVUkU,515
|
22
22
|
junifer/api/res/run_venv.bash,sha256=aynMRwBgFzYc4CAWbnne_A0UPD5ZFd81w62u22IXzPo,507
|
@@ -40,14 +40,14 @@ junifer/api/res/fsl/flirt,sha256=tSjiUco8ui8AbHD7mTzChEwbR0Rf_4iJTgzYTPF_WuQ,42
|
|
40
40
|
junifer/api/res/fsl/img2imgcoord,sha256=Zmaw3oJYrEltcXiPyEubXry9ppAq3SND52tdDWGgeZk,49
|
41
41
|
junifer/api/res/fsl/run_fsl_docker.sh,sha256=pq-fcNdLuvHzVIQePN4GebZGlcE2UF-xj5rBIqAMz4g,1122
|
42
42
|
junifer/api/res/fsl/std2imgcoord,sha256=-X5wRH6XMl0yqnTACJX6MFhO8DFOEWg42MHRxGvimXg,49
|
43
|
-
junifer/api/tests/test_functions.py,sha256=
|
43
|
+
junifer/api/tests/test_functions.py,sha256=aBAZ2EveiBHbAM5w6j2QxMHBze-XiVD3Td1kAE946ps,17786
|
44
44
|
junifer/cli/__init__.py,sha256=DS3kZKHeVDxt6d1MLBerZ2fcAwrEBHee5JOBhOLajUI,197
|
45
45
|
junifer/cli/__init__.pyi,sha256=PiV4znUnzSeuSSJGz-RT8N21PiMqoSMwYcypi7nt2Js,40
|
46
|
-
junifer/cli/cli.py,sha256=
|
47
|
-
junifer/cli/parser.py,sha256=
|
46
|
+
junifer/cli/cli.py,sha256=kUAlbYIYQ5mKf_Q40Q0f73OMkkAz8B6Xy5eL6I4iY6U,13195
|
47
|
+
junifer/cli/parser.py,sha256=3zmmdsrYzIci3TS8xGVlWeLUIgtaH2Z12OYnqG1ZKAc,8336
|
48
48
|
junifer/cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
-
junifer/cli/utils.py,sha256=
|
50
|
-
junifer/cli/tests/test_cli.py,sha256=
|
49
|
+
junifer/cli/utils.py,sha256=AbPQC0Kl-tHMNKiPxp_01gLAGD3IGoLbsq3rXyPMM-c,3116
|
50
|
+
junifer/cli/tests/test_cli.py,sha256=AYL4my12GmFRCbI3JV7-rju32heYxAqbXNwnV8PwqVY,10982
|
51
51
|
junifer/cli/tests/test_cli_utils.py,sha256=orbBhWaaIxTgB_JzURYH8CvAYqrwle043zHWoVaj6cM,2746
|
52
52
|
junifer/cli/tests/test_parser.py,sha256=5A6yI2t9Ou5w--wpEzXY7mdcVMWWFZaTNLPQ6yLU9gI,6113
|
53
53
|
junifer/cli/tests/data/gmd_mean.yaml,sha256=Ohb_C5cfQMK-59U9O1ZhejXyBtzLc5Y4cv8QyYq2azg,330
|
@@ -61,27 +61,27 @@ junifer/configs/juseless/datagrabbers/__init__.py,sha256=GbF1SzIGQF-CMzuah6aAS0G
|
|
61
61
|
junifer/configs/juseless/datagrabbers/__init__.pyi,sha256=kzFvGofwt7yMj6iz-l_NHCM2ITR4MdklnnGoVUtLVek,388
|
62
62
|
junifer/configs/juseless/datagrabbers/aomic_id1000_vbm.py,sha256=dhOeIQg-IVDatJu2Y1ObuAANdMoYDgACtMOu-9SHzh8,1474
|
63
63
|
junifer/configs/juseless/datagrabbers/camcan_vbm.py,sha256=_d_nMmKQbGEK644wCMmVfHaI2ioTmDmg5ypr_Ik3hDI,1538
|
64
|
-
junifer/configs/juseless/datagrabbers/ixi_vbm.py,sha256=
|
64
|
+
junifer/configs/juseless/datagrabbers/ixi_vbm.py,sha256=0EhIJAC6BGW7CX2MTwr3fuLvwOKHWAxI4Bg7WSVA8H4,2295
|
65
65
|
junifer/configs/juseless/datagrabbers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
|
-
junifer/configs/juseless/datagrabbers/ucla.py,sha256=
|
66
|
+
junifer/configs/juseless/datagrabbers/ucla.py,sha256=IS0onoS4mUtUME3Gb3zKtc0XeHXzzWwi-PmMJmz1fVw,4869
|
67
67
|
junifer/configs/juseless/datagrabbers/ukb_vbm.py,sha256=gn7O4Oo7Sc5bw4J6ZKmb2Hmr5bs52oE0_zCK1-Vb378,1523
|
68
68
|
junifer/configs/juseless/datagrabbers/tests/test_aomic_id1000_vbm.py,sha256=Y_npFmmj0MN0TYv8jaxVMgFHLMQLZ8vXl8lWQKvOYbc,1001
|
69
69
|
junifer/configs/juseless/datagrabbers/tests/test_camcan_vbm.py,sha256=o0dzptS97pxrWaY7I1m0dpJtsnAwmIXNqdU9ABTWCqI,975
|
70
70
|
junifer/configs/juseless/datagrabbers/tests/test_ixi_vbm.py,sha256=8jxpNZelXwpJGvA5LOfpso2X8yt1chvERAYmv76hS_g,1252
|
71
|
-
junifer/configs/juseless/datagrabbers/tests/test_ucla.py,sha256=
|
71
|
+
junifer/configs/juseless/datagrabbers/tests/test_ucla.py,sha256=l-1y_m6NJo7JExhyIzp-vajUfiqiofX69YUOrRHIFKw,3246
|
72
72
|
junifer/configs/juseless/datagrabbers/tests/test_ukb_vbm.py,sha256=b9hjc1mgO--PSRC3id2EzzfE2yWNsuZ2UI47a6sfGZU,1025
|
73
73
|
junifer/data/__init__.py,sha256=xJDI2QKtdjcNzpd1oVFM3guh1SFHM6jKstl7pFmzOuk,267
|
74
74
|
junifer/data/__init__.pyi,sha256=qYszjUYcbFi_2zO23MnbA2HhTW-Ad2oh1pqPQYd6yt0,542
|
75
|
-
junifer/data/_dispatch.py,sha256=
|
76
|
-
junifer/data/pipeline_data_registry_base.py,sha256=
|
75
|
+
junifer/data/_dispatch.py,sha256=FcEZv7ZhWD4aYWzmzd9ZyUETADUJJmqvPqZpSwRsTa4,6158
|
76
|
+
junifer/data/pipeline_data_registry_base.py,sha256=G8bE3WTj4D_rKC4ZKZe6E48Sd96CGea1PS3SxmTgGK4,2010
|
77
77
|
junifer/data/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
|
-
junifer/data/template_spaces.py,sha256=
|
79
|
-
junifer/data/utils.py,sha256=
|
78
|
+
junifer/data/template_spaces.py,sha256=Hcg4k1FL_kVhde6JJUXIQWd_fjqdtTto3nbzx8-t5Rc,6504
|
79
|
+
junifer/data/utils.py,sha256=5r-0QGQCNZvDM1tVcl9xyrIdgAO85mww0plpM1RUaGA,3247
|
80
80
|
junifer/data/coordinates/__init__.py,sha256=ffM8rwcHLgHAWixJbKrATrbUKzX940V1UF6RAxZdUMg,186
|
81
81
|
junifer/data/coordinates/__init__.pyi,sha256=Z-Ti5XD3HigkZ8uYN6oYsLqw40-F1GvTVQ5QAy08Wng,88
|
82
|
-
junifer/data/coordinates/_ants_coordinates_warper.py,sha256=
|
83
|
-
junifer/data/coordinates/_coordinates.py,sha256=
|
84
|
-
junifer/data/coordinates/_fsl_coordinates_warper.py,sha256=
|
82
|
+
junifer/data/coordinates/_ants_coordinates_warper.py,sha256=szFaqqwDUN0yxdO921YBzKCsEer9b7NQQkKcxwelScs,2654
|
83
|
+
junifer/data/coordinates/_coordinates.py,sha256=vBr96QJWxq7ahrT27kUVL8KimPPm1qAKsROZx75VnWM,12493
|
84
|
+
junifer/data/coordinates/_fsl_coordinates_warper.py,sha256=GI0SrkNyAuRsoRSxI5WNvQmtPXQ3MlXvPx9lrd3NYB4,2406
|
85
85
|
junifer/data/coordinates/VOIs/meta/AutobiographicalMemory_VOIs.txt,sha256=9af38naeL18Tlt_gy_ep6vyTAxOB336JYjbo5FvP8PQ,686
|
86
86
|
junifer/data/coordinates/VOIs/meta/CogAC_VOIs.txt,sha256=Sr5_E712OLdeQRyUcDNM0wLBvZIyO6gc9Q7KkyJHX1A,398
|
87
87
|
junifer/data/coordinates/VOIs/meta/CogAR_VOIs.txt,sha256=t3NLwEVUZTPP34p15SaB3UInLrQyK-7Qc4iLBuQlZu8,189
|
@@ -104,57 +104,57 @@ junifer/data/coordinates/VOIs/meta/extDMN_VOIs.txt,sha256=Ogx1QvqZcnXDM3ncF2ha78
|
|
104
104
|
junifer/data/coordinates/tests/test_coordinates.py,sha256=_c2P4oaDGpsmui5gJBe_jN6HLGiKxONkYPR69sRBUlU,4219
|
105
105
|
junifer/data/masks/__init__.py,sha256=eEEhHglyVEx1LrqwXjq3cOmjf4sTsgBstRx5-k7zIQU,180
|
106
106
|
junifer/data/masks/__init__.pyi,sha256=lcgr8gmWDPibC4RxnWBXb8DDpIkO73Aax09u6VXiJJI,114
|
107
|
-
junifer/data/masks/_ants_mask_warper.py,sha256=
|
108
|
-
junifer/data/masks/_fsl_mask_warper.py,sha256=
|
109
|
-
junifer/data/masks/_masks.py,sha256=
|
110
|
-
junifer/data/masks/tests/test_masks.py,sha256=
|
107
|
+
junifer/data/masks/_ants_mask_warper.py,sha256=yGjC-b6Ui-MpPG3FpRnI8pEAxjMUfSSuUGVIeazjN7I,5078
|
108
|
+
junifer/data/masks/_fsl_mask_warper.py,sha256=_7UkX3-wFXQs4KwxopO-QjMyB6aeq1GAkiGSGpG-OzM,2412
|
109
|
+
junifer/data/masks/_masks.py,sha256=VsWY4GOrTOV6XsX-Usl8H_6s8AT6LLveBvLBUr6woFE,20729
|
110
|
+
junifer/data/masks/tests/test_masks.py,sha256=1Zm09ZSdUlR278DTCZeVuxuQntryefsnYYPP02MttVE,16120
|
111
111
|
junifer/data/masks/ukb/UKB_15K_GM_template.nii.gz,sha256=jcX1pDOrDsoph8cPMNFVKH5gZYio5G4rJNpOFXm9wJI,946636
|
112
112
|
junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean.nii.gz,sha256=j6EY8EtRnUuRxeKgD65Q6B0GPEPIALKDJEIje1TfnAU,88270
|
113
113
|
junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean_3mm.nii.gz,sha256=crb_y7YO1vjjf2PwbRJUm8KamPK6fx1y0B_l-E3g8FY,12862
|
114
114
|
junifer/data/masks/vickery-patil/GMprob0.2_cortex_3mm_NA_rm.nii.gz,sha256=jfMe_4H9XEnArYms5bSQbqS2V1_HbLHTfI5amQa_Pes,8700
|
115
115
|
junifer/data/parcellations/__init__.py,sha256=6-Ysil3NyZ69V6rWx4RO15_d-iDKizfbHuxSjsHNt24,188
|
116
116
|
junifer/data/parcellations/__init__.pyi,sha256=lhBHTbMDizzqUqVHrx2eyfPFodrTBgMFeTgxfESSkQ8,140
|
117
|
-
junifer/data/parcellations/_ants_parcellation_warper.py,sha256=
|
118
|
-
junifer/data/parcellations/_fsl_parcellation_warper.py,sha256=
|
119
|
-
junifer/data/parcellations/_parcellations.py,sha256=
|
120
|
-
junifer/data/parcellations/tests/test_parcellations.py,sha256=
|
121
|
-
junifer/data/tests/test_data_utils.py,sha256=
|
117
|
+
junifer/data/parcellations/_ants_parcellation_warper.py,sha256=UBjO9W8jWcM8GK80pbIzORir60ZFAhLTttGtaaDNT2g,5530
|
118
|
+
junifer/data/parcellations/_fsl_parcellation_warper.py,sha256=pUsLbR34Ry3e_0_5KxngI-jU06YmXTU795k-SjJHmig,2676
|
119
|
+
junifer/data/parcellations/_parcellations.py,sha256=uOqoucoynv--iEftrhdnOd3jBcqq9PSDgs9DYhbeN24,65611
|
120
|
+
junifer/data/parcellations/tests/test_parcellations.py,sha256=crluGgUjocVZ0ZIkMpUVol27A-Px6oc2eflY5g0C4BY,38315
|
121
|
+
junifer/data/tests/test_data_utils.py,sha256=136iGPjGecCxyqgUwU8VZMHoE6imcYJ0WNC32PDGK4g,1063
|
122
122
|
junifer/data/tests/test_template_spaces.py,sha256=PJulN7xHpAcSOTY-UzTG_WPywZEBSlAZGiNG4gzk1_8,3144
|
123
123
|
junifer/datagrabber/__init__.py,sha256=EHIK-lbjuvkt0V8ypFvLSt85OAAXSkaxBmVlCbNNz8M,323
|
124
124
|
junifer/datagrabber/__init__.pyi,sha256=zOQE4TaCKXBTHnNqgmECtsszWIOHYiQ1CUEeXXFU9F4,832
|
125
|
-
junifer/datagrabber/base.py,sha256=
|
126
|
-
junifer/datagrabber/datalad_base.py,sha256=
|
127
|
-
junifer/datagrabber/dmcc13_benchmark.py,sha256=
|
128
|
-
junifer/datagrabber/multiple.py,sha256=
|
129
|
-
junifer/datagrabber/pattern.py,sha256=
|
125
|
+
junifer/datagrabber/base.py,sha256=a3_fUZIN5Bqhq2f4ldpwk_eWeSVRDpDmx2QGIKzCtkg,6761
|
126
|
+
junifer/datagrabber/datalad_base.py,sha256=2g-e_pLG0Legx4BvisrnGWYi1NCTyOkCi09QxbKX18M,11415
|
127
|
+
junifer/datagrabber/dmcc13_benchmark.py,sha256=VMyiwvkr4qSvzBICSksPPKOI2w_WVo06H89Url-hrNs,12819
|
128
|
+
junifer/datagrabber/multiple.py,sha256=TApa5HE8lkbW4KKLh6fnMkwOs7KOrJfruTGq65ApaWY,6505
|
129
|
+
junifer/datagrabber/pattern.py,sha256=oDvlBfPM-Plquk-VMa265iLesuMY0F0PfJA6o6jcKXw,18271
|
130
130
|
junifer/datagrabber/pattern_datalad.py,sha256=QPWXIToYHDU4mvm9lz_hy8BjdqqoCXiGiJKCcATrT-w,4568
|
131
|
-
junifer/datagrabber/pattern_validation_mixin.py,sha256=
|
131
|
+
junifer/datagrabber/pattern_validation_mixin.py,sha256=UwwBOWwr_KA97woMFLL0ebRerzpL_rHKe3z0ZMmhmfI,19290
|
132
132
|
junifer/datagrabber/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
133
133
|
junifer/datagrabber/aomic/__init__.py,sha256=ATxzXq9NBPmWowTMuL77zqrmIbbnk0Wd1iXtXCP3XDg,266
|
134
134
|
junifer/datagrabber/aomic/__init__.pyi,sha256=Rp6C075fZDdKY8VIq508_g4NhVj8bWzR6zb9yln761Q,189
|
135
|
-
junifer/datagrabber/aomic/id1000.py,sha256=
|
136
|
-
junifer/datagrabber/aomic/piop1.py,sha256=
|
137
|
-
junifer/datagrabber/aomic/piop2.py,sha256
|
135
|
+
junifer/datagrabber/aomic/id1000.py,sha256=9jjsb6SRSgxbuMFLJRQBlXaoP9JptyBpveEyWKmsjCA,7814
|
136
|
+
junifer/datagrabber/aomic/piop1.py,sha256=AvqtvdL2iUfvXQTWt7BydYKVZ_sS3rp__2M6DbG8_r0,10226
|
137
|
+
junifer/datagrabber/aomic/piop2.py,sha256=FyibCxPnaM-w1v3M5FrKHDMXTp-lpBnnuHL7ta-9Xqk,9887
|
138
138
|
junifer/datagrabber/aomic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
139
|
-
junifer/datagrabber/aomic/tests/test_id1000.py,sha256=
|
140
|
-
junifer/datagrabber/aomic/tests/test_piop1.py,sha256=
|
141
|
-
junifer/datagrabber/aomic/tests/test_piop2.py,sha256=
|
139
|
+
junifer/datagrabber/aomic/tests/test_id1000.py,sha256=wie7Sc6MIpMyIbDMouXJ7r2_BRbdQv27rTsviwE19LE,3277
|
140
|
+
junifer/datagrabber/aomic/tests/test_piop1.py,sha256=_NargKRI13PPtznpNhknOqlKLHlVgVWWVU7GFBeV3X8,4814
|
141
|
+
junifer/datagrabber/aomic/tests/test_piop2.py,sha256=7ySdDKI7lioXAN6QVkefScNDNPrUM3lTL7IhGMJatVA,4160
|
142
142
|
junifer/datagrabber/hcp1200/__init__.py,sha256=2CUYsdWu3RbOdHWME_peYNHEqKUkiq_W3Aw-aczbFdY,214
|
143
143
|
junifer/datagrabber/hcp1200/__init__.pyi,sha256=2ttZanYSzCsB195_xfXUyztPsVIF02ARM-sjlNK3Wdg,114
|
144
|
-
junifer/datagrabber/hcp1200/datalad_hcp1200.py,sha256=
|
145
|
-
junifer/datagrabber/hcp1200/hcp1200.py,sha256=
|
144
|
+
junifer/datagrabber/hcp1200/datalad_hcp1200.py,sha256=49kWPrjLnmUKzJNYPbV9SD0g5KkkCLXlVVpkYRxwkow,2457
|
145
|
+
junifer/datagrabber/hcp1200/hcp1200.py,sha256=L_JTY0RYQ_Wst2La5EaGVDbya7IfSkTVkK92PGGsAzI,6489
|
146
146
|
junifer/datagrabber/hcp1200/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
147
|
-
junifer/datagrabber/hcp1200/tests/test_hcp1200.py,sha256=
|
147
|
+
junifer/datagrabber/hcp1200/tests/test_hcp1200.py,sha256=HeXlD6wjvDq0EyqlB_nPqfXSIhAzALYAYjSCAjNOGGg,10972
|
148
148
|
junifer/datagrabber/tests/test_base.py,sha256=fZdVhNhvfht9lpTHrAUf5E6mAfNNUP7OTQ5KLaBQ1gI,3506
|
149
|
-
junifer/datagrabber/tests/test_datalad_base.py,sha256=
|
150
|
-
junifer/datagrabber/tests/test_dmcc13_benchmark.py,sha256=
|
149
|
+
junifer/datagrabber/tests/test_datalad_base.py,sha256=Hol6CC-4BMy1GEj3vzmaZLp4u2nezHTWkkcZvhR6OHc,16261
|
150
|
+
junifer/datagrabber/tests/test_dmcc13_benchmark.py,sha256=QSdYAAwAj1DoE1oLhoraIc4lAgUgIaJyrtcOs_witzM,9914
|
151
151
|
junifer/datagrabber/tests/test_multiple.py,sha256=gdekgSHyRx_EtcMNQpJsGEyo56xSxH5-XSQRQ5P2zt4,8288
|
152
152
|
junifer/datagrabber/tests/test_pattern.py,sha256=H55jYRPfT3rMsoIQOAnWJgw3nGrkU7m2xFa3-ed6NQE,9527
|
153
153
|
junifer/datagrabber/tests/test_pattern_datalad.py,sha256=5lA4hkYNaIAVy3GjcVqBXj1d-3qd8-14Pv0z6QGqgtI,6483
|
154
|
-
junifer/datagrabber/tests/test_pattern_validation_mixin.py,sha256=
|
154
|
+
junifer/datagrabber/tests/test_pattern_validation_mixin.py,sha256=KU3xha3Mo7IX_5Tp4RL5awvEzZrX43OmrRFjeqMYVgk,7498
|
155
155
|
junifer/datareader/__init__.py,sha256=CDWjL4PQthskxWX5d0ASro6YIfTT1Tb7ZmyDllWWZso,318
|
156
156
|
junifer/datareader/__init__.pyi,sha256=VOqhh-C3-eqapHVR7-F9Ulc_6iyHTb35XLoGb2DCRaA,72
|
157
|
-
junifer/datareader/default.py,sha256=
|
157
|
+
junifer/datareader/default.py,sha256=q8aXHlBzLtRtgM2z3JWIsB-daSZncr33mliZlV5RzdM,6733
|
158
158
|
junifer/datareader/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
159
159
|
junifer/datareader/tests/test_default_reader.py,sha256=9dPZSkba1YQjFsA0XwdUbx5sq8DVIEZoy_WfMAcvRus,5220
|
160
160
|
junifer/external/__init__.py,sha256=CBB7eQul2hf-WWwT_PYFV1MS9KkXlZBO7oQWWVLgB_I,110
|
@@ -173,31 +173,31 @@ junifer/external/h5io/h5io/chunked_array.py,sha256=K1HWf7R2Jc7gCzBqAoBjx0ZnMmUhT
|
|
173
173
|
junifer/external/h5io/h5io/chunked_list.py,sha256=1Y5BbuWzurJlEFQzJNuDdC3fNZ39ENEMba99X_4VeSM,1952
|
174
174
|
junifer/external/nilearn/__init__.py,sha256=pvDmJMwOBki2oaEw-bsniMQ9UXvzecwu6EwJvbVxD50,210
|
175
175
|
junifer/external/nilearn/__init__.pyi,sha256=bcCz7O02UameBxbtPjhUal-Z9rI01pv3iktPs_Nq7Ts,208
|
176
|
-
junifer/external/nilearn/junifer_connectivity_measure.py,sha256=
|
177
|
-
junifer/external/nilearn/junifer_nifti_spheres_masker.py,sha256=
|
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
178
|
junifer/external/nilearn/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
179
|
-
junifer/external/nilearn/tests/test_junifer_connectivity_measure.py,sha256=
|
180
|
-
junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py,sha256=
|
179
|
+
junifer/external/nilearn/tests/test_junifer_connectivity_measure.py,sha256=NEYVq5mrc9VMDkrm8Aq7gLgWk5XrzVriDFCw34R3XbI,33927
|
180
|
+
junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py,sha256=9UvBAVO-uo0nMIHYfAQ85kJMrwpBxpVRsN1-mHLk7ik,12244
|
181
181
|
junifer/markers/__init__.py,sha256=wHAxljlZppxgXimSJw21mp9oUYYyaID4LYfeBolva30,310
|
182
182
|
junifer/markers/__init__.pyi,sha256=9a72D9k6esTzLvmvULXHOeaQtIchjtN7VELpCeaddsM,957
|
183
|
-
junifer/markers/base.py,sha256=
|
184
|
-
junifer/markers/brainprint.py,sha256=
|
185
|
-
junifer/markers/ets_rss.py,sha256=
|
186
|
-
junifer/markers/parcel_aggregation.py,sha256=
|
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
187
|
junifer/markers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
|
-
junifer/markers/sphere_aggregation.py,sha256=
|
189
|
-
junifer/markers/utils.py,sha256=
|
188
|
+
junifer/markers/sphere_aggregation.py,sha256=wS2l2EqpcDedQkgEBHRMfzrVbCw_460VZmxTfx24VoQ,8008
|
189
|
+
junifer/markers/utils.py,sha256=DDaxMJVQgJ-cvbZjA5abIO9hh3dTHlZ7jdYrEFV_ack,3820
|
190
190
|
junifer/markers/complexity/__init__.py,sha256=6ZoTQy7hU_vnH65VlJbi61VfPAdg-RpuV84aXhzr8j0,552
|
191
191
|
junifer/markers/complexity/__init__.pyi,sha256=I2IbSuKnUEf03Yunv884ASBxKjQ9_fenACccjaxTkyc,495
|
192
|
-
junifer/markers/complexity/complexity_base.py,sha256=
|
193
|
-
junifer/markers/complexity/hurst_exponent.py,sha256=
|
194
|
-
junifer/markers/complexity/multiscale_entropy_auc.py,sha256=
|
195
|
-
junifer/markers/complexity/perm_entropy.py,sha256=
|
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
196
|
junifer/markers/complexity/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
197
|
-
junifer/markers/complexity/range_entropy.py,sha256=
|
198
|
-
junifer/markers/complexity/range_entropy_auc.py,sha256=
|
199
|
-
junifer/markers/complexity/sample_entropy.py,sha256=
|
200
|
-
junifer/markers/complexity/weighted_perm_entropy.py,sha256=
|
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
201
|
junifer/markers/complexity/tests/test_complexity_base.py,sha256=0E0AjjBqenIb6ZzK-EMie24J4vVjWUjAPfkvvognu9Y,453
|
202
202
|
junifer/markers/complexity/tests/test_hurst_exponent.py,sha256=s1G8xF5rBc0TgWbe7nKFgcwlAjUb1Yabw3ALEcXYBj0,2311
|
203
203
|
junifer/markers/complexity/tests/test_multiscale_entropy_auc.py,sha256=UDScZLPYc1S1kpL04_Rcj2U_dgRhq2VzNOEDv5O8WGE,2382
|
@@ -208,45 +208,45 @@ junifer/markers/complexity/tests/test_sample_entropy.py,sha256=rfbiguVq7CUwYIvYB
|
|
208
208
|
junifer/markers/complexity/tests/test_weighted_perm_entropy.py,sha256=yDWKEaUbxrnrG6J2NlktLfwSBre5OuXd63kEof7t8PM,2373
|
209
209
|
junifer/markers/falff/__init__.py,sha256=qxdx_3FsVrn7h3gtbocK0ZmvqZwPQZGKuVkPm31ejNM,217
|
210
210
|
junifer/markers/falff/__init__.pyi,sha256=X-q2zBjUX0imQ37yN2Cg5gKfDvq8sh_9y2hRH4g5ufY,120
|
211
|
-
junifer/markers/falff/_afni_falff.py,sha256=
|
212
|
-
junifer/markers/falff/_junifer_falff.py,sha256=
|
213
|
-
junifer/markers/falff/falff_base.py,sha256=
|
214
|
-
junifer/markers/falff/falff_parcels.py,sha256=
|
215
|
-
junifer/markers/falff/falff_spheres.py,sha256=
|
211
|
+
junifer/markers/falff/_afni_falff.py,sha256=D_hhT-rfWXeIe-Pwh4pK2O7N9Q07VyMOUHeAz6Ooudo,4518
|
212
|
+
junifer/markers/falff/_junifer_falff.py,sha256=TnZ6T8u0f0YitJ7KRk4gMcC1tv6UW8m4VVcvcjGRsL0,4450
|
213
|
+
junifer/markers/falff/falff_base.py,sha256=XZcBfXA74tWrW--uCALkRLl1tB7toR3_HfzPJUblz8g,4909
|
214
|
+
junifer/markers/falff/falff_parcels.py,sha256=sSb6QLaJKpL0GCTRWW3RnpOZCoy1f9lDLgJ0I_W_LlM,6017
|
215
|
+
junifer/markers/falff/falff_spheres.py,sha256=GrakJYPB01y9BNBXM8WzWaae0mC-S06txiycvfBGcj0,6656
|
216
216
|
junifer/markers/falff/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
217
|
junifer/markers/falff/tests/test_falff_parcels.py,sha256=Z3n1i8dkYbdXgouUjfIif9yLv5MubBEdrtAA-a6kRcc,4349
|
218
218
|
junifer/markers/falff/tests/test_falff_spheres.py,sha256=-VLEvFaF8CMCN_7FLYCSfP7MMjy-gm1Zgu13je5Pku8,4373
|
219
219
|
junifer/markers/functional_connectivity/__init__.py,sha256=dGTn69eS7a3rylMQh_wKlO28UmYGjsoDEGu4q5sgQFA,230
|
220
220
|
junifer/markers/functional_connectivity/__init__.pyi,sha256=qfw6WVyE65u-5NZNi0xPa8zZVtkRfFvwyl4jHH2Xl00,539
|
221
|
-
junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py,sha256=
|
222
|
-
junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py,sha256=
|
223
|
-
junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py,sha256=
|
224
|
-
junifer/markers/functional_connectivity/functional_connectivity_base.py,sha256=
|
225
|
-
junifer/markers/functional_connectivity/functional_connectivity_parcels.py,sha256=
|
226
|
-
junifer/markers/functional_connectivity/functional_connectivity_spheres.py,sha256=
|
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
227
|
junifer/markers/functional_connectivity/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
228
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=
|
230
|
-
junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py,sha256=
|
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
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=
|
233
|
-
junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py,sha256=
|
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
234
|
junifer/markers/reho/__init__.py,sha256=WZf4A0XaRThjl8SlFOhvTLUfhTHp5koLxZgowsgTSAE,211
|
235
235
|
junifer/markers/reho/__init__.pyi,sha256=_aFb-Ry_EP2OMU6xRL4GlfuDpSl_egHllL-fz7vXjcE,118
|
236
|
-
junifer/markers/reho/_afni_reho.py,sha256=
|
237
|
-
junifer/markers/reho/_junifer_reho.py,sha256=
|
236
|
+
junifer/markers/reho/_afni_reho.py,sha256=YBqNYipZO8EFM4Jmek_A36zr9n4nTR0RVDPpxjJKLxM,6466
|
237
|
+
junifer/markers/reho/_junifer_reho.py,sha256=86oBH8UtWsHJJGz2-uRXAjdGNHvaSV6Xu1v7-9AJqLs,9340
|
238
238
|
junifer/markers/reho/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
239
|
-
junifer/markers/reho/reho_base.py,sha256=
|
240
|
-
junifer/markers/reho/reho_parcels.py,sha256=
|
241
|
-
junifer/markers/reho/reho_spheres.py,sha256=
|
239
|
+
junifer/markers/reho/reho_base.py,sha256=Amji7hNtkT9D-teJ2tTzDsVHKRXETDwhICDKa8ZGehY,4071
|
240
|
+
junifer/markers/reho/reho_parcels.py,sha256=UE1ia3uqbmTcZMc_FI625xVPLxBYvwpfrcvhekopbkI,6392
|
241
|
+
junifer/markers/reho/reho_spheres.py,sha256=FCC2qncC85Kd82hg-MOu4T7NAKEkXHUaCcwC9taau9Y,6996
|
242
242
|
junifer/markers/reho/tests/test_reho_parcels.py,sha256=bRtDi91qRcRYaRqqQjuSU6NuNz-KwLVCoTYo-e5VmsI,4075
|
243
243
|
junifer/markers/reho/tests/test_reho_spheres.py,sha256=VyyQ3hhD6ArFc1BmigmAdePACB1EMQlo1mDr2QKvT2I,3989
|
244
244
|
junifer/markers/temporal_snr/__init__.py,sha256=86hNMyaSfWlWOXZ6m9reSDtMIgUaByOXjcxCvo7LmDw,235
|
245
245
|
junifer/markers/temporal_snr/__init__.pyi,sha256=20FhG9ZkAHQfmJ0r5p6fRMxhK8xrFQeFr0cgTrqu3ik,162
|
246
246
|
junifer/markers/temporal_snr/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
247
|
-
junifer/markers/temporal_snr/temporal_snr_base.py,sha256=
|
248
|
-
junifer/markers/temporal_snr/temporal_snr_parcels.py,sha256=
|
249
|
-
junifer/markers/temporal_snr/temporal_snr_spheres.py,sha256=
|
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
250
|
junifer/markers/temporal_snr/tests/test_temporal_snr_base.py,sha256=KRln5ibLTJJQ_f3pnioATfwyhK5htGc2o2J7CPcoyfs,426
|
251
251
|
junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py,sha256=JnsLIF0qT4L3JfSIBeHxFsugQ89P9by0CmNwNJiFnZY,2042
|
252
252
|
junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py,sha256=cxYnKreFRauIs3NYaaB1EKeFEHZxPplxOuywWNcUnLg,2175
|
@@ -257,64 +257,64 @@ junifer/markers/tests/test_markers_base.py,sha256=XYe1Z_88h2g1WX6Em4aM8VMyBuCpy5
|
|
257
257
|
junifer/markers/tests/test_parcel_aggregation.py,sha256=04OqtY_Z-KW4W1jU5K6GeWnLpBYheM1shcH1Jgw_L3k,27798
|
258
258
|
junifer/markers/tests/test_sphere_aggregation.py,sha256=HPaLD6xKdewTt0iANz3nYOD7ZI-g7BqMTiRdV-4sM8M,10669
|
259
259
|
junifer/onthefly/__init__.py,sha256=TA6tPuw54ynDlumb9Ii-2p59hw2rGoCMe1-vQ89JzZ8,238
|
260
|
-
junifer/onthefly/_brainprint.py,sha256=
|
261
|
-
junifer/onthefly/read_transform.py,sha256=
|
260
|
+
junifer/onthefly/_brainprint.py,sha256=_2WHvLN1Cn9KP-L08Tg49nJ-NdmGfz9cNEaV12pRrww,3765
|
261
|
+
junifer/onthefly/read_transform.py,sha256=5UcksaJvHRMAYeSi3Ub0x6o-_7HtGimub_sUQR_9q0o,4253
|
262
262
|
junifer/onthefly/tests/test_read_transform.py,sha256=D2C3IpXQHdsJSF07v8rEwGntLGXjZOserlRhebJUAVM,4719
|
263
263
|
junifer/pipeline/__init__.py,sha256=rxKQGRwc6_sts1KhVIcVVpuXeiFABf11mQQ2h5jgA3U,194
|
264
264
|
junifer/pipeline/__init__.pyi,sha256=hhcvNcABhtLaUQiZdTjo5sMWC3rtDkwVshL0sxD5JAE,399
|
265
|
-
junifer/pipeline/marker_collection.py,sha256=
|
266
|
-
junifer/pipeline/pipeline_component_registry.py,sha256=
|
267
|
-
junifer/pipeline/pipeline_step_mixin.py,sha256=
|
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
268
|
junifer/pipeline/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
269
|
-
junifer/pipeline/update_meta_mixin.py,sha256=
|
270
|
-
junifer/pipeline/utils.py,sha256=
|
269
|
+
junifer/pipeline/update_meta_mixin.py,sha256=yzGCx8AUbc9mMnWKRu4qaIXTBBSIxtNlGH5zIQIUvzM,1812
|
270
|
+
junifer/pipeline/utils.py,sha256=27KYbUS6t1kb3vP_C5BoRBFfKPzfUKQK8Ut-aBERshk,10285
|
271
271
|
junifer/pipeline/workdir_manager.py,sha256=T7-sZY_Gj0SM7p9N1ATjUFK2T-6CYIMQeYwHpBz96Gs,8616
|
272
272
|
junifer/pipeline/tests/test_marker_collection.py,sha256=edBHfmwMTXG_q0ZagApbAbkFNoegi3hVEQiNcBtZOKc,6959
|
273
|
-
junifer/pipeline/tests/test_pipeline_component_registry.py,sha256=
|
274
|
-
junifer/pipeline/tests/test_pipeline_step_mixin.py,sha256=
|
275
|
-
junifer/pipeline/tests/test_update_meta_mixin.py,sha256=
|
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
276
|
junifer/pipeline/tests/test_workdir_manager.py,sha256=_rXlGb_PUQJBVgV1PWmwjFvTW971MkEbyDDY9dLfJAY,4051
|
277
277
|
junifer/preprocess/__init__.py,sha256=91D43p254il88g-7sSN64M7HsCvwytYoiTS_GLEr37Y,342
|
278
278
|
junifer/preprocess/__init__.pyi,sha256=EApXtuEZohQZnIeP6k882Y2H5IRiGmhJbVGdN7VCWFc,254
|
279
|
-
junifer/preprocess/base.py,sha256=
|
279
|
+
junifer/preprocess/base.py,sha256=hARO4Yq9sQ8m2tATeuBmPMbI4BSnwNxLf2prF8Iq_Tk,6662
|
280
280
|
junifer/preprocess/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
281
281
|
junifer/preprocess/confounds/__init__.py,sha256=L3CquKcndFb2b8yVo-XLi-zsNCe8MMKUN41UOVdooWc,270
|
282
282
|
junifer/preprocess/confounds/__init__.pyi,sha256=iC70cqcWNMX4JM42RcUgKb9YX8ciK8oVERdWWjo-13c,102
|
283
|
-
junifer/preprocess/confounds/fmriprep_confound_remover.py,sha256=
|
283
|
+
junifer/preprocess/confounds/fmriprep_confound_remover.py,sha256=FXnNZrr1GUBqiSOboRrM-TqO9rNxne63wlUMPfnPE78,20368
|
284
284
|
junifer/preprocess/confounds/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
285
|
-
junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py,sha256=
|
285
|
+
junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py,sha256=yZxCud9l8bW36Rsk63Fi1qWUpM9L4Wtd2-zZW-DjvZA,19949
|
286
286
|
junifer/preprocess/smoothing/__init__.py,sha256=7aTwvAG522kA76QQwqxwY5zV_6asyPaaH2uSMTaKQls,216
|
287
287
|
junifer/preprocess/smoothing/__init__.pyi,sha256=5sjw61Eyon9gE_SWoktND9raw6IkgqcT2rtGNhVV9EA,58
|
288
288
|
junifer/preprocess/smoothing/_afni_smoothing.py,sha256=x5Dtv8z6NCXxWumOIAnW17YRswHsD31V_7hhBGIizss,3287
|
289
289
|
junifer/preprocess/smoothing/_fsl_smoothing.py,sha256=Zra5dS3k8qm823GtbW4uQWkGdNEeu0scY5OP4PteI88,3045
|
290
290
|
junifer/preprocess/smoothing/_nilearn_smoothing.py,sha256=1maeg6t_kWuxK98IFFAmW0MNwii6YSFkXPJHjZUjOEo,1965
|
291
291
|
junifer/preprocess/smoothing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
292
|
-
junifer/preprocess/smoothing/smoothing.py,sha256=
|
292
|
+
junifer/preprocess/smoothing/smoothing.py,sha256=I9NTnfnK84_rDCe7ycLZmWkSmKwYBlAfOPhFRSRxxfI,5366
|
293
293
|
junifer/preprocess/smoothing/tests/test_smoothing.py,sha256=t1j3zEvJk5XLO4fzcb-wQyBMH-xuvR1k6WYm8zriwik,2390
|
294
294
|
junifer/preprocess/tests/test_preprocess_base.py,sha256=-0rpe8QjqYES36H6MHuDs3cv_6upHBdVHnFMgQsmEX4,2571
|
295
295
|
junifer/preprocess/warping/__init__.py,sha256=rzUUP7-6H_nygQ7a7TBZ4_RY7p0ELacosYsWQbSdVZk,214
|
296
296
|
junifer/preprocess/warping/__init__.pyi,sha256=Drbqp8N3uprvXcKSxqdfj90fesz9XYVLgivhPnKAYcc,65
|
297
|
-
junifer/preprocess/warping/_ants_warper.py,sha256=
|
298
|
-
junifer/preprocess/warping/_fsl_warper.py,sha256=
|
297
|
+
junifer/preprocess/warping/_ants_warper.py,sha256=oJrTW_YG-VJ-piq_L1CX5fEoERyRtsMpFEQQ-0fUFMg,6502
|
298
|
+
junifer/preprocess/warping/_fsl_warper.py,sha256=IV_vkn3TGDPWM_N-hEQv1YC4LYMTfZfDmuYu5MW_TQ8,3798
|
299
299
|
junifer/preprocess/warping/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
300
|
-
junifer/preprocess/warping/space_warper.py,sha256=
|
301
|
-
junifer/preprocess/warping/tests/test_space_warper.py,sha256=
|
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
302
|
junifer/storage/__init__.py,sha256=aPGBFPPsTcZYMdkC_o5HIrzRIIwp-bc5bJDoh_GuQmo,270
|
303
303
|
junifer/storage/__init__.pyi,sha256=MHC-R129z_WuXVQuKBrFu8H1wqmUPAl5ZOQT_WZaXek,292
|
304
|
-
junifer/storage/base.py,sha256=
|
305
|
-
junifer/storage/hdf5.py,sha256=
|
306
|
-
junifer/storage/pandas_base.py,sha256=
|
304
|
+
junifer/storage/base.py,sha256=sGRTeXZT6d3qBAkIlY5qEMA3rky7Rkz8F14rgIpWljY,10886
|
305
|
+
junifer/storage/hdf5.py,sha256=1nK4su0S1ND-cMMP0jhf66yf0I0JwHp1gicDjZhXw9s,38001
|
306
|
+
junifer/storage/pandas_base.py,sha256=v3iRuoXJzBChZYkjR4OHJp99NM0BPTpYkw1TAX52Nto,7529
|
307
307
|
junifer/storage/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
308
|
-
junifer/storage/sqlite.py,sha256=
|
309
|
-
junifer/storage/utils.py,sha256=
|
310
|
-
junifer/storage/tests/test_hdf5.py,sha256=
|
308
|
+
junifer/storage/sqlite.py,sha256=QzkKB1pD4qNjrMe0bB7ATHnPgNjteTrP3ULCE_XuwD0,21269
|
309
|
+
junifer/storage/utils.py,sha256=bUtf13ADjlNOq0alYKXMWYPQaOSeSJ5R7tBmFZc6Cgo,7390
|
310
|
+
junifer/storage/tests/test_hdf5.py,sha256=vHMludIWJJ-4_i1kMYqLfdCrHJkYe7Dd9ZXLTjt-MOQ,31481
|
311
311
|
junifer/storage/tests/test_pandas_base.py,sha256=y_TfUGpuXkj_39yVon3rMDxMeBrZXs58ZW6OSty5LNw,4058
|
312
|
-
junifer/storage/tests/test_sqlite.py,sha256=
|
312
|
+
junifer/storage/tests/test_sqlite.py,sha256=0TQIcqHPgk67ALsR-98CA73ulDPsR2t9wGXYaem983w,28312
|
313
313
|
junifer/storage/tests/test_storage_base.py,sha256=YzgfspuggzXejyPIoRCPST3ZzH9Pi7dgl0IHN7kynXM,3071
|
314
|
-
junifer/storage/tests/test_utils.py,sha256=
|
314
|
+
junifer/storage/tests/test_utils.py,sha256=k2HxD9cC-NczasEWjPZUiIy6mpbelR8KIUXWtkp_uws,11862
|
315
315
|
junifer/testing/__init__.py,sha256=gqfrX2c7I31VYBmH9hCUERO-61NwubT1cvy1bKM0NqU,249
|
316
316
|
junifer/testing/__init__.pyi,sha256=OFqGc5GCjoD4hPVOYNWvnvvP_RVF-oO-UQR8n9HDVtM,133
|
317
|
-
junifer/testing/datagrabbers.py,sha256=
|
317
|
+
junifer/testing/datagrabbers.py,sha256=I5fwaKS3JtFLP1Xyt3Hs6PTVFVTQViYTiTQWL8U3MP8,6571
|
318
318
|
junifer/testing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
319
319
|
junifer/testing/registry.py,sha256=MVO-xlzSH3pAv9ySTqO1R3sNqdnfD1Qh7oA775ZxlXs,688
|
320
320
|
junifer/testing/utils.py,sha256=TEIwdV7etWglXOFQX1O5ZR18GzfYZ0LcRqXuK-JPo8U,591
|
@@ -324,25 +324,25 @@ junifer/testing/tests/test_partlycloudytesting_datagrabber.py,sha256=ggU8XQQ6F0H
|
|
324
324
|
junifer/testing/tests/test_spmauditory_datagrabber.py,sha256=1G1emk-Ze59HiNLaYsyIz5O1YGW9darcqlzvhE-J_Mc,919
|
325
325
|
junifer/testing/tests/test_testing_registry.py,sha256=MK4a_q4MHieCvYhnhuPm_dH76lX0yyDOZP8tZ30aC7Y,508
|
326
326
|
junifer/tests/test_main.py,sha256=GMff7jlisGM9_FsiUwWDte43j-KQJGFRYZpwRRqTkd8,373
|
327
|
-
junifer/tests/test_stats.py,sha256=
|
327
|
+
junifer/tests/test_stats.py,sha256=NljoGFu2JOPADbi9W0WeUHwpf8nZSdOkcCgCv-Z1fY4,4149
|
328
328
|
junifer/typing/__init__.py,sha256=e0UbuxozXUIxz8h8pLokMOxZV629Q1lnA7vvgm95WF0,215
|
329
329
|
junifer/typing/__init__.pyi,sha256=axw5NiJzBtDwnptfs9vx8G0QFsNMNHeNJqo2yxxxdXM,452
|
330
|
-
junifer/typing/_typing.py,sha256=
|
330
|
+
junifer/typing/_typing.py,sha256=brOzqrjSlXD8y53zRH2UYWNMYhm6TSaE0FK1QkfcQFA,1393
|
331
331
|
junifer/utils/__init__.py,sha256=I3tYaePAD_ZEU-36-TJ_OYeqW_aMmi5MZ3jmqie6RfU,260
|
332
332
|
junifer/utils/__init__.pyi,sha256=fOijdjcdG5mBo6EdMB8gRZtzuS_zgfxRLBm1bBOQYK4,344
|
333
333
|
junifer/utils/_yaml.py,sha256=jpTroTI2rajECj0RXGCXaOwLpad858WzI7Jg-eXJ_jU,336
|
334
334
|
junifer/utils/fs.py,sha256=M3CKBLh4gPS6s9giyopgb1hHMXzLb6k3cung2wHVBjs,492
|
335
|
-
junifer/utils/helpers.py,sha256=
|
336
|
-
junifer/utils/logging.py,sha256=
|
335
|
+
junifer/utils/helpers.py,sha256=OaEvNm5H9PwLSuJcSTXCzSuHnP6obXUFqiNGK_YJ5F0,2033
|
336
|
+
junifer/utils/logging.py,sha256=9m7jW4XmaAWBvuvPCZqVh5MYXJu29pSuaJWH6Au9FNM,9769
|
337
337
|
junifer/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
338
|
-
junifer/utils/singleton.py,sha256=
|
338
|
+
junifer/utils/singleton.py,sha256=pp2jOGXmTdZSf4XDL-5S79YKY1Iag1inyWBjVC0Ic9U,1189
|
339
339
|
junifer/utils/tests/test_fs.py,sha256=WQS7cKlKEZ742CIuiOYYpueeAhY9PqlastfDVpVVtvE,923
|
340
340
|
junifer/utils/tests/test_helpers.py,sha256=k5qqfxK8dFyuewTJyR1Qn6-nFaYNuVr0ysc18bfPjyU,929
|
341
341
|
junifer/utils/tests/test_logging.py,sha256=duO4ou365hxwa_kwihFtKPLaL6LC5XHiyhOijrrngbA,8009
|
342
|
-
junifer-0.0.6.
|
343
|
-
junifer-0.0.6.
|
344
|
-
junifer-0.0.6.
|
345
|
-
junifer-0.0.6.
|
346
|
-
junifer-0.0.6.
|
347
|
-
junifer-0.0.6.
|
348
|
-
junifer-0.0.6.
|
342
|
+
junifer-0.0.6.dev252.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
|
343
|
+
junifer-0.0.6.dev252.dist-info/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
|
344
|
+
junifer-0.0.6.dev252.dist-info/METADATA,sha256=NKEnNrEcF6wImvpUatyTs4s1VWw05oQhAg-NiXuAJQY,8481
|
345
|
+
junifer-0.0.6.dev252.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
346
|
+
junifer-0.0.6.dev252.dist-info/entry_points.txt,sha256=6O8ru0BP-SP7YMUZiizFNoaZ2HvJpadO2G7nKk4PwjI,48
|
347
|
+
junifer-0.0.6.dev252.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
|
348
|
+
junifer-0.0.6.dev252.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|