junifer 0.0.6.dev154__py3-none-any.whl → 0.0.6.dev194__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.
Files changed (90) hide show
  1. junifer/__init__.pyi +2 -0
  2. junifer/_version.py +2 -2
  3. junifer/api/decorators.py +6 -11
  4. junifer/api/functions.py +74 -62
  5. junifer/api/tests/test_functions.py +2 -2
  6. junifer/data/__init__.pyi +17 -31
  7. junifer/data/_dispatch.py +251 -0
  8. junifer/data/coordinates/__init__.py +9 -0
  9. junifer/data/coordinates/__init__.pyi +5 -0
  10. junifer/data/coordinates/_ants_coordinates_warper.py +96 -0
  11. junifer/data/coordinates/_coordinates.py +356 -0
  12. junifer/data/coordinates/_fsl_coordinates_warper.py +83 -0
  13. junifer/data/{tests → coordinates/tests}/test_coordinates.py +25 -31
  14. junifer/data/masks/__init__.py +9 -0
  15. junifer/data/masks/__init__.pyi +6 -0
  16. junifer/data/masks/_ants_mask_warper.py +144 -0
  17. junifer/data/masks/_fsl_mask_warper.py +87 -0
  18. junifer/data/masks/_masks.py +624 -0
  19. junifer/data/{tests → masks/tests}/test_masks.py +63 -58
  20. junifer/data/parcellations/__init__.py +9 -0
  21. junifer/data/parcellations/__init__.pyi +6 -0
  22. junifer/data/parcellations/_ants_parcellation_warper.py +154 -0
  23. junifer/data/parcellations/_fsl_parcellation_warper.py +91 -0
  24. junifer/data/{parcellations.py → parcellations/_parcellations.py} +450 -473
  25. junifer/data/{tests → parcellations/tests}/test_parcellations.py +73 -81
  26. junifer/data/pipeline_data_registry_base.py +74 -0
  27. junifer/data/utils.py +4 -0
  28. junifer/datagrabber/aomic/piop2.py +1 -1
  29. junifer/markers/complexity/hurst_exponent.py +2 -2
  30. junifer/markers/complexity/multiscale_entropy_auc.py +2 -2
  31. junifer/markers/complexity/perm_entropy.py +2 -2
  32. junifer/markers/complexity/range_entropy.py +2 -2
  33. junifer/markers/complexity/range_entropy_auc.py +2 -2
  34. junifer/markers/complexity/sample_entropy.py +2 -2
  35. junifer/markers/complexity/weighted_perm_entropy.py +2 -2
  36. junifer/markers/ets_rss.py +2 -2
  37. junifer/markers/falff/falff_parcels.py +2 -2
  38. junifer/markers/falff/falff_spheres.py +2 -2
  39. junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py +1 -1
  40. junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py +1 -1
  41. junifer/markers/functional_connectivity/functional_connectivity_parcels.py +1 -1
  42. junifer/markers/functional_connectivity/functional_connectivity_spheres.py +1 -1
  43. junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py +3 -3
  44. junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py +2 -2
  45. junifer/markers/parcel_aggregation.py +11 -7
  46. junifer/markers/reho/reho_parcels.py +2 -2
  47. junifer/markers/reho/reho_spheres.py +2 -2
  48. junifer/markers/sphere_aggregation.py +11 -7
  49. junifer/markers/temporal_snr/temporal_snr_parcels.py +2 -2
  50. junifer/markers/temporal_snr/temporal_snr_spheres.py +2 -2
  51. junifer/markers/tests/test_ets_rss.py +3 -3
  52. junifer/markers/tests/test_parcel_aggregation.py +24 -24
  53. junifer/markers/tests/test_sphere_aggregation.py +6 -6
  54. junifer/pipeline/__init__.pyi +2 -2
  55. junifer/pipeline/pipeline_component_registry.py +299 -0
  56. junifer/pipeline/tests/test_pipeline_component_registry.py +201 -0
  57. junifer/preprocess/confounds/fmriprep_confound_remover.py +6 -3
  58. junifer/testing/__init__.pyi +2 -2
  59. junifer/testing/registry.py +4 -7
  60. junifer/testing/tests/test_testing_registry.py +9 -17
  61. {junifer-0.0.6.dev154.dist-info → junifer-0.0.6.dev194.dist-info}/METADATA +1 -1
  62. {junifer-0.0.6.dev154.dist-info → junifer-0.0.6.dev194.dist-info}/RECORD +86 -72
  63. {junifer-0.0.6.dev154.dist-info → junifer-0.0.6.dev194.dist-info}/WHEEL +1 -1
  64. junifer/data/coordinates.py +0 -408
  65. junifer/data/masks.py +0 -670
  66. junifer/pipeline/registry.py +0 -245
  67. junifer/pipeline/tests/test_registry.py +0 -150
  68. /junifer/data/{VOIs → coordinates/VOIs}/meta/AutobiographicalMemory_VOIs.txt +0 -0
  69. /junifer/data/{VOIs → coordinates/VOIs}/meta/CogAC_VOIs.txt +0 -0
  70. /junifer/data/{VOIs → coordinates/VOIs}/meta/CogAR_VOIs.txt +0 -0
  71. /junifer/data/{VOIs → coordinates/VOIs}/meta/DMNBuckner_VOIs.txt +0 -0
  72. /junifer/data/{VOIs → coordinates/VOIs}/meta/Dosenbach2010_MNI_VOIs.txt +0 -0
  73. /junifer/data/{VOIs → coordinates/VOIs}/meta/Empathy_VOIs.txt +0 -0
  74. /junifer/data/{VOIs → coordinates/VOIs}/meta/Motor_VOIs.txt +0 -0
  75. /junifer/data/{VOIs → coordinates/VOIs}/meta/MultiTask_VOIs.txt +0 -0
  76. /junifer/data/{VOIs → coordinates/VOIs}/meta/PhysioStress_VOIs.txt +0 -0
  77. /junifer/data/{VOIs → coordinates/VOIs}/meta/Power2011_MNI_VOIs.txt +0 -0
  78. /junifer/data/{VOIs → coordinates/VOIs}/meta/Power2013_MNI_VOIs.tsv +0 -0
  79. /junifer/data/{VOIs → coordinates/VOIs}/meta/Rew_VOIs.txt +0 -0
  80. /junifer/data/{VOIs → coordinates/VOIs}/meta/Somatosensory_VOIs.txt +0 -0
  81. /junifer/data/{VOIs → coordinates/VOIs}/meta/ToM_VOIs.txt +0 -0
  82. /junifer/data/{VOIs → coordinates/VOIs}/meta/VigAtt_VOIs.txt +0 -0
  83. /junifer/data/{VOIs → coordinates/VOIs}/meta/WM_VOIs.txt +0 -0
  84. /junifer/data/{VOIs → coordinates/VOIs}/meta/eMDN_VOIs.txt +0 -0
  85. /junifer/data/{VOIs → coordinates/VOIs}/meta/eSAD_VOIs.txt +0 -0
  86. /junifer/data/{VOIs → coordinates/VOIs}/meta/extDMN_VOIs.txt +0 -0
  87. {junifer-0.0.6.dev154.dist-info → junifer-0.0.6.dev194.dist-info}/AUTHORS.rst +0 -0
  88. {junifer-0.0.6.dev154.dist-info → junifer-0.0.6.dev194.dist-info}/LICENSE.md +0 -0
  89. {junifer-0.0.6.dev154.dist-info → junifer-0.0.6.dev194.dist-info}/entry_points.txt +0 -0
  90. {junifer-0.0.6.dev154.dist-info → junifer-0.0.6.dev194.dist-info}/top_level.txt +0 -0
@@ -1,12 +1,12 @@
1
1
  junifer/__init__.py,sha256=2McgH1yNue6Z1V26-uN_mfMjbTcx4CLhym-DMBl5xA4,266
2
- junifer/__init__.pyi,sha256=A6Janz0-4ad7zQiLsIo-jnUkpHJjzGTt_KcVsJJLSDM,454
3
- junifer/_version.py,sha256=MS0QndM_4yP2Z7oA1lYS6bkQYdBSXOon8nJAe6DI4xQ,428
2
+ junifer/__init__.pyi,sha256=uPLuY27S7AY4kFzJX0ncCpzHnWJdztveMJpY3Di-wwQ,482
3
+ junifer/_version.py,sha256=3Rg3rnSlDZ28mFFdWqzgj1pw9KotN5k2vqz_IgbP7SM,428
4
4
  junifer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  junifer/stats.py,sha256=BjQb2lfTGDP9l4UuQYmJFcJJNRfbJDGlNvC06SJaDDE,6237
6
6
  junifer/api/__init__.py,sha256=aAXW_KAEGQ8aAP5Eni2G1R4MWBF7UgjKOgM6akLuJco,252
7
7
  junifer/api/__init__.pyi,sha256=UJu55ApMFd43N0xlQyNKrYpCdzqhAxA3Jjaj0ETwCXU,169
8
- junifer/api/decorators.py,sha256=SkQjDYcB_cwG7AS5Q_BU1-T3b38T5RHzbW3aQHP-NzM,2723
9
- junifer/api/functions.py,sha256=XCw5e4FKG72NumQJyFK1R4yAdOmEOO7jTjDR0dNNi7E,13056
8
+ junifer/api/decorators.py,sha256=nzricZsr0xawk3WDUCyKLWC6WcKN_T0SYIOkGVeoZs8,2726
9
+ junifer/api/functions.py,sha256=Q3X5d_sB5SKcPfNLOi49GnXdln_FUqLpo1TbUK-2j1M,12792
10
10
  junifer/api/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  junifer/api/queue_context/__init__.py,sha256=glr8x4aMm4EvVrHywDIlugdNlwD1RzqV2FTDNPqYQZ4,204
12
12
  junifer/api/queue_context/__init__.pyi,sha256=LoDQFGZ9wCDmgx5a1_nhKo4zOSvqViXZ8V882DksF7U,246
@@ -39,7 +39,7 @@ junifer/api/res/fsl/flirt,sha256=tSjiUco8ui8AbHD7mTzChEwbR0Rf_4iJTgzYTPF_WuQ,42
39
39
  junifer/api/res/fsl/img2imgcoord,sha256=Zmaw3oJYrEltcXiPyEubXry9ppAq3SND52tdDWGgeZk,49
40
40
  junifer/api/res/fsl/run_fsl_docker.sh,sha256=pq-fcNdLuvHzVIQePN4GebZGlcE2UF-xj5rBIqAMz4g,1122
41
41
  junifer/api/res/fsl/std2imgcoord,sha256=-X5wRH6XMl0yqnTACJX6MFhO8DFOEWg42MHRxGvimXg,49
42
- junifer/api/tests/test_functions.py,sha256=JjtdB_dFnikGdgkhtvzoJsV_jbW0X1cNRqjFk2jJmLI,17747
42
+ junifer/api/tests/test_functions.py,sha256=1l91zo7HUAyI5Uj_Brn8P-FHCSDdBkhs3rHIs56uMbI,17805
43
43
  junifer/cli/__init__.py,sha256=DS3kZKHeVDxt6d1MLBerZ2fcAwrEBHee5JOBhOLajUI,197
44
44
  junifer/cli/__init__.pyi,sha256=PiV4znUnzSeuSSJGz-RT8N21PiMqoSMwYcypi7nt2Js,40
45
45
  junifer/cli/cli.py,sha256=LoIWiAU6e5UtcP2Hibx-PDo2QcDqEbrlvzTTSI8rPUQ,13202
@@ -70,40 +70,54 @@ junifer/configs/juseless/datagrabbers/tests/test_ixi_vbm.py,sha256=8jxpNZelXwpJG
70
70
  junifer/configs/juseless/datagrabbers/tests/test_ucla.py,sha256=NfEKlpaMNImiPLGyETDDCMoWZ7_oHGsiVAbQNYsfi3o,3252
71
71
  junifer/configs/juseless/datagrabbers/tests/test_ukb_vbm.py,sha256=b9hjc1mgO--PSRC3id2EzzfE2yWNsuZ2UI47a6sfGZU,1025
72
72
  junifer/data/__init__.py,sha256=xJDI2QKtdjcNzpd1oVFM3guh1SFHM6jKstl7pFmzOuk,267
73
- junifer/data/__init__.pyi,sha256=p7vnpEIYvh6rbaMNXJRt1V22efudAW0uw2Y-34gmYoU,798
74
- junifer/data/coordinates.py,sha256=1HH2Kz5nzZKN6-wJRmYotPH76fPaL1yYbCt8AhONogk,12496
75
- junifer/data/masks.py,sha256=omKOJLnUpmI1yVUkckWy9HhzbFZuYbYdOyr49xFvEwU,21640
76
- junifer/data/parcellations.py,sha256=mw1xa6yFWAaVktTkkpCt2ZgSUapZbPwloN2UoPdLzdg,65490
73
+ junifer/data/__init__.pyi,sha256=qYszjUYcbFi_2zO23MnbA2HhTW-Ad2oh1pqPQYd6yt0,542
74
+ junifer/data/_dispatch.py,sha256=_hmlIXuuuLJBbY5VH6lohJzhbMB7KEhFkVFwRDEdR_E,6189
75
+ junifer/data/pipeline_data_registry_base.py,sha256=_3NheI2Wu5RuKI87WwR1bRzcNyZv_0UcL9q07jmPdh8,1922
77
76
  junifer/data/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
77
  junifer/data/template_spaces.py,sha256=9uZuFztBGNZk3mhUI2h0oQMajjx6Wv31Fx11pGlDI20,6510
79
- junifer/data/utils.py,sha256=dIdhCJMJHoXsjTjEMi2b-NXyCiSKsFZQt-5Ca00Obd4,1330
80
- junifer/data/VOIs/meta/AutobiographicalMemory_VOIs.txt,sha256=9af38naeL18Tlt_gy_ep6vyTAxOB336JYjbo5FvP8PQ,686
81
- junifer/data/VOIs/meta/CogAC_VOIs.txt,sha256=Sr5_E712OLdeQRyUcDNM0wLBvZIyO6gc9Q7KkyJHX1A,398
82
- junifer/data/VOIs/meta/CogAR_VOIs.txt,sha256=t3NLwEVUZTPP34p15SaB3UInLrQyK-7Qc4iLBuQlZu8,189
83
- junifer/data/VOIs/meta/DMNBuckner_VOIs.txt,sha256=2trjgKF00PnCxTtfCXYmr-J7P_Jl-iX_qUocmzOR1nk,86
84
- junifer/data/VOIs/meta/Dosenbach2010_MNI_VOIs.txt,sha256=rIh9-OCBG0if2v1V4CeK27ZDVXPg6A2sFSqcwHZ1i3Y,3372
85
- junifer/data/VOIs/meta/Empathy_VOIs.txt,sha256=8rwZkEe-TrI7vT_ArzqIMSSlkGvg3RJG3PlHoxZKYjU,486
86
- junifer/data/VOIs/meta/Motor_VOIs.txt,sha256=NFpqgxlSrt9x3Tb9vn1ISogc684rRgVQbFPlifmI8S4,219
87
- junifer/data/VOIs/meta/MultiTask_VOIs.txt,sha256=T2f7_9qWpJcfMic-Pgg4VyNDrcNDOzN9kE81WM_6elk,220
88
- junifer/data/VOIs/meta/PhysioStress_VOIs.txt,sha256=6hLYGMPFFnbhtu_9J3_hDul0LfUYAwhygzdLLG6R0qU,378
89
- junifer/data/VOIs/meta/Power2011_MNI_VOIs.txt,sha256=0tLVEmCEUjwJ7Rsdibv2qxilc2u-jvoBgCbOs7ax6iU,3836
90
- junifer/data/VOIs/meta/Power2013_MNI_VOIs.tsv,sha256=FERfBfExvbBWQxOJ4xRITiFB1rL4O4PpUeHFKPS03Fk,3836
91
- junifer/data/VOIs/meta/Rew_VOIs.txt,sha256=dCYre7kP4Ca-S52W0weU7N2UUZM8522WYlb9d7kUo-A,569
92
- junifer/data/VOIs/meta/Somatosensory_VOIs.txt,sha256=OylWpfoluG65whXqEODQ5qvreMdYXBQskMjmnvA2fYc,295
93
- junifer/data/VOIs/meta/ToM_VOIs.txt,sha256=sMSqMCe6p0MGwIWEGkelMWuFH5sfpJ8ONjGlqmRe_Vw,323
94
- junifer/data/VOIs/meta/VigAtt_VOIs.txt,sha256=EPklcFTcfKnuI08QjYIrE_87BSQLipU_VZYRWuSXhY8,353
95
- junifer/data/VOIs/meta/WM_VOIs.txt,sha256=6uyH5nsv9i5bKS_aEYCgg3wgE7hjw5DI1gD37lUR5Zg,518
96
- junifer/data/VOIs/meta/eMDN_VOIs.txt,sha256=p5D4GdBuGl1d5IbXhsuj3XIU6UGMxhzCR-T8Dwfxz30,382
97
- junifer/data/VOIs/meta/eSAD_VOIs.txt,sha256=DwgDEFSZoAojG5RP6HpSvlRPpXItBzx8ms-1zoSxKRk,268
98
- junifer/data/VOIs/meta/extDMN_VOIs.txt,sha256=Ogx1QvqZcnXDM3ncF2ha78br8xwQ5wklSjHygtoLpyI,317
78
+ junifer/data/utils.py,sha256=R-AMuerRiJLU4aMK9_WWXFJn2yOuXtZ-YKrdHvFjZf4,1454
79
+ junifer/data/coordinates/__init__.py,sha256=ffM8rwcHLgHAWixJbKrATrbUKzX940V1UF6RAxZdUMg,186
80
+ junifer/data/coordinates/__init__.pyi,sha256=Z-Ti5XD3HigkZ8uYN6oYsLqw40-F1GvTVQ5QAy08Wng,88
81
+ junifer/data/coordinates/_ants_coordinates_warper.py,sha256=Q08zC0MBQPwj94V8G6ZGdRoYA7V3ACNCDlcFlLXc0j8,2809
82
+ junifer/data/coordinates/_coordinates.py,sha256=SVBhFdESAafQ1Vi4LfPaQxwx4s_PxBCjpq3OyQ1akbc,11953
83
+ junifer/data/coordinates/_fsl_coordinates_warper.py,sha256=9R0JiyYWXogMr1i6DLepXkjb1aeTZ3CUoxvAPuxNGls,2568
84
+ junifer/data/coordinates/VOIs/meta/AutobiographicalMemory_VOIs.txt,sha256=9af38naeL18Tlt_gy_ep6vyTAxOB336JYjbo5FvP8PQ,686
85
+ junifer/data/coordinates/VOIs/meta/CogAC_VOIs.txt,sha256=Sr5_E712OLdeQRyUcDNM0wLBvZIyO6gc9Q7KkyJHX1A,398
86
+ junifer/data/coordinates/VOIs/meta/CogAR_VOIs.txt,sha256=t3NLwEVUZTPP34p15SaB3UInLrQyK-7Qc4iLBuQlZu8,189
87
+ junifer/data/coordinates/VOIs/meta/DMNBuckner_VOIs.txt,sha256=2trjgKF00PnCxTtfCXYmr-J7P_Jl-iX_qUocmzOR1nk,86
88
+ junifer/data/coordinates/VOIs/meta/Dosenbach2010_MNI_VOIs.txt,sha256=rIh9-OCBG0if2v1V4CeK27ZDVXPg6A2sFSqcwHZ1i3Y,3372
89
+ junifer/data/coordinates/VOIs/meta/Empathy_VOIs.txt,sha256=8rwZkEe-TrI7vT_ArzqIMSSlkGvg3RJG3PlHoxZKYjU,486
90
+ junifer/data/coordinates/VOIs/meta/Motor_VOIs.txt,sha256=NFpqgxlSrt9x3Tb9vn1ISogc684rRgVQbFPlifmI8S4,219
91
+ junifer/data/coordinates/VOIs/meta/MultiTask_VOIs.txt,sha256=T2f7_9qWpJcfMic-Pgg4VyNDrcNDOzN9kE81WM_6elk,220
92
+ junifer/data/coordinates/VOIs/meta/PhysioStress_VOIs.txt,sha256=6hLYGMPFFnbhtu_9J3_hDul0LfUYAwhygzdLLG6R0qU,378
93
+ junifer/data/coordinates/VOIs/meta/Power2011_MNI_VOIs.txt,sha256=0tLVEmCEUjwJ7Rsdibv2qxilc2u-jvoBgCbOs7ax6iU,3836
94
+ junifer/data/coordinates/VOIs/meta/Power2013_MNI_VOIs.tsv,sha256=FERfBfExvbBWQxOJ4xRITiFB1rL4O4PpUeHFKPS03Fk,3836
95
+ junifer/data/coordinates/VOIs/meta/Rew_VOIs.txt,sha256=dCYre7kP4Ca-S52W0weU7N2UUZM8522WYlb9d7kUo-A,569
96
+ junifer/data/coordinates/VOIs/meta/Somatosensory_VOIs.txt,sha256=OylWpfoluG65whXqEODQ5qvreMdYXBQskMjmnvA2fYc,295
97
+ junifer/data/coordinates/VOIs/meta/ToM_VOIs.txt,sha256=sMSqMCe6p0MGwIWEGkelMWuFH5sfpJ8ONjGlqmRe_Vw,323
98
+ junifer/data/coordinates/VOIs/meta/VigAtt_VOIs.txt,sha256=EPklcFTcfKnuI08QjYIrE_87BSQLipU_VZYRWuSXhY8,353
99
+ junifer/data/coordinates/VOIs/meta/WM_VOIs.txt,sha256=6uyH5nsv9i5bKS_aEYCgg3wgE7hjw5DI1gD37lUR5Zg,518
100
+ junifer/data/coordinates/VOIs/meta/eMDN_VOIs.txt,sha256=p5D4GdBuGl1d5IbXhsuj3XIU6UGMxhzCR-T8Dwfxz30,382
101
+ junifer/data/coordinates/VOIs/meta/eSAD_VOIs.txt,sha256=DwgDEFSZoAojG5RP6HpSvlRPpXItBzx8ms-1zoSxKRk,268
102
+ junifer/data/coordinates/VOIs/meta/extDMN_VOIs.txt,sha256=Ogx1QvqZcnXDM3ncF2ha78br8xwQ5wklSjHygtoLpyI,317
103
+ junifer/data/coordinates/tests/test_coordinates.py,sha256=_c2P4oaDGpsmui5gJBe_jN6HLGiKxONkYPR69sRBUlU,4219
104
+ junifer/data/masks/__init__.py,sha256=eEEhHglyVEx1LrqwXjq3cOmjf4sTsgBstRx5-k7zIQU,180
105
+ junifer/data/masks/__init__.pyi,sha256=lcgr8gmWDPibC4RxnWBXb8DDpIkO73Aax09u6VXiJJI,114
106
+ junifer/data/masks/_ants_mask_warper.py,sha256=6bBqFO9HNoYG5eYw4IVNZEv2sL58Koz-YXCdpM7U6NQ,4937
107
+ junifer/data/masks/_fsl_mask_warper.py,sha256=mxxJy4WYbbMHEZSpNaBL1RDT4H0RmhA4u8fp7oOW_k4,2567
108
+ junifer/data/masks/_masks.py,sha256=ku9DX2FFo1Ndjzvh-SZzcSK_--eF46H1zcS-1SMsfvg,20953
109
+ junifer/data/masks/tests/test_masks.py,sha256=RDYe8Z46M_hHdZn3hOvdqQXqiMlxJ6454gD3d1ee3zM,16132
99
110
  junifer/data/masks/ukb/UKB_15K_GM_template.nii.gz,sha256=jcX1pDOrDsoph8cPMNFVKH5gZYio5G4rJNpOFXm9wJI,946636
100
111
  junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean.nii.gz,sha256=j6EY8EtRnUuRxeKgD65Q6B0GPEPIALKDJEIje1TfnAU,88270
101
112
  junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean_3mm.nii.gz,sha256=crb_y7YO1vjjf2PwbRJUm8KamPK6fx1y0B_l-E3g8FY,12862
102
113
  junifer/data/masks/vickery-patil/GMprob0.2_cortex_3mm_NA_rm.nii.gz,sha256=jfMe_4H9XEnArYms5bSQbqS2V1_HbLHTfI5amQa_Pes,8700
103
- junifer/data/tests/test_coordinates.py,sha256=BNkz9qFbnwAI0oVlIm_XrT-z4Vsia_rMtMVaoFXT6mU,4328
114
+ junifer/data/parcellations/__init__.py,sha256=6-Ysil3NyZ69V6rWx4RO15_d-iDKizfbHuxSjsHNt24,188
115
+ junifer/data/parcellations/__init__.pyi,sha256=lhBHTbMDizzqUqVHrx2eyfPFodrTBgMFeTgxfESSkQ8,140
116
+ junifer/data/parcellations/_ants_parcellation_warper.py,sha256=1oOY_O0Ft0NOkGjk4Cx8lyChy7QYJRZbOtdQfDpo4jI,5399
117
+ junifer/data/parcellations/_fsl_parcellation_warper.py,sha256=PwGXT1fEchjIIyQJVr53Ksssf6hHJTtJwgJj8t65LTA,2839
118
+ junifer/data/parcellations/_parcellations.py,sha256=6aU7CaOixDB-jhe1AW-l6STpOtniNduL-bFUH6m3Lgs,65773
119
+ junifer/data/parcellations/tests/test_parcellations.py,sha256=43h7lR7nEvo9vTK-AeUDMk0XdGTqyzQI8isYl8dWw6s,38339
104
120
  junifer/data/tests/test_data_utils.py,sha256=_DaiC8K79gs9HFHxr-udNeE2YTM6JA0-1i-K2cqK9qA,1087
105
- junifer/data/tests/test_masks.py,sha256=pL42xTzrvy0qLCqpG5p5CdCCqjJ9n5nz7BCUofydfag,15723
106
- junifer/data/tests/test_parcellations.py,sha256=ZEU1VHIK0AyxpclcJhG_0rQU0phaBU_dHP7Erfi3mN8,38222
107
121
  junifer/data/tests/test_template_spaces.py,sha256=PJulN7xHpAcSOTY-UzTG_WPywZEBSlAZGiNG4gzk1_8,3144
108
122
  junifer/datagrabber/__init__.py,sha256=EHIK-lbjuvkt0V8ypFvLSt85OAAXSkaxBmVlCbNNz8M,323
109
123
  junifer/datagrabber/__init__.pyi,sha256=zOQE4TaCKXBTHnNqgmECtsszWIOHYiQ1CUEeXXFU9F4,832
@@ -119,7 +133,7 @@ junifer/datagrabber/aomic/__init__.py,sha256=ATxzXq9NBPmWowTMuL77zqrmIbbnk0Wd1iX
119
133
  junifer/datagrabber/aomic/__init__.pyi,sha256=Rp6C075fZDdKY8VIq508_g4NhVj8bWzR6zb9yln761Q,189
120
134
  junifer/datagrabber/aomic/id1000.py,sha256=wJpZiSZrsfil5w-506bOtKMWm3FllnbB8-cMvGDPiLM,7219
121
135
  junifer/datagrabber/aomic/piop1.py,sha256=AcjIueSUmhepuIfmbMEpocV7grUbJ2xKXG94O1dq2FA,9637
122
- junifer/datagrabber/aomic/piop2.py,sha256=cAlHfrFzFMnX2kFSaTXpRH6kgPlcpFV0R1EDi3rXqNs,9297
136
+ junifer/datagrabber/aomic/piop2.py,sha256=-3M7miEtubF8Dl66OBtaPOlNiQZiVkvTOlgsEExP-ic,9298
123
137
  junifer/datagrabber/aomic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
138
  junifer/datagrabber/aomic/tests/test_id1000.py,sha256=AWacDroSxvRjzozFjyRlDpiJpPflYRfhDm_RANrYAKM,3283
125
139
  junifer/datagrabber/aomic/tests/test_piop1.py,sha256=J9ei2HLzdJPciysWjRo33cbZsqPF1OEDySmQWWNvYuM,4820
@@ -167,22 +181,22 @@ junifer/markers/__init__.py,sha256=wHAxljlZppxgXimSJw21mp9oUYYyaID4LYfeBolva30,3
167
181
  junifer/markers/__init__.pyi,sha256=9a72D9k6esTzLvmvULXHOeaQtIchjtN7VELpCeaddsM,957
168
182
  junifer/markers/base.py,sha256=__Z0owDdjTwb7alQneOeoaUqaeCVbHwFRnaRZERi37M,8364
169
183
  junifer/markers/brainprint.py,sha256=WqK78RVaFX1e0AcwpkNzCUEZWRSMgoMCX1-wNOXDhmk,15116
170
- junifer/markers/ets_rss.py,sha256=4b1rUIMt4RISNSMQqATJadYheyT-YOnadWZDwGsFELk,4273
171
- junifer/markers/parcel_aggregation.py,sha256=WKS_GILu80JF6IMK0BsHLvq7NefqlHt6u37b2lOx7_Q,8349
184
+ junifer/markers/ets_rss.py,sha256=xbAO0T3k12XMuzf88OMEDaFh0yytIs-2OVkLABMLN6A,4256
185
+ junifer/markers/parcel_aggregation.py,sha256=BUDjmhSKQTUnk7h4wwsYyy_LP1KVkuj77hisCsyQcdc,8394
172
186
  junifer/markers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
- junifer/markers/sphere_aggregation.py,sha256=E_f6bEf_EzuK1WDreO1Hstsp2hXTwaVBysbVX9gnX2Y,7910
187
+ junifer/markers/sphere_aggregation.py,sha256=hvHDBrkS2cE30TmYJVcy_jPR5OFnask-JqHP9Pqy0vM,7972
174
188
  junifer/markers/utils.py,sha256=b6Bt_isqsOD2OF7oHvEpHyilauxYZzyz8YcbGWq6J4A,3833
175
189
  junifer/markers/complexity/__init__.py,sha256=6ZoTQy7hU_vnH65VlJbi61VfPAdg-RpuV84aXhzr8j0,552
176
190
  junifer/markers/complexity/__init__.pyi,sha256=I2IbSuKnUEf03Yunv884ASBxKjQ9_fenACccjaxTkyc,495
177
191
  junifer/markers/complexity/complexity_base.py,sha256=_JIqrglcPG8lEzCdM27o0KLOyLcncebk_YVBq_-pPak,4165
178
- junifer/markers/complexity/hurst_exponent.py,sha256=gx8ZRzfJq6UIwnfPFXhZrHdMuhWO-arqM12iZx7ZzBo,4697
179
- junifer/markers/complexity/multiscale_entropy_auc.py,sha256=6FbRHA1CAPaZQNUL6VZsjODDDMUPpCb9CN2qQWE_U50,4928
180
- junifer/markers/complexity/perm_entropy.py,sha256=WPE4bdPZ9_FyCemR3C30mdOxQDYrM0N3uZz3-2DYmrc,4446
192
+ junifer/markers/complexity/hurst_exponent.py,sha256=ypdKo7MFQeHsJnqQX2PtD0W3Vx1p3_f0xSD6rgr1wns,4654
193
+ junifer/markers/complexity/multiscale_entropy_auc.py,sha256=fHVFt9KL3d2on0_35lPG-eeLK_2dKqbJC9ybIG49eYo,4885
194
+ junifer/markers/complexity/perm_entropy.py,sha256=kP5dREqGfMe8BS3MGGiOSbAsIJVkCooVQ8cH6jOadLI,4403
181
195
  junifer/markers/complexity/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
- junifer/markers/complexity/range_entropy.py,sha256=Bhc5gvsM8BS9FQIAHWiFzySMuOz8nkcFWGrxUxDxDKI,4577
183
- junifer/markers/complexity/range_entropy_auc.py,sha256=PuuyluXhzghPY66er-bWIlDMEFyHMfFTFtY_JhrVmPs,5060
184
- junifer/markers/complexity/sample_entropy.py,sha256=a-4qBavXNTSC-JnnCJBnGJu1Wwn5s0pNjfeFrXp-3qc,4528
185
- junifer/markers/complexity/weighted_perm_entropy.py,sha256=bMQOlgvOrIimFmlAhKCqutOewTNc3xMF4hZuhiB-Vj8,4580
196
+ junifer/markers/complexity/range_entropy.py,sha256=AbKmDM435JzvsEPktZFfTiiPjfR-ztnCZyPJ-Lp_Heg,4534
197
+ junifer/markers/complexity/range_entropy_auc.py,sha256=1cDMItM30uP4WkIR7Z-jtdB5807TeKp7huXHW5o0vvA,5017
198
+ junifer/markers/complexity/sample_entropy.py,sha256=_ipcIX9b833hJa7sg9d5qnjnn6nd3SNwsZOQfVnF8Vg,4485
199
+ junifer/markers/complexity/weighted_perm_entropy.py,sha256=U04g-apF-6abVa5LPyMSutbIxWBRuTRj4t9mtA0rn0s,4537
186
200
  junifer/markers/complexity/tests/test_complexity_base.py,sha256=0E0AjjBqenIb6ZzK-EMie24J4vVjWUjAPfkvvognu9Y,453
187
201
  junifer/markers/complexity/tests/test_hurst_exponent.py,sha256=s1G8xF5rBc0TgWbe7nKFgcwlAjUb1Yabw3ALEcXYBj0,2311
188
202
  junifer/markers/complexity/tests/test_multiscale_entropy_auc.py,sha256=UDScZLPYc1S1kpL04_Rcj2U_dgRhq2VzNOEDv5O8WGE,2382
@@ -196,68 +210,68 @@ junifer/markers/falff/__init__.pyi,sha256=X-q2zBjUX0imQ37yN2Cg5gKfDvq8sh_9y2hRH4
196
210
  junifer/markers/falff/_afni_falff.py,sha256=QNi_4MU4_sfnfXedrYHT-kn17KCDE6a7ELfSGmRZPmA,4521
197
211
  junifer/markers/falff/_junifer_falff.py,sha256=Datf23VxbiD6ZiC-3tANN9MMVHuZKzQx04nX1GXA25c,4417
198
212
  junifer/markers/falff/falff_base.py,sha256=1VjEZMd7BpXDc2subm0VzZNxFp6uxMb9QjBmMC6tDVg,4903
199
- junifer/markers/falff/falff_parcels.py,sha256=raciVfTA8GDfftqnraWVyRsaSsNiz82K1bJkVq9fmME,6046
200
- junifer/markers/falff/falff_spheres.py,sha256=h-A2B8D2KvnvLzBcBeB6Kt3EcXhcfvvIMvOeztiA-Z8,6675
213
+ junifer/markers/falff/falff_parcels.py,sha256=RuACr7qjxJ6fDo8KrbO2fUwpLtzLQXPr9WX4n--XUb0,6029
214
+ junifer/markers/falff/falff_spheres.py,sha256=ZjcPLg29LBfsCLD8iZk0pW0nItH5uLmsn4nlLoUNB78,6668
201
215
  junifer/markers/falff/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
216
  junifer/markers/falff/tests/test_falff_parcels.py,sha256=Z3n1i8dkYbdXgouUjfIif9yLv5MubBEdrtAA-a6kRcc,4349
203
217
  junifer/markers/falff/tests/test_falff_spheres.py,sha256=-VLEvFaF8CMCN_7FLYCSfP7MMjy-gm1Zgu13je5Pku8,4373
204
218
  junifer/markers/functional_connectivity/__init__.py,sha256=dGTn69eS7a3rylMQh_wKlO28UmYGjsoDEGu4q5sgQFA,230
205
219
  junifer/markers/functional_connectivity/__init__.pyi,sha256=qfw6WVyE65u-5NZNi0xPa8zZVtkRfFvwyl4jHH2Xl00,539
206
220
  junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py,sha256=V2-WbUOGoCtW32A0VOWO-2G-iBiG5mV88Z2EvTjS3HY,5696
207
- junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py,sha256=nAvTT4ZLqW-uDAQ_r5hT__TbxFTqTkjm4BJ-1YD7a7s,4745
208
- junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py,sha256=atV7iNjnFbIKbzBkzFYtgF0cbetESvv3a5R-SLzrt6Y,5412
221
+ junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py,sha256=4vRiph2nHK6iBQcbhAo6LACp_QLOvA8ADyXSUQvXvfQ,4736
222
+ junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py,sha256=BZYiUv_E3VYCr500zKGeb3q7WpN816UxR0_gRvawkvA,5405
209
223
  junifer/markers/functional_connectivity/functional_connectivity_base.py,sha256=dUv-pfgAhkHuz_zSKClEYeOkcIdhjdJ1fiNvvWhATDg,5639
210
- junifer/markers/functional_connectivity/functional_connectivity_parcels.py,sha256=pefRn1EhYegN1KCs1VvMOe4vj4KO-5kSzXJxoUzHSvw,4213
211
- junifer/markers/functional_connectivity/functional_connectivity_spheres.py,sha256=-N-OO3vl1Djl1nSTJAey_Re3BH2tpyr4UpXfR38ogWw,4946
224
+ junifer/markers/functional_connectivity/functional_connectivity_parcels.py,sha256=lSgzwfQzfLB73CAZNqNpuGuQ-ENcGhG2c_yiVsJY0Pw,4204
225
+ junifer/markers/functional_connectivity/functional_connectivity_spheres.py,sha256=qM82D9h1FmFH8sCfJuA7WEqnzCH-4Lizpk7mQYuf7xA,4939
212
226
  junifer/markers/functional_connectivity/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
213
227
  junifer/markers/functional_connectivity/tests/test_crossparcellation_functional_connectivity.py,sha256=CP8ZZoTciMoI9c-VVsLF9mJivyzPB6C4mZE0tlL52pI,3231
214
228
  junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py,sha256=y0O-eBjOzUp77g6o_II7D5KB2rKtDz_a_hez-MPDU3M,2482
215
229
  junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py,sha256=NYWe8kdSVVXlluLm074koDE6xw_t0bhPn47kRYMg1vA,2522
216
230
  junifer/markers/functional_connectivity/tests/test_functional_connectivity_base.py,sha256=RmPTrG0uLKb5RgdHXUnH6lon60FxN1JCtr-dsTBaX28,522
217
- junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py,sha256=GiRtQ-cbbmM4_oekGjIDtFaNkmYON_eSf3F4jzS0XCo,3876
218
- junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py,sha256=Bu2vicoxET-eHYqmfiPtYmFOhBCjBsXO7vv9UzLdYJQ,4143
231
+ junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py,sha256=EVJTTtCws93g3AYVzA0XDIYY_BUMun4v40dsS_YXUBs,3891
232
+ junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py,sha256=OU2FWAH0Gb4gEOF0m1PAoo5xLKVPetNkwV-ssQTZ1Yw,4157
219
233
  junifer/markers/reho/__init__.py,sha256=WZf4A0XaRThjl8SlFOhvTLUfhTHp5koLxZgowsgTSAE,211
220
234
  junifer/markers/reho/__init__.pyi,sha256=_aFb-Ry_EP2OMU6xRL4GlfuDpSl_egHllL-fz7vXjcE,118
221
235
  junifer/markers/reho/_afni_reho.py,sha256=iaZFPJbyB9-QQAZ5-kKxwN0APB5MH85pOAChq-JFLNI,6469
222
236
  junifer/markers/reho/_junifer_reho.py,sha256=7-jD28YQQWb3dfT6SxyYfGugFSq8wi7_2hUA-ryiGAo,9307
223
237
  junifer/markers/reho/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
224
238
  junifer/markers/reho/reho_base.py,sha256=Tdnl5SJ66p461UJ-UilEGKrMdEPwGMemN_QIQgmc8o8,4065
225
- junifer/markers/reho/reho_parcels.py,sha256=GTYy1cMe0RdAgkvgZnnIGlQ-u3EfkxhRmBloPNUrFuk,6421
226
- junifer/markers/reho/reho_spheres.py,sha256=dTTTksT1iqtPnc0lMtbVU-FmeLAO8Ml6N3fBLGyIaac,7015
239
+ junifer/markers/reho/reho_parcels.py,sha256=tfGasSaAI-ioxVBTD2L_4gJQthoAq5Fp9e5iRS3mXhI,6404
240
+ junifer/markers/reho/reho_spheres.py,sha256=5IcqWfGO4dgBFaWB4s1QIJnt2M3li0VUz5oeQimG_BA,7008
227
241
  junifer/markers/reho/tests/test_reho_parcels.py,sha256=bRtDi91qRcRYaRqqQjuSU6NuNz-KwLVCoTYo-e5VmsI,4075
228
242
  junifer/markers/reho/tests/test_reho_spheres.py,sha256=VyyQ3hhD6ArFc1BmigmAdePACB1EMQlo1mDr2QKvT2I,3989
229
243
  junifer/markers/temporal_snr/__init__.py,sha256=86hNMyaSfWlWOXZ6m9reSDtMIgUaByOXjcxCvo7LmDw,235
230
244
  junifer/markers/temporal_snr/__init__.pyi,sha256=20FhG9ZkAHQfmJ0r5p6fRMxhK8xrFQeFr0cgTrqu3ik,162
231
245
  junifer/markers/temporal_snr/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
246
  junifer/markers/temporal_snr/temporal_snr_base.py,sha256=xWBTrwsrI44DCV5okRaliLJHrlvDs5LkD0xLEIGZcMc,3874
233
- junifer/markers/temporal_snr/temporal_snr_parcels.py,sha256=f85zsqYVox7B4WNGXe8XigBGaVxWannz8EmTc4S7GpQ,3279
234
- junifer/markers/temporal_snr/temporal_snr_spheres.py,sha256=sU0VzxQdr5a1XESUPwPsGF5NAT7EzSLnmPT9nxCKcLA,3987
247
+ junifer/markers/temporal_snr/temporal_snr_parcels.py,sha256=O8kBU-Jzlf12m-DaBLxZtHEVVqBW0jiGlbMgdFk8ots,3262
248
+ junifer/markers/temporal_snr/temporal_snr_spheres.py,sha256=DPh4CziLyMNbdfzqobR2RHx2aKSy6UfZMRS5aGfNuF8,3980
235
249
  junifer/markers/temporal_snr/tests/test_temporal_snr_base.py,sha256=KRln5ibLTJJQ_f3pnioATfwyhK5htGc2o2J7CPcoyfs,426
236
250
  junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py,sha256=JnsLIF0qT4L3JfSIBeHxFsugQ89P9by0CmNwNJiFnZY,2042
237
251
  junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py,sha256=cxYnKreFRauIs3NYaaB1EKeFEHZxPplxOuywWNcUnLg,2175
238
252
  junifer/markers/tests/test_brainprint.py,sha256=fjwGQZk0Or0VUaMxcOr8i_onXRInfspcm3wD_qjqxDs,1588
239
- junifer/markers/tests/test_ets_rss.py,sha256=KCPVx0e1Xcku8ktPjKUXG7OQA6a_dgc7kuzTIVSRff0,2603
253
+ junifer/markers/tests/test_ets_rss.py,sha256=kKjdpn6QlJuE4D-JvFcwp9MlxLYzeS_X_O-egM2d0H0,2618
240
254
  junifer/markers/tests/test_marker_utils.py,sha256=SR3ADWI3uGv4ozYqVu-rMZnJVqP6JnjLBgo6qUm16Wk,1478
241
255
  junifer/markers/tests/test_markers_base.py,sha256=XYe1Z_88h2g1WX6Em4aM8VMyBuCpy5sNHbbpC0I89m4,2979
242
- junifer/markers/tests/test_parcel_aggregation.py,sha256=FkB0O0HjTk1CnLOn-dzNs_9_byUOISRc4jV92shN2Kc,27655
243
- junifer/markers/tests/test_sphere_aggregation.py,sha256=TGn5S7zKK0SJ4nHIxRZQSCpqRBmz7c8Sb8C79dLoHjE,10611
256
+ junifer/markers/tests/test_parcel_aggregation.py,sha256=04OqtY_Z-KW4W1jU5K6GeWnLpBYheM1shcH1Jgw_L3k,27798
257
+ junifer/markers/tests/test_sphere_aggregation.py,sha256=HPaLD6xKdewTt0iANz3nYOD7ZI-g7BqMTiRdV-4sM8M,10669
244
258
  junifer/onthefly/__init__.py,sha256=TA6tPuw54ynDlumb9Ii-2p59hw2rGoCMe1-vQ89JzZ8,238
245
259
  junifer/onthefly/_brainprint.py,sha256=-q5j5xOkuZD_f-pjWi-b8VRqM9ZXDk1TnccuQDfLwz4,3860
246
260
  junifer/onthefly/read_transform.py,sha256=kZ-N_fKe9glaBTjhj_HXrdTtWXGI-fMoBpsawcOgsTw,4340
247
261
  junifer/onthefly/tests/test_read_transform.py,sha256=D2C3IpXQHdsJSF07v8rEwGntLGXjZOserlRhebJUAVM,4719
248
262
  junifer/pipeline/__init__.py,sha256=rxKQGRwc6_sts1KhVIcVVpuXeiFABf11mQQ2h5jgA3U,194
249
- junifer/pipeline/__init__.pyi,sha256=Er7IidlO8-sJQr2iTs8cDNCrd_sl2P4Q_bmaAJSdTcQ,338
263
+ junifer/pipeline/__init__.pyi,sha256=hhcvNcABhtLaUQiZdTjo5sMWC3rtDkwVshL0sxD5JAE,399
250
264
  junifer/pipeline/marker_collection.py,sha256=1xcJqeOZ_IerB7PAMN1itWBv8UR6lUW9xXRoIu4qLXU,5557
265
+ junifer/pipeline/pipeline_component_registry.py,sha256=TVtAFf0QjeES7TFovc6_nUlkczNeQnDpq85aqNr5Gjg,9484
251
266
  junifer/pipeline/pipeline_step_mixin.py,sha256=wakimkG8GC0PWkFHMHIfgzM2yak41xLrzbVRH0oe8D4,7613
252
267
  junifer/pipeline/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
253
- junifer/pipeline/registry.py,sha256=BiUG2yKxbcqN9rrU7ATEG4U9QNFWuZnvbHgCP00h6l4,6748
254
268
  junifer/pipeline/singleton.py,sha256=c5U8Xn10MQqaXjlLzxLbw3AmSYW6aTw_iSL0rDkbuMU,1011
255
269
  junifer/pipeline/update_meta_mixin.py,sha256=A_gYCPqdPlM0Xpum9TjJowb41O7ntxQg6y4YOgYeyy4,1564
256
270
  junifer/pipeline/utils.py,sha256=CAp0P7rZST7bsJ9lSlkvZgIJebHW2cIm8VXTuu1A6tE,10291
257
271
  junifer/pipeline/workdir_manager.py,sha256=8vBKdb7FtQaGV66Ngu_ucJJPrh2xoxf_1jMeNpJKT2Y,8050
258
272
  junifer/pipeline/tests/test_marker_collection.py,sha256=edBHfmwMTXG_q0ZagApbAbkFNoegi3hVEQiNcBtZOKc,6959
273
+ junifer/pipeline/tests/test_pipeline_component_registry.py,sha256=ww_akEhtvE1_fsWbX5Yd5w_G2Ki6w_5MInfihwwRYFk,5800
259
274
  junifer/pipeline/tests/test_pipeline_step_mixin.py,sha256=_ykZzyNzREXy-r_yv1gY_jquLZzVBl8qwYrVORCKY_k,7807
260
- junifer/pipeline/tests/test_registry.py,sha256=APC8PNmA3zJnMjLz90rZw_wK0hoag6St8AmQY6MUEqA,4121
261
275
  junifer/pipeline/tests/test_update_meta_mixin.py,sha256=UeWwpUi-Q5WVd36Fgfn_utXplSVXMSjLcdO2mR2xLTk,1355
262
276
  junifer/pipeline/tests/test_workdir_manager.py,sha256=E1WY4C-GDsx2c49sePqr1WR_Y3nZ1kiRn4Veu506uTs,2801
263
277
  junifer/preprocess/__init__.py,sha256=91D43p254il88g-7sSN64M7HsCvwytYoiTS_GLEr37Y,342
@@ -266,7 +280,7 @@ junifer/preprocess/base.py,sha256=v6azVA3RwDe3HriYlcaISOX1A6gYgFUKNzQeIDLx92Q,66
266
280
  junifer/preprocess/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
281
  junifer/preprocess/confounds/__init__.py,sha256=L3CquKcndFb2b8yVo-XLi-zsNCe8MMKUN41UOVdooWc,270
268
282
  junifer/preprocess/confounds/__init__.pyi,sha256=iC70cqcWNMX4JM42RcUgKb9YX8ciK8oVERdWWjo-13c,102
269
- junifer/preprocess/confounds/fmriprep_confound_remover.py,sha256=WW4ybrUJJiTHcigRhNxuz1gyAqrSjufL4CinDvjqkAM,20307
283
+ junifer/preprocess/confounds/fmriprep_confound_remover.py,sha256=XVF3CUXk-UX3Jb36bjZLdfE_hfzHize21PFbNXQBBKU,20369
270
284
  junifer/preprocess/confounds/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
271
285
  junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py,sha256=xN9tPkktuRHQtmY1UOP0H_sXT7LXPY282kMgYkoQTFE,19973
272
286
  junifer/preprocess/smoothing/__init__.py,sha256=7aTwvAG522kA76QQwqxwY5zV_6asyPaaH2uSMTaKQls,216
@@ -299,16 +313,16 @@ junifer/storage/tests/test_sqlite.py,sha256=JPfE6r34o86XkKaB6yjMVmO_2vUV40DjsaHI
299
313
  junifer/storage/tests/test_storage_base.py,sha256=YzgfspuggzXejyPIoRCPST3ZzH9Pi7dgl0IHN7kynXM,3071
300
314
  junifer/storage/tests/test_utils.py,sha256=vRGhbeOsSn2Izhjh5AaaJkp6X2EoIQVH3a-9COFVnzg,11854
301
315
  junifer/testing/__init__.py,sha256=gqfrX2c7I31VYBmH9hCUERO-61NwubT1cvy1bKM0NqU,249
302
- junifer/testing/__init__.pyi,sha256=16_tADqmPgoTpzYTJJr2yTf3WVrHAXcFUESRLRy0FoM,111
316
+ junifer/testing/__init__.pyi,sha256=OFqGc5GCjoD4hPVOYNWvnvvP_RVF-oO-UQR8n9HDVtM,133
303
317
  junifer/testing/datagrabbers.py,sha256=iYS4IjYbOFQw4fH8e7HNvBOsYgVjMZNodNCLoI25oNA,6601
304
318
  junifer/testing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
- junifer/testing/registry.py,sha256=iGH3hAt36VtvnZO7UQjybHGh2FI8vo1InY3uDSct5Ps,720
319
+ junifer/testing/registry.py,sha256=MVO-xlzSH3pAv9ySTqO1R3sNqdnfD1Qh7oA775ZxlXs,688
306
320
  junifer/testing/utils.py,sha256=TEIwdV7etWglXOFQX1O5ZR18GzfYZ0LcRqXuK-JPo8U,591
307
321
  junifer/testing/data/sub-0001_task-anticipation_acq-seq_desc-confounds_regressors.tsv,sha256=iDY1apF5caxnyGqvBYWer5JRKQIfuOwoT-SzzsgL59s,406849
308
322
  junifer/testing/tests/test_oasisvmbtesting_datagrabber.py,sha256=BtfExi4VF-jZsi5A3hHS_EGm2O_bJoXnxWF44Z_4i24,794
309
323
  junifer/testing/tests/test_partlycloudytesting_datagrabber.py,sha256=ggU8XQQ6F0HSCh9VkbNGoaZM6CUxKXKlcuf_kGkrRF4,1297
310
324
  junifer/testing/tests/test_spmauditory_datagrabber.py,sha256=1G1emk-Ze59HiNLaYsyIz5O1YGW9darcqlzvhE-J_Mc,919
311
- junifer/testing/tests/test_testing_registry.py,sha256=oerticBaPRaRZm3yANzInLac0Mqph3Y0aZPQFayu7xA,827
325
+ junifer/testing/tests/test_testing_registry.py,sha256=MK4a_q4MHieCvYhnhuPm_dH76lX0yyDOZP8tZ30aC7Y,508
312
326
  junifer/tests/test_main.py,sha256=GMff7jlisGM9_FsiUwWDte43j-KQJGFRYZpwRRqTkd8,373
313
327
  junifer/tests/test_stats.py,sha256=3vPMgYYpWxk8ECDFOMm3-dFBlh4XxjL83SwRBSBAHok,4155
314
328
  junifer/utils/__init__.py,sha256=I3tYaePAD_ZEU-36-TJ_OYeqW_aMmi5MZ3jmqie6RfU,260
@@ -321,10 +335,10 @@ junifer/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
321
335
  junifer/utils/tests/test_fs.py,sha256=WQS7cKlKEZ742CIuiOYYpueeAhY9PqlastfDVpVVtvE,923
322
336
  junifer/utils/tests/test_helpers.py,sha256=k5qqfxK8dFyuewTJyR1Qn6-nFaYNuVr0ysc18bfPjyU,929
323
337
  junifer/utils/tests/test_logging.py,sha256=duO4ou365hxwa_kwihFtKPLaL6LC5XHiyhOijrrngbA,8009
324
- junifer-0.0.6.dev154.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
325
- junifer-0.0.6.dev154.dist-info/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
326
- junifer-0.0.6.dev154.dist-info/METADATA,sha256=Kljmkx4jg_H4t0HWYaY2v-G7bCG7xf5P6fCvSICEbt0,8448
327
- junifer-0.0.6.dev154.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
328
- junifer-0.0.6.dev154.dist-info/entry_points.txt,sha256=6O8ru0BP-SP7YMUZiizFNoaZ2HvJpadO2G7nKk4PwjI,48
329
- junifer-0.0.6.dev154.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
330
- junifer-0.0.6.dev154.dist-info/RECORD,,
338
+ junifer-0.0.6.dev194.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
339
+ junifer-0.0.6.dev194.dist-info/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
340
+ junifer-0.0.6.dev194.dist-info/METADATA,sha256=6DbhevG928yw2l9pvkrhTN-fDl_Y9GEcgc2GDrNUi7U,8448
341
+ junifer-0.0.6.dev194.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
342
+ junifer-0.0.6.dev194.dist-info/entry_points.txt,sha256=6O8ru0BP-SP7YMUZiizFNoaZ2HvJpadO2G7nKk4PwjI,48
343
+ junifer-0.0.6.dev194.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
344
+ junifer-0.0.6.dev194.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.2.0)
2
+ Generator: setuptools (75.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5