junifer 0.0.5.dev180__py3-none-any.whl → 0.0.5.dev202__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/data/masks/ukb/UKB_15K_GM_template.nii.gz +0 -0
- junifer/data/masks.py +36 -0
- junifer/data/tests/test_masks.py +17 -0
- junifer/datagrabber/tests/test_datalad_base.py +4 -4
- junifer/datagrabber/tests/test_pattern_datalad.py +4 -4
- junifer/markers/base.py +49 -23
- junifer/markers/brainprint.py +56 -265
- junifer/markers/complexity/complexity_base.py +23 -43
- junifer/markers/complexity/tests/test_hurst_exponent.py +4 -3
- junifer/markers/complexity/tests/test_multiscale_entropy_auc.py +4 -3
- junifer/markers/complexity/tests/test_perm_entropy.py +4 -3
- junifer/markers/complexity/tests/test_range_entropy.py +4 -3
- junifer/markers/complexity/tests/test_range_entropy_auc.py +4 -3
- junifer/markers/complexity/tests/test_sample_entropy.py +4 -3
- junifer/markers/complexity/tests/test_weighted_perm_entropy.py +4 -3
- junifer/markers/ets_rss.py +24 -42
- junifer/markers/falff/falff_base.py +17 -46
- junifer/markers/falff/falff_parcels.py +53 -27
- junifer/markers/falff/falff_spheres.py +57 -29
- junifer/markers/falff/tests/test_falff_parcels.py +39 -23
- junifer/markers/falff/tests/test_falff_spheres.py +39 -23
- junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py +32 -48
- junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py +16 -10
- junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py +13 -9
- junifer/markers/functional_connectivity/functional_connectivity_base.py +26 -40
- junifer/markers/functional_connectivity/functional_connectivity_parcels.py +6 -6
- junifer/markers/functional_connectivity/functional_connectivity_spheres.py +6 -6
- junifer/markers/functional_connectivity/tests/test_crossparcellation_functional_connectivity.py +8 -4
- junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py +6 -3
- junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py +6 -3
- junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py +6 -3
- junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py +10 -5
- junifer/markers/parcel_aggregation.py +40 -59
- junifer/markers/reho/reho_base.py +6 -27
- junifer/markers/reho/reho_parcels.py +23 -15
- junifer/markers/reho/reho_spheres.py +22 -16
- junifer/markers/reho/tests/test_reho_parcels.py +8 -3
- junifer/markers/reho/tests/test_reho_spheres.py +8 -3
- junifer/markers/sphere_aggregation.py +40 -59
- junifer/markers/temporal_snr/temporal_snr_base.py +20 -32
- junifer/markers/temporal_snr/temporal_snr_parcels.py +6 -6
- junifer/markers/temporal_snr/temporal_snr_spheres.py +6 -6
- junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py +6 -3
- junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py +6 -3
- junifer/markers/tests/test_brainprint.py +23 -12
- junifer/markers/tests/test_collection.py +9 -8
- junifer/markers/tests/test_ets_rss.py +15 -9
- junifer/markers/tests/test_markers_base.py +17 -18
- junifer/markers/tests/test_parcel_aggregation.py +93 -32
- junifer/markers/tests/test_sphere_aggregation.py +72 -19
- junifer/pipeline/pipeline_step_mixin.py +11 -1
- junifer/pipeline/tests/test_registry.py +1 -1
- {junifer-0.0.5.dev180.dist-info → junifer-0.0.5.dev202.dist-info}/METADATA +1 -1
- {junifer-0.0.5.dev180.dist-info → junifer-0.0.5.dev202.dist-info}/RECORD +60 -59
- {junifer-0.0.5.dev180.dist-info → junifer-0.0.5.dev202.dist-info}/WHEEL +1 -1
- {junifer-0.0.5.dev180.dist-info → junifer-0.0.5.dev202.dist-info}/AUTHORS.rst +0 -0
- {junifer-0.0.5.dev180.dist-info → junifer-0.0.5.dev202.dist-info}/LICENSE.md +0 -0
- {junifer-0.0.5.dev180.dist-info → junifer-0.0.5.dev202.dist-info}/entry_points.txt +0 -0
- {junifer-0.0.5.dev180.dist-info → junifer-0.0.5.dev202.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: junifer
|
3
|
-
Version: 0.0.5.
|
3
|
+
Version: 0.0.5.dev202
|
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>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
junifer/__init__.py,sha256=-T9XmiCCL0j3YLx-0Pph15sPfL5FlcBDscajjJ-V4sU,604
|
2
|
-
junifer/_version.py,sha256=
|
2
|
+
junifer/_version.py,sha256=SfX7XiFnafHKOiS803yiurBc4KSehKu8JZHgAVcL1wA,428
|
3
3
|
junifer/stats.py,sha256=BjQb2lfTGDP9l4UuQYmJFcJJNRfbJDGlNvC06SJaDDE,6237
|
4
4
|
junifer/api/__init__.py,sha256=lwyIF0hPc7fICuSoddJfay0LPqlTRxHJ_xbtizgFYZA,312
|
5
5
|
junifer/api/cli.py,sha256=53pews3mXkJ7DUDSkV51PbitYnuVAdQRkWG-gjO08Uw,16142
|
@@ -58,7 +58,7 @@ junifer/configs/juseless/datagrabbers/tests/test_ucla.py,sha256=NfEKlpaMNImiPLGy
|
|
58
58
|
junifer/configs/juseless/datagrabbers/tests/test_ukb_vbm.py,sha256=b9hjc1mgO--PSRC3id2EzzfE2yWNsuZ2UI47a6sfGZU,1025
|
59
59
|
junifer/data/__init__.py,sha256=orvgHyoKkgw9aAR5WCucKI7ZBu9dZL7e7au3TECFD-s,968
|
60
60
|
junifer/data/coordinates.py,sha256=1HH2Kz5nzZKN6-wJRmYotPH76fPaL1yYbCt8AhONogk,12496
|
61
|
-
junifer/data/masks.py,sha256=
|
61
|
+
junifer/data/masks.py,sha256=omKOJLnUpmI1yVUkckWy9HhzbFZuYbYdOyr49xFvEwU,21640
|
62
62
|
junifer/data/parcellations.py,sha256=mw1xa6yFWAaVktTkkpCt2ZgSUapZbPwloN2UoPdLzdg,65490
|
63
63
|
junifer/data/template_spaces.py,sha256=7I2Hgy-Wh-Uqm_vOvpYQ5H9CFg1Qn5YRX4QU-HZAloc,5796
|
64
64
|
junifer/data/utils.py,sha256=dIdhCJMJHoXsjTjEMi2b-NXyCiSKsFZQt-5Ca00Obd4,1330
|
@@ -81,12 +81,13 @@ junifer/data/VOIs/meta/WM_VOIs.txt,sha256=6uyH5nsv9i5bKS_aEYCgg3wgE7hjw5DI1gD37l
|
|
81
81
|
junifer/data/VOIs/meta/eMDN_VOIs.txt,sha256=p5D4GdBuGl1d5IbXhsuj3XIU6UGMxhzCR-T8Dwfxz30,382
|
82
82
|
junifer/data/VOIs/meta/eSAD_VOIs.txt,sha256=DwgDEFSZoAojG5RP6HpSvlRPpXItBzx8ms-1zoSxKRk,268
|
83
83
|
junifer/data/VOIs/meta/extDMN_VOIs.txt,sha256=Ogx1QvqZcnXDM3ncF2ha78br8xwQ5wklSjHygtoLpyI,317
|
84
|
+
junifer/data/masks/ukb/UKB_15K_GM_template.nii.gz,sha256=jcX1pDOrDsoph8cPMNFVKH5gZYio5G4rJNpOFXm9wJI,946636
|
84
85
|
junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean.nii.gz,sha256=j6EY8EtRnUuRxeKgD65Q6B0GPEPIALKDJEIje1TfnAU,88270
|
85
86
|
junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean_3mm.nii.gz,sha256=crb_y7YO1vjjf2PwbRJUm8KamPK6fx1y0B_l-E3g8FY,12862
|
86
87
|
junifer/data/masks/vickery-patil/GMprob0.2_cortex_3mm_NA_rm.nii.gz,sha256=jfMe_4H9XEnArYms5bSQbqS2V1_HbLHTfI5amQa_Pes,8700
|
87
88
|
junifer/data/tests/test_coordinates.py,sha256=BNkz9qFbnwAI0oVlIm_XrT-z4Vsia_rMtMVaoFXT6mU,4328
|
88
89
|
junifer/data/tests/test_data_utils.py,sha256=_DaiC8K79gs9HFHxr-udNeE2YTM6JA0-1i-K2cqK9qA,1087
|
89
|
-
junifer/data/tests/test_masks.py,sha256=
|
90
|
+
junifer/data/tests/test_masks.py,sha256=pL42xTzrvy0qLCqpG5p5CdCCqjJ9n5nz7BCUofydfag,15723
|
90
91
|
junifer/data/tests/test_parcellations.py,sha256=ZEU1VHIK0AyxpclcJhG_0rQU0phaBU_dHP7Erfi3mN8,38222
|
91
92
|
junifer/data/tests/test_template_spaces.py,sha256=PJulN7xHpAcSOTY-UzTG_WPywZEBSlAZGiNG4gzk1_8,3144
|
92
93
|
junifer/datagrabber/__init__.py,sha256=uR31UhuNwNZ0i9m3oo8RZtHUyMbnG2sd1i9aLa6aG_o,967
|
@@ -110,11 +111,11 @@ junifer/datagrabber/hcp1200/hcp1200.py,sha256=xgIU-WZXrEvI7we2RX3sqKowKz1NxtdjtH
|
|
110
111
|
junifer/datagrabber/hcp1200/tests/test_hcp1200.py,sha256=KJ-Jq01l0a6TaboG898qjBdPTHG1E3PZtHCjJ7n-1X0,10765
|
111
112
|
junifer/datagrabber/tests/test_base.py,sha256=fZdVhNhvfht9lpTHrAUf5E6mAfNNUP7OTQ5KLaBQ1gI,3506
|
112
113
|
junifer/datagrabber/tests/test_datagrabber_utils.py,sha256=x1nqFiHI9xHBQFwXji0DPUG8crVoEzw6zmi3pKdhJQk,6513
|
113
|
-
junifer/datagrabber/tests/test_datalad_base.py,sha256=
|
114
|
+
junifer/datagrabber/tests/test_datalad_base.py,sha256=71erxpAECuy8iLtkmq_SRqfP4sKQf4uEb3O8CThBHT0,16285
|
114
115
|
junifer/datagrabber/tests/test_dmcc13_benchmark.py,sha256=DcqkDXXBoabHFVbxekGR2NZyGeugGlxpOwXIwy38Ofg,9109
|
115
116
|
junifer/datagrabber/tests/test_multiple.py,sha256=Mx3xfDrQiWG2W5MW24P5L2XiSeALpJ2-jFlzWkKtu9w,5659
|
116
117
|
junifer/datagrabber/tests/test_pattern.py,sha256=H55jYRPfT3rMsoIQOAnWJgw3nGrkU7m2xFa3-ed6NQE,9527
|
117
|
-
junifer/datagrabber/tests/test_pattern_datalad.py,sha256=
|
118
|
+
junifer/datagrabber/tests/test_pattern_datalad.py,sha256=5lA4hkYNaIAVy3GjcVqBXj1d-3qd8-14Pv0z6QGqgtI,6483
|
118
119
|
junifer/datareader/__init__.py,sha256=9TXyHpy5o-yfs-q8QHGfjUCcWdORp7qv_jrokAOPBP8,293
|
119
120
|
junifer/datareader/default.py,sha256=peNQTYHx9x3ZqGjm2Uj5yCLlsJ6X86r0f2XiUgnpw1M,6745
|
120
121
|
junifer/datareader/tests/test_default_reader.py,sha256=9dPZSkba1YQjFsA0XwdUbx5sq8DVIEZoy_WfMAcvRus,5220
|
@@ -136,15 +137,15 @@ junifer/external/nilearn/__init__.py,sha256=Cx9SM-AHU2OmyC5n6YmRv2JMEYp3qoVnxl5b
|
|
136
137
|
junifer/external/nilearn/junifer_nifti_spheres_masker.py,sha256=DbSK2hKrgpHZ_vCRLbVv3YJpLZNkEAG0HFfQQpG6zdU,16546
|
137
138
|
junifer/external/nilearn/tests/test_junifer_nifti_spheres_masker.py,sha256=zpvBYIvaNjUj9fIUg5K78LRzJqbyMYlUo2UQYS9_lo4,12275
|
138
139
|
junifer/markers/__init__.py,sha256=u4BFgS_3GXAwFN2HfqdAhlBkyenLw4IYlMlwXwnjkVQ,1235
|
139
|
-
junifer/markers/base.py,sha256=
|
140
|
-
junifer/markers/brainprint.py,sha256=
|
140
|
+
junifer/markers/base.py,sha256=__Z0owDdjTwb7alQneOeoaUqaeCVbHwFRnaRZERi37M,8364
|
141
|
+
junifer/markers/brainprint.py,sha256=Y5tcEKOSWNLdOTrxn72UzHpFplmYuo4xOmugGpSPhaE,15115
|
141
142
|
junifer/markers/collection.py,sha256=13nccLKJp2nMs07hLpvcSYlvfj_L1fntmFrYeAE2jLM,5544
|
142
|
-
junifer/markers/ets_rss.py,sha256=
|
143
|
-
junifer/markers/parcel_aggregation.py,sha256=
|
144
|
-
junifer/markers/sphere_aggregation.py,sha256=
|
143
|
+
junifer/markers/ets_rss.py,sha256=4b1rUIMt4RISNSMQqATJadYheyT-YOnadWZDwGsFELk,4273
|
144
|
+
junifer/markers/parcel_aggregation.py,sha256=WKS_GILu80JF6IMK0BsHLvq7NefqlHt6u37b2lOx7_Q,8349
|
145
|
+
junifer/markers/sphere_aggregation.py,sha256=E_f6bEf_EzuK1WDreO1Hstsp2hXTwaVBysbVX9gnX2Y,7910
|
145
146
|
junifer/markers/utils.py,sha256=b6Bt_isqsOD2OF7oHvEpHyilauxYZzyz8YcbGWq6J4A,3833
|
146
147
|
junifer/markers/complexity/__init__.py,sha256=M0e022QPcVlpfWUiXss4odv8EZg1fEtECmIgG-w00CU,1028
|
147
|
-
junifer/markers/complexity/complexity_base.py,sha256=
|
148
|
+
junifer/markers/complexity/complexity_base.py,sha256=_JIqrglcPG8lEzCdM27o0KLOyLcncebk_YVBq_-pPak,4165
|
148
149
|
junifer/markers/complexity/hurst_exponent.py,sha256=gx8ZRzfJq6UIwnfPFXhZrHdMuhWO-arqM12iZx7ZzBo,4697
|
149
150
|
junifer/markers/complexity/multiscale_entropy_auc.py,sha256=6FbRHA1CAPaZQNUL6VZsjODDDMUPpCb9CN2qQWE_U50,4928
|
150
151
|
junifer/markers/complexity/perm_entropy.py,sha256=WPE4bdPZ9_FyCemR3C30mdOxQDYrM0N3uZz3-2DYmrc,4446
|
@@ -153,68 +154,68 @@ junifer/markers/complexity/range_entropy_auc.py,sha256=PuuyluXhzghPY66er-bWIlDME
|
|
153
154
|
junifer/markers/complexity/sample_entropy.py,sha256=a-4qBavXNTSC-JnnCJBnGJu1Wwn5s0pNjfeFrXp-3qc,4528
|
154
155
|
junifer/markers/complexity/weighted_perm_entropy.py,sha256=bMQOlgvOrIimFmlAhKCqutOewTNc3xMF4hZuhiB-Vj8,4580
|
155
156
|
junifer/markers/complexity/tests/test_complexity_base.py,sha256=0E0AjjBqenIb6ZzK-EMie24J4vVjWUjAPfkvvognu9Y,453
|
156
|
-
junifer/markers/complexity/tests/test_hurst_exponent.py,sha256=
|
157
|
-
junifer/markers/complexity/tests/test_multiscale_entropy_auc.py,sha256=
|
158
|
-
junifer/markers/complexity/tests/test_perm_entropy.py,sha256=
|
159
|
-
junifer/markers/complexity/tests/test_range_entropy.py,sha256=
|
160
|
-
junifer/markers/complexity/tests/test_range_entropy_auc.py,sha256=
|
161
|
-
junifer/markers/complexity/tests/test_sample_entropy.py,sha256=
|
162
|
-
junifer/markers/complexity/tests/test_weighted_perm_entropy.py,sha256=
|
157
|
+
junifer/markers/complexity/tests/test_hurst_exponent.py,sha256=s1G8xF5rBc0TgWbe7nKFgcwlAjUb1Yabw3ALEcXYBj0,2311
|
158
|
+
junifer/markers/complexity/tests/test_multiscale_entropy_auc.py,sha256=UDScZLPYc1S1kpL04_Rcj2U_dgRhq2VzNOEDv5O8WGE,2382
|
159
|
+
junifer/markers/complexity/tests/test_perm_entropy.py,sha256=VHhqXF1r0RbHvZj383bYy_WhN_do7Mt-Pr1NWG0z13Q,2299
|
160
|
+
junifer/markers/complexity/tests/test_range_entropy.py,sha256=RXM0jSL32VA37jYe36mmv2WU0xgiNJ-S79hsb-ZfYqQ,2302
|
161
|
+
junifer/markers/complexity/tests/test_range_entropy_auc.py,sha256=__uKRJtAuWG-e8JxxfNUjrNfeIqU_uHQDq_RKyERdgk,2338
|
162
|
+
junifer/markers/complexity/tests/test_sample_entropy.py,sha256=rfbiguVq7CUwYIvYBYFCSSfH44nqGLSZYFfwFb155KI,2310
|
163
|
+
junifer/markers/complexity/tests/test_weighted_perm_entropy.py,sha256=yDWKEaUbxrnrG6J2NlktLfwSBre5OuXd63kEof7t8PM,2373
|
163
164
|
junifer/markers/falff/__init__.py,sha256=qGr8HFhTnwTMWGTf96nRLYZgIXYmf4DLLIcsMiS62p0,240
|
164
165
|
junifer/markers/falff/_afni_falff.py,sha256=QNi_4MU4_sfnfXedrYHT-kn17KCDE6a7ELfSGmRZPmA,4521
|
165
166
|
junifer/markers/falff/_junifer_falff.py,sha256=Datf23VxbiD6ZiC-3tANN9MMVHuZKzQx04nX1GXA25c,4417
|
166
|
-
junifer/markers/falff/falff_base.py,sha256=
|
167
|
-
junifer/markers/falff/falff_parcels.py,sha256=
|
168
|
-
junifer/markers/falff/falff_spheres.py,sha256=
|
169
|
-
junifer/markers/falff/tests/test_falff_parcels.py,sha256=
|
170
|
-
junifer/markers/falff/tests/test_falff_spheres.py,sha256
|
167
|
+
junifer/markers/falff/falff_base.py,sha256=1VjEZMd7BpXDc2subm0VzZNxFp6uxMb9QjBmMC6tDVg,4903
|
168
|
+
junifer/markers/falff/falff_parcels.py,sha256=raciVfTA8GDfftqnraWVyRsaSsNiz82K1bJkVq9fmME,6046
|
169
|
+
junifer/markers/falff/falff_spheres.py,sha256=h-A2B8D2KvnvLzBcBeB6Kt3EcXhcfvvIMvOeztiA-Z8,6675
|
170
|
+
junifer/markers/falff/tests/test_falff_parcels.py,sha256=Z3n1i8dkYbdXgouUjfIif9yLv5MubBEdrtAA-a6kRcc,4349
|
171
|
+
junifer/markers/falff/tests/test_falff_spheres.py,sha256=-VLEvFaF8CMCN_7FLYCSfP7MMjy-gm1Zgu13je5Pku8,4373
|
171
172
|
junifer/markers/functional_connectivity/__init__.py,sha256=j7HshYNBjSbjXXM8h_PBKORk--Gb3qw-MSEm0i3XgTI,672
|
172
|
-
junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py,sha256=
|
173
|
-
junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py,sha256=
|
174
|
-
junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py,sha256=
|
175
|
-
junifer/markers/functional_connectivity/functional_connectivity_base.py,sha256=
|
176
|
-
junifer/markers/functional_connectivity/functional_connectivity_parcels.py,sha256=
|
177
|
-
junifer/markers/functional_connectivity/functional_connectivity_spheres.py,sha256=
|
178
|
-
junifer/markers/functional_connectivity/tests/test_crossparcellation_functional_connectivity.py,sha256=
|
179
|
-
junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py,sha256=
|
180
|
-
junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py,sha256=
|
173
|
+
junifer/markers/functional_connectivity/crossparcellation_functional_connectivity.py,sha256=s4msc-yewHKaKmAySe8EoGMl98UWuJkZp8KKaBxiuzQ,5160
|
174
|
+
junifer/markers/functional_connectivity/edge_functional_connectivity_parcels.py,sha256=GyNMVhwIEAR5qebRaKcV7aiRvgBexZvKhNqmCYX76Oc,4548
|
175
|
+
junifer/markers/functional_connectivity/edge_functional_connectivity_spheres.py,sha256=FU1GM2Lu6SNK3dmsiWLLvawuYWU1xxYMS7uIbVvXwd4,5157
|
176
|
+
junifer/markers/functional_connectivity/functional_connectivity_base.py,sha256=XCfq4AabQt0vUpF4rxHtmm_bpKhZ3p-rBibm8RvUTes,5151
|
177
|
+
junifer/markers/functional_connectivity/functional_connectivity_parcels.py,sha256=O_v5XsdXTadSKy_T6MIrpEeTtvHU6qprZ2qV6E4ypNg,3973
|
178
|
+
junifer/markers/functional_connectivity/functional_connectivity_spheres.py,sha256=haiTBkye0gCg2Mvcc_lYxGk9ZC4xeDrappQuiHODEpk,4673
|
179
|
+
junifer/markers/functional_connectivity/tests/test_crossparcellation_functional_connectivity.py,sha256=_cBlWwlgubG-HRcdc7leudNKOk9rDMWaf-KecxiZ6Ec,3252
|
180
|
+
junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_parcels.py,sha256=Ck0Hu3G9xvELshPrlE-ClaY2taK7rWMF74bpzDXNdpM,2130
|
181
|
+
junifer/markers/functional_connectivity/tests/test_edge_functional_connectivity_spheres.py,sha256=iU_KCv4y7k02xFnHKfqmq1omTzc83aUHqgw89IdS5ms,2335
|
181
182
|
junifer/markers/functional_connectivity/tests/test_functional_connectivity_base.py,sha256=RmPTrG0uLKb5RgdHXUnH6lon60FxN1JCtr-dsTBaX28,522
|
182
|
-
junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py,sha256=
|
183
|
-
junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py,sha256=
|
183
|
+
junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py,sha256=ORnuc_PKYNCiVN-m1ubtxJ6Xg484i2BDU9_PPX-BJW0,3234
|
184
|
+
junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py,sha256=PYdebNfwU4ArkpjmxehlLbMF5I_meRMla3yR0CN_4mE,5330
|
184
185
|
junifer/markers/reho/__init__.py,sha256=_6WkTQcg0ksZguSQGi1XuoMKuGwYs5tvDLVZ1h6xB5E,232
|
185
186
|
junifer/markers/reho/_afni_reho.py,sha256=iaZFPJbyB9-QQAZ5-kKxwN0APB5MH85pOAChq-JFLNI,6469
|
186
187
|
junifer/markers/reho/_junifer_reho.py,sha256=7-jD28YQQWb3dfT6SxyYfGugFSq8wi7_2hUA-ryiGAo,9307
|
187
|
-
junifer/markers/reho/reho_base.py,sha256=
|
188
|
-
junifer/markers/reho/reho_parcels.py,sha256=
|
189
|
-
junifer/markers/reho/reho_spheres.py,sha256=
|
190
|
-
junifer/markers/reho/tests/test_reho_parcels.py,sha256=
|
191
|
-
junifer/markers/reho/tests/test_reho_spheres.py,sha256=
|
188
|
+
junifer/markers/reho/reho_base.py,sha256=Tdnl5SJ66p461UJ-UilEGKrMdEPwGMemN_QIQgmc8o8,4065
|
189
|
+
junifer/markers/reho/reho_parcels.py,sha256=GTYy1cMe0RdAgkvgZnnIGlQ-u3EfkxhRmBloPNUrFuk,6421
|
190
|
+
junifer/markers/reho/reho_spheres.py,sha256=dTTTksT1iqtPnc0lMtbVU-FmeLAO8Ml6N3fBLGyIaac,7015
|
191
|
+
junifer/markers/reho/tests/test_reho_parcels.py,sha256=bRtDi91qRcRYaRqqQjuSU6NuNz-KwLVCoTYo-e5VmsI,4075
|
192
|
+
junifer/markers/reho/tests/test_reho_spheres.py,sha256=VyyQ3hhD6ArFc1BmigmAdePACB1EMQlo1mDr2QKvT2I,3989
|
192
193
|
junifer/markers/temporal_snr/__init__.py,sha256=L9mT7lX8jdIPiyFxIxb19qJtt7QKGElIoK76ekOVZNc,300
|
193
|
-
junifer/markers/temporal_snr/temporal_snr_base.py,sha256
|
194
|
-
junifer/markers/temporal_snr/temporal_snr_parcels.py,sha256=
|
195
|
-
junifer/markers/temporal_snr/temporal_snr_spheres.py,sha256=
|
194
|
+
junifer/markers/temporal_snr/temporal_snr_base.py,sha256=xWBTrwsrI44DCV5okRaliLJHrlvDs5LkD0xLEIGZcMc,3874
|
195
|
+
junifer/markers/temporal_snr/temporal_snr_parcels.py,sha256=f85zsqYVox7B4WNGXe8XigBGaVxWannz8EmTc4S7GpQ,3279
|
196
|
+
junifer/markers/temporal_snr/temporal_snr_spheres.py,sha256=sU0VzxQdr5a1XESUPwPsGF5NAT7EzSLnmPT9nxCKcLA,3987
|
196
197
|
junifer/markers/temporal_snr/tests/test_temporal_snr_base.py,sha256=KRln5ibLTJJQ_f3pnioATfwyhK5htGc2o2J7CPcoyfs,426
|
197
|
-
junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py,sha256=
|
198
|
-
junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py,sha256=
|
199
|
-
junifer/markers/tests/test_brainprint.py,sha256=
|
200
|
-
junifer/markers/tests/test_collection.py,sha256=
|
201
|
-
junifer/markers/tests/test_ets_rss.py,sha256=
|
198
|
+
junifer/markers/temporal_snr/tests/test_temporal_snr_parcels.py,sha256=JnsLIF0qT4L3JfSIBeHxFsugQ89P9by0CmNwNJiFnZY,2042
|
199
|
+
junifer/markers/temporal_snr/tests/test_temporal_snr_spheres.py,sha256=cxYnKreFRauIs3NYaaB1EKeFEHZxPplxOuywWNcUnLg,2175
|
200
|
+
junifer/markers/tests/test_brainprint.py,sha256=fjwGQZk0Or0VUaMxcOr8i_onXRInfspcm3wD_qjqxDs,1588
|
201
|
+
junifer/markers/tests/test_collection.py,sha256=bpaEz4oG44vF9YXiONiNmSvGSDH9gysMjLhWqqw7cqk,6964
|
202
|
+
junifer/markers/tests/test_ets_rss.py,sha256=KCPVx0e1Xcku8ktPjKUXG7OQA6a_dgc7kuzTIVSRff0,2603
|
202
203
|
junifer/markers/tests/test_marker_utils.py,sha256=SR3ADWI3uGv4ozYqVu-rMZnJVqP6JnjLBgo6qUm16Wk,1478
|
203
|
-
junifer/markers/tests/test_markers_base.py,sha256=
|
204
|
-
junifer/markers/tests/test_parcel_aggregation.py,sha256=
|
205
|
-
junifer/markers/tests/test_sphere_aggregation.py,sha256=
|
204
|
+
junifer/markers/tests/test_markers_base.py,sha256=XYe1Z_88h2g1WX6Em4aM8VMyBuCpy5sNHbbpC0I89m4,2979
|
205
|
+
junifer/markers/tests/test_parcel_aggregation.py,sha256=FkB0O0HjTk1CnLOn-dzNs_9_byUOISRc4jV92shN2Kc,27655
|
206
|
+
junifer/markers/tests/test_sphere_aggregation.py,sha256=TGn5S7zKK0SJ4nHIxRZQSCpqRBmz7c8Sb8C79dLoHjE,10611
|
206
207
|
junifer/onthefly/__init__.py,sha256=WykjD_q_zWyX40Y5iKsFXhPJLzD1NPcN-XKFKZDMXfc,184
|
207
208
|
junifer/onthefly/read_transform.py,sha256=kZ-N_fKe9glaBTjhj_HXrdTtWXGI-fMoBpsawcOgsTw,4340
|
208
209
|
junifer/onthefly/tests/test_read_transform.py,sha256=D2C3IpXQHdsJSF07v8rEwGntLGXjZOserlRhebJUAVM,4719
|
209
210
|
junifer/pipeline/__init__.py,sha256=mmhtYuRGetBmBvKPVb9MxklcEK_R9ly-dgkzQiOp3g8,363
|
210
|
-
junifer/pipeline/pipeline_step_mixin.py,sha256=
|
211
|
+
junifer/pipeline/pipeline_step_mixin.py,sha256=wakimkG8GC0PWkFHMHIfgzM2yak41xLrzbVRH0oe8D4,7613
|
211
212
|
junifer/pipeline/registry.py,sha256=UDByAvfWjTImUVrI7d9Ol2C7_s287-mSjtj8lMvhIck,4325
|
212
213
|
junifer/pipeline/singleton.py,sha256=c5U8Xn10MQqaXjlLzxLbw3AmSYW6aTw_iSL0rDkbuMU,1011
|
213
214
|
junifer/pipeline/update_meta_mixin.py,sha256=A_gYCPqdPlM0Xpum9TjJowb41O7ntxQg6y4YOgYeyy4,1564
|
214
215
|
junifer/pipeline/utils.py,sha256=CAp0P7rZST7bsJ9lSlkvZgIJebHW2cIm8VXTuu1A6tE,10291
|
215
216
|
junifer/pipeline/workdir_manager.py,sha256=8vBKdb7FtQaGV66Ngu_ucJJPrh2xoxf_1jMeNpJKT2Y,8050
|
216
217
|
junifer/pipeline/tests/test_pipeline_step_mixin.py,sha256=_ykZzyNzREXy-r_yv1gY_jquLZzVBl8qwYrVORCKY_k,7807
|
217
|
-
junifer/pipeline/tests/test_registry.py,sha256=
|
218
|
+
junifer/pipeline/tests/test_registry.py,sha256=APC8PNmA3zJnMjLz90rZw_wK0hoag6St8AmQY6MUEqA,4121
|
218
219
|
junifer/pipeline/tests/test_update_meta_mixin.py,sha256=UeWwpUi-Q5WVd36Fgfn_utXplSVXMSjLcdO2mR2xLTk,1355
|
219
220
|
junifer/pipeline/tests/test_workdir_manager.py,sha256=E1WY4C-GDsx2c49sePqr1WR_Y3nZ1kiRn4Veu506uTs,2801
|
220
221
|
junifer/preprocess/__init__.py,sha256=xxvQQJFhCk6eM6kz2Vv2PSSh1JvbcPKNcdq3quZpgjY,499
|
@@ -263,10 +264,10 @@ junifer/utils/logging.py,sha256=T9gzk7l1O-dmRiZJHggVDkQGzup_P2_FV3xsaoq0BmI,9369
|
|
263
264
|
junifer/utils/tests/test_fs.py,sha256=WQS7cKlKEZ742CIuiOYYpueeAhY9PqlastfDVpVVtvE,923
|
264
265
|
junifer/utils/tests/test_helpers.py,sha256=k5qqfxK8dFyuewTJyR1Qn6-nFaYNuVr0ysc18bfPjyU,929
|
265
266
|
junifer/utils/tests/test_logging.py,sha256=l8oo-AiBV7H6_IzlsNcj__cLeZBUvgIGoaMszD9VaJg,7754
|
266
|
-
junifer-0.0.5.
|
267
|
-
junifer-0.0.5.
|
268
|
-
junifer-0.0.5.
|
269
|
-
junifer-0.0.5.
|
270
|
-
junifer-0.0.5.
|
271
|
-
junifer-0.0.5.
|
272
|
-
junifer-0.0.5.
|
267
|
+
junifer-0.0.5.dev202.dist-info/AUTHORS.rst,sha256=rmULKpchpSol4ExWFdm-qu4fkpSZPYqIESVJBZtGb6E,163
|
268
|
+
junifer-0.0.5.dev202.dist-info/LICENSE.md,sha256=MqCnOBu8uXsEOzRZWh9EBVfVz-kE9NkXcLCrtGXo2yU,34354
|
269
|
+
junifer-0.0.5.dev202.dist-info/METADATA,sha256=rNyDVjXQJfmRqzgtC3lCiethP48HRampY0u24hWzfD0,8280
|
270
|
+
junifer-0.0.5.dev202.dist-info/WHEEL,sha256=FZ75kcLy9M91ncbIgG8dnpCncbiKXSRGJ_PFILs6SFg,91
|
271
|
+
junifer-0.0.5.dev202.dist-info/entry_points.txt,sha256=DxFvKq0pOqRunAK0FxwJcoDfV1-dZvsFDpD5HRqSDhw,48
|
272
|
+
junifer-0.0.5.dev202.dist-info/top_level.txt,sha256=4bAq1R2QFQ4b3hohjys2JBvxrl0GKk5LNFzYvz9VGcA,8
|
273
|
+
junifer-0.0.5.dev202.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|