junifer 0.0.7.dev18__py3-none-any.whl → 0.0.7.dev47__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 (91) hide show
  1. junifer/_version.py +2 -2
  2. junifer/api/decorators.py +0 -1
  3. junifer/api/functions.py +1 -2
  4. junifer/api/queue_context/gnu_parallel_local_adapter.py +4 -7
  5. junifer/api/queue_context/htcondor_adapter.py +6 -10
  6. junifer/cli/tests/test_parser.py +66 -0
  7. junifer/data/_dispatch.py +5 -5
  8. junifer/data/coordinates/_ants_coordinates_warper.py +1 -1
  9. junifer/data/coordinates/_coordinates.py +1 -1
  10. junifer/data/coordinates/_fsl_coordinates_warper.py +1 -1
  11. junifer/data/coordinates/tests/test_coordinates.py +38 -16
  12. junifer/data/masks/_ants_mask_warper.py +1 -1
  13. junifer/data/masks/_fsl_mask_warper.py +1 -1
  14. junifer/data/masks/tests/test_masks.py +66 -33
  15. junifer/data/parcellations/_ants_parcellation_warper.py +1 -1
  16. junifer/data/parcellations/_fsl_parcellation_warper.py +1 -1
  17. junifer/data/parcellations/_parcellations.py +7 -7
  18. junifer/data/parcellations/tests/test_parcellations.py +162 -76
  19. junifer/data/tests/test_data_utils.py +0 -1
  20. junifer/data/utils.py +1 -1
  21. junifer/datagrabber/aomic/id1000.py +6 -0
  22. junifer/datagrabber/aomic/piop1.py +4 -3
  23. junifer/datagrabber/aomic/piop2.py +4 -3
  24. junifer/datagrabber/pattern_datalad.py +0 -1
  25. junifer/datagrabber/pattern_validation_mixin.py +0 -1
  26. junifer/datagrabber/tests/test_dmcc13_benchmark.py +4 -8
  27. junifer/markers/base.py +3 -3
  28. junifer/markers/brainprint.py +5 -5
  29. junifer/markers/complexity/multiscale_entropy_auc.py +3 -3
  30. junifer/markers/complexity/range_entropy.py +3 -3
  31. junifer/markers/complexity/sample_entropy.py +3 -3
  32. junifer/markers/falff/falff_parcels.py +2 -6
  33. junifer/markers/falff/falff_spheres.py +2 -6
  34. junifer/markers/functional_connectivity/functional_connectivity_base.py +0 -1
  35. junifer/markers/functional_connectivity/tests/test_functional_connectivity_parcels.py +2 -1
  36. junifer/markers/functional_connectivity/tests/test_functional_connectivity_spheres.py +2 -1
  37. junifer/markers/reho/_afni_reho.py +1 -1
  38. junifer/markers/reho/reho_base.py +0 -1
  39. junifer/markers/reho/reho_parcels.py +0 -1
  40. junifer/markers/reho/reho_spheres.py +0 -1
  41. junifer/markers/temporal_snr/temporal_snr_base.py +0 -1
  42. junifer/markers/tests/test_markers_base.py +0 -1
  43. junifer/onthefly/_brainprint.py +3 -3
  44. junifer/onthefly/read_transform.py +1 -2
  45. junifer/onthefly/tests/test_read_transform.py +0 -1
  46. junifer/pipeline/tests/test_marker_collection.py +2 -1
  47. junifer/pipeline/workdir_manager.py +1 -2
  48. junifer/preprocess/confounds/fmriprep_confound_remover.py +1 -1
  49. junifer/preprocess/confounds/tests/test_fmriprep_confound_remover.py +0 -1
  50. junifer/preprocess/smoothing/tests/test_smoothing.py +0 -1
  51. junifer/preprocess/warping/_ants_warper.py +2 -3
  52. junifer/preprocess/warping/_fsl_warper.py +1 -1
  53. junifer/preprocess/warping/space_warper.py +4 -2
  54. junifer/storage/hdf5.py +14 -2
  55. junifer/storage/pandas_base.py +3 -1
  56. junifer/storage/sqlite.py +3 -8
  57. junifer/storage/tests/test_hdf5.py +1 -0
  58. junifer/storage/tests/test_pandas_base.py +6 -3
  59. junifer/storage/tests/test_storage_base.py +2 -1
  60. junifer/utils/logging.py +38 -128
  61. junifer/utils/tests/test_logging.py +12 -4
  62. {junifer-0.0.7.dev18.dist-info → junifer-0.0.7.dev47.dist-info}/METADATA +3 -2
  63. {junifer-0.0.7.dev18.dist-info → junifer-0.0.7.dev47.dist-info}/RECORD +68 -91
  64. {junifer-0.0.7.dev18.dist-info → junifer-0.0.7.dev47.dist-info}/WHEEL +1 -1
  65. junifer/data/coordinates/VOIs/meta/AutobiographicalMemory_VOIs.txt +0 -23
  66. junifer/data/coordinates/VOIs/meta/CogAC_VOIs.txt +0 -19
  67. junifer/data/coordinates/VOIs/meta/CogAR_VOIs.txt +0 -8
  68. junifer/data/coordinates/VOIs/meta/DMNBuckner_VOIs.txt +0 -6
  69. junifer/data/coordinates/VOIs/meta/Dosenbach2010_MNI_VOIs.txt +0 -160
  70. junifer/data/coordinates/VOIs/meta/Empathy_VOIs.txt +0 -22
  71. junifer/data/coordinates/VOIs/meta/Motor_VOIs.txt +0 -10
  72. junifer/data/coordinates/VOIs/meta/MultiTask_VOIs.txt +0 -9
  73. junifer/data/coordinates/VOIs/meta/PhysioStress_VOIs.txt +0 -18
  74. junifer/data/coordinates/VOIs/meta/Power2011_MNI_VOIs.txt +0 -264
  75. junifer/data/coordinates/VOIs/meta/Power2013_MNI_VOIs.tsv +0 -264
  76. junifer/data/coordinates/VOIs/meta/Rew_VOIs.txt +0 -25
  77. junifer/data/coordinates/VOIs/meta/Somatosensory_VOIs.txt +0 -10
  78. junifer/data/coordinates/VOIs/meta/ToM_VOIs.txt +0 -15
  79. junifer/data/coordinates/VOIs/meta/VigAtt_VOIs.txt +0 -16
  80. junifer/data/coordinates/VOIs/meta/WM_VOIs.txt +0 -23
  81. junifer/data/coordinates/VOIs/meta/eMDN_VOIs.txt +0 -17
  82. junifer/data/coordinates/VOIs/meta/eSAD_VOIs.txt +0 -12
  83. junifer/data/coordinates/VOIs/meta/extDMN_VOIs.txt +0 -16
  84. junifer/data/masks/ukb/UKB_15K_GM_template.nii.gz +0 -0
  85. junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean.nii.gz +0 -0
  86. junifer/data/masks/vickery-patil/CAT12_IXI555_MNI152_TMP_GS_GMprob0.2_clean_3mm.nii.gz +0 -0
  87. junifer/data/masks/vickery-patil/GMprob0.2_cortex_3mm_NA_rm.nii.gz +0 -0
  88. {junifer-0.0.7.dev18.dist-info → junifer-0.0.7.dev47.dist-info}/entry_points.txt +0 -0
  89. {junifer-0.0.7.dev18.dist-info → junifer-0.0.7.dev47.dist-info}/licenses/AUTHORS.rst +0 -0
  90. {junifer-0.0.7.dev18.dist-info → junifer-0.0.7.dev47.dist-info}/licenses/LICENSE.md +0 -0
  91. {junifer-0.0.7.dev18.dist-info → junifer-0.0.7.dev47.dist-info}/top_level.txt +0 -0
@@ -1,264 +0,0 @@
1
- 22 -65 48 1
2
- 25 -58 60 2
3
- -35 20 0 3
4
- 12 36 20 4
5
- 40 18 40 5
6
- 54 -28 34 6
7
- 36 22 3 7
8
- 59 -17 29 8
9
- -45 0 9 9
10
- 46 -59 4 10
11
- -32 -1 54 11
12
- 32 14 56 12
13
- -42 -60 -9 13
14
- -34 3 4 14
15
- 37 1 -4 15
16
- 29 -5 54 16
17
- 11 -39 50 17
18
- 37 -65 40 18
19
- -34 -38 -16 19
20
- -52 -63 5 20
21
- -10 11 67 21
22
- -44 2 46 22
23
- -3 26 44 23
24
- 49 8 -1 24
25
- -33 -46 47 25
26
- -27 -71 37 26
27
- 55 -45 37 27
28
- 7 8 51 28
29
- 36 10 1 29
30
- -39 51 17 30
31
- 10 -62 61 31
32
- -16 -5 71 32
33
- 43 49 -2 33
34
- 37 32 -2 34
35
- 10 -2 45 35
36
- 47 -30 49 36
37
- 36 -9 14 37
38
- -3 2 53 38
39
- -51 8 -2 39
40
- -1 15 44 40
41
- 31 -14 2 41
42
- 19 -8 64 42
43
- -10 -2 42 43
44
- 65 -33 20 44
45
- -30 -27 12 45
46
- 6 -72 24 46
47
- -7 -52 61 47
48
- -49 -42 1 48
49
- -49 25 -1 49
50
- -5 18 34 50
51
- -23 11 64 51
52
- 31 33 26 52
53
- -0 30 27 53
54
- -53 -22 23 54
55
- -42 -55 45 55
56
- -50 -34 26 56
57
- 48 22 10 57
58
- 31 56 14 58
59
- 44 -8 57 59
60
- 49 35 -12 60
61
- -56 -50 10 61
62
- 2 -24 30 62
63
- 29 -39 59 63
64
- -42 -74 0 64
65
- -34 55 4 65
66
- 13 -1 70 66
67
- 42 -0 47 67
68
- -3 42 16 68
69
- 5 23 37 69
70
- 51 -29 -4 70
71
- 0 -15 47 71
72
- 52 -33 8 72
73
- 34 16 -8 73
74
- -7 -71 42 74
75
- -29 -43 61 75
76
- 33 -53 44 76
77
- -55 -40 14 77
78
- -17 -59 64 78
79
- 56 -5 13 79
80
- 46 -47 -17 80
81
- -11 26 25 81
82
- 22 -42 69 82
83
- -13 -40 1 83
84
- 43 -23 20 84
85
- -53 -49 43 85
86
- -47 11 23 86
87
- 54 -43 22 87
88
- 53 33 1 88
89
- 10 22 27 89
90
- -55 -9 12 90
91
- -58 -30 -4 91
92
- -42 45 -2 92
93
- 56 -46 11 93
94
- -45 -32 47 94
95
- 11 -66 42 95
96
- -28 -79 19 96
97
- -47 -76 -10 97
98
- -2 38 36 98
99
- -54 -23 43 99
100
- -28 52 21 100
101
- 47 -50 29 101
102
- -2 -35 31 102
103
- 50 -20 42 103
104
- -42 38 21 104
105
- 26 50 27 105
106
- 58 -53 -14 106
107
- 47 10 33 107
108
- 32 -26 13 108
109
- -46 31 -13 109
110
- 10 -46 73 110
111
- 27 -37 -13 111
112
- 43 -72 28 112
113
- 52 -2 -16 113
114
- -2 -37 44 114
115
- 38 43 15 115
116
- -60 -25 14 116
117
- -41 6 33 117
118
- -2 -13 12 118
119
- 42 -66 -8 119
120
- 9 -4 6 120
121
- 29 1 4 121
122
- 15 5 7 122
123
- -42 25 30 123
124
- -26 -40 -8 124
125
- 65 -31 -9 125
126
- 44 -53 47 126
127
- -18 -76 -24 127
128
- -35 20 51 128
129
- -28 -58 48 129
130
- -49 -26 5 130
131
- -53 -10 24 131
132
- -47 -51 -21 132
133
- 58 -16 7 133
134
- 49 -42 45 134
135
- 40 -72 14 135
136
- -32 -55 -25 136
137
- -14 -18 40 137
138
- -41 -75 26 138
139
- -16 -77 34 139
140
- 4 -48 51 140
141
- -68 -41 -5 141
142
- 35 -67 -34 142
143
- 22 39 39 143
144
- -56 -13 -10 144
145
- 15 -63 26 145
146
- -15 4 8 146
147
- 29 -77 25 147
148
- 38 -17 45 148
149
- 23 10 1 149
150
- 66 -8 25 150
151
- 51 -6 32 151
152
- -39 -75 44 152
153
- -11 45 8 153
154
- 52 7 -30 154
155
- -21 41 -20 155
156
- -12 -95 -13 156
157
- 8 42 -5 157
158
- 34 38 -12 158
159
- -16 -46 73 159
160
- 37 -84 13 160
161
- 18 -47 -10 161
162
- -11 -56 16 162
163
- 48 25 27 163
164
- -53 3 -27 164
165
- 46 16 -30 165
166
- -31 19 -19 166
167
- 37 -81 1 167
168
- 52 -59 36 168
169
- 27 16 -17 169
170
- 24 45 -15 170
171
- -44 12 -34 171
172
- -46 -61 21 172
173
- -49 -11 35 173
174
- -25 -98 -12 174
175
- -33 -79 -13 175
176
- 11 -54 17 176
177
- 23 33 48 177
178
- -3 -49 13 178
179
- 12 -17 8 179
180
- -38 -33 17 180
181
- 8 48 -15 181
182
- -10 39 52 182
183
- 43 -78 -12 183
184
- 20 -29 60 184
185
- -40 -19 54 185
186
- -20 45 39 186
187
- 13 30 59 187
188
- -24 -91 19 188
189
- -16 29 53 189
190
- 8 -91 -7 190
191
- -21 -31 61 191
192
- 6 67 -4 192
193
- 17 -80 -34 193
194
- -23 -30 72 194
195
- 2 -28 60 195
196
- 15 -77 31 196
197
- 3 -17 58 197
198
- 55 -31 -17 198
199
- -31 -10 -36 199
200
- -40 -88 -6 200
201
- -18 63 -9 201
202
- 27 -59 -9 202
203
- 49 -3 -38 203
204
- -31 -11 -0 204
205
- 65 -24 -19 205
206
- 17 -28 -17 206
207
- -7 51 -1 207
208
- 24 32 -18 208
209
- 9 54 3 209
210
- -7 -55 27 210
211
- -21 -22 -20 211
212
- 34 54 -13 212
213
- -38 -15 69 213
214
- -38 -27 69 214
215
- 65 -12 -19 215
216
- -16 -52 -1 216
217
- -8 48 23 217
218
- -3 44 -9 218
219
- -37 -29 -26 219
220
- 27 -97 -13 220
221
- 17 -91 -14 221
222
- 6 54 16 222
223
- 8 41 -24 223
224
- 8 -48 31 224
225
- 24 -87 24 225
226
- -58 -26 -15 226
227
- 29 -17 71 227
228
- -68 -23 -16 228
229
- -10 -18 7 229
230
- -13 -17 75 230
231
- -7 -33 72 231
232
- 15 -87 37 232
233
- -20 64 19 233
234
- 42 -20 55 234
235
- 26 -79 -16 235
236
- -10 55 39 236
237
- 13 -33 75 237
238
- 33 -12 -34 238
239
- -26 -90 3 239
240
- -7 -21 65 240
241
- 10 -17 74 241
242
- -44 -65 35 242
243
- 6 -59 35 243
244
- 6 64 22 244
245
- -18 -68 5 245
246
- -16 -65 -20 246
247
- 8 -72 11 247
248
- 13 55 38 248
249
- -14 -91 31 249
250
- -3 -81 21 250
251
- 20 -86 -2 251
252
- -50 -7 -39 252
253
- -56 -45 -24 253
254
- -8 -81 7 254
255
- 20 -66 2 255
256
- 6 -81 6 256
257
- 52 -34 -27 257
258
- -15 -72 -8 258
259
- 6 -24 -0 259
260
- 28 -77 -32 260
261
- 22 -58 -23 261
262
- 1 -62 -18 262
263
- -22 7 -5 263
264
- -5 -28 -4 264
@@ -1,25 +0,0 @@
1
- 12.0 10.0 -6.0 rNAc
2
- -10.0 8.0 -4.0 lPall
3
- 36.0 20.0 -6.0 rIns
4
- -32.0 20.0 -4.0 lIns
5
- 0.0 24.0 40.0 dmPFC
6
- 0.0 54.0 -8.0 medOFC
7
- 24.0 -2.0 -16.0 rAm
8
- 6.0 -14.0 8.0 rTh
9
- -6.0 -16.0 8.0 lTh
10
- 0.0 8.0 48.0 SMA
11
- 8.0 -18.0 -10.0 rBrainStem
12
- -6.0 -18.0 -10.0 lBrainStem
13
- 2.0 44.0 20.0 ACC
14
- -24.0 2.0 52.0 lMFG
15
- -38.0 -4.0 6.0 lIns(Id3)
16
- 24.0 40.0 -14.0 rMidOFC(Fo3)
17
- -16.0 42.0 -14.0 lMidOFC(Fo3)
18
- 40.0 32.0 32.0 raMFG
19
- -28.0 -56.0 48.0 lIPL(IPS)
20
- 28.0 -58.0 50.0 rAG
21
- 0.0 -32.0 32.0 PCC
22
- -36.0 50.0 10.0 lFP
23
- -46.0 42.0 -4.0 lLOFC
24
- 30.0 4.0 50.0 rpMFG
25
- -22.0 30.0 48.0 lSFG
@@ -1,10 +0,0 @@
1
- -48.0 -20.0 20.0 S1_L
2
- -54.0 -20.0 48.0 postcentralG_S1_L
3
- -44.0 -26.0 58.0 postcentralG_S1_L
4
- -38.0 -12.0 4.0 Ins_claustrum_L
5
- -40.0 4.0 10.0 pars_opercularis_Ins_L
6
- 56.0 -22.0 20.0 SMG_R
7
- 56.0 -34.0 18.0 pSTG_R
8
- 56.0 -38.0 28.0 IPL_SMG_R
9
- 60.0 -20.0 32.0 postcentralG_R
10
- -4.0 14.0 36.0 MCC_L
@@ -1,15 +0,0 @@
1
- 0.0 52.0 -12.0 vmPFC
2
- 2.0 58.0 12.0 FP
3
- -8.0 56.0 30.0 dmPFC
4
- 2.0 -56.0 30.0 Prc
5
- 56.0 -50.0 18.0 rTPJ
6
- -48.0 -56.0 24.0 lTPJ
7
- 54.0 -2.0 -20.0 rTP
8
- -54.0 -2.0 -24.0 lTP
9
- 52.0 -18.0 -12.0 rMTG
10
- -54.0 -28.0 -4.0 lMTG
11
- 50.0 -34.0 0.0 rpSTS
12
- -58.0 -44.0 4.0 lpSTS
13
- 54.0 28.0 6.0 rIFG
14
- -48.0 30.0 -12.0 lIFG
15
- 48.0 -72.0 8.0 rV5
@@ -1,16 +0,0 @@
1
- -2.0 8.0 50.0 aParacentralL
2
- 8.0 32.0 46.0 rmpSFG
3
- 0.0 26.0 34.0 dMCC
4
- 50.0 8.0 32.0 rIFJ
5
- 40.0 22.0 -4.0 raI
6
- 46.0 36.0 20.0 rIFS
7
- -40.0 -12.0 60.0 lPrecentralG
8
- -46.0 -68.0 -6.0 lIOG
9
- -48.0 8.0 30.0 lIFJ
10
- 62.0 -38.0 17.0 rTPJ
11
- 8.0 -12.0 6.0 rTh
12
- 32.0 -90.0 4.0 rMOG
13
- -42.0 12.0 -2.0 laI
14
- -10.0 -14.0 6.0 lTh
15
- 6.0 -58.0 -18.0 Cb
16
- 44.0 -44.0 46.0 rIPL
@@ -1,23 +0,0 @@
1
- -32.0 22.0 -2.0 aIns_l
2
- -48.0 10.0 26.0 IFG_l
3
- -46.0 26.0 24.0 lPFCc_l
4
- -38.0 50.0 10.0 lPFCr_l
5
- 36.0 22.0 -6.0 aIns_r
6
- 50.0 14.0 24.0 IFG_r
7
- 44.0 34.0 32.0 lPFCc_r
8
- 38.0 54.0 6.0 lPFCr_l
9
- 2.0 18.0 48.0 pmFC
10
- -28.0 0.0 56.0 psFC
11
- 30.0 2.0 56.0 psFC
12
- -42.0 -42.0 46.0 IPS_l
13
- -34.0 -52.0 48.0 SPL_l
14
- -24.0 -66.0 54.0 SPLp_l
15
- 42.0 -44.0 44.0 IPSa_r
16
- 32.0 -58.0 48.0 IPSp_r
17
- 16.0 -66.0 56.0 SPLp_r
18
- -12.0 -12.0 12.0 Thal_l
19
- -16.0 2.0 14.0 Ncaud_l
20
- -16.0 0.0 2.0 GP_l
21
- 12.0 -10.0 10.0 Thal_r
22
- -34.0 -66.0 -20.0 Cb_FG_l
23
- 32.0 -64.0 -18.0 Cb_FG_r
@@ -1,17 +0,0 @@
1
- -46.0 6.0 30.0 IFG_l
2
- 50.0 12.0 28.0 IFG_r
3
- -32.0 20.0 2.0 aIns_l
4
- 36.0 22.0 0.0 aIns_r
5
- -4.0 14.0 44.0 SMA_l
6
- 6.0 18.0 46.0 SMA_r
7
- -32.0 -52.0 46.0 IPS_l
8
- 32.0 -58.0 48.0 IPS_r
9
- 44.0 36.0 20.0 MFG_r
10
- -28.0 -4.0 52.0 dPMC_l
11
- -44.0 32.0 22.0 MFG_l
12
- 32.0 0.0 52.0 dPMC_r
13
- -20.0 6.0 4.0 Put_l
14
- 10.0 -12.0 8.0 Thal_r
15
- -46.0 -60.0 -10.0 ITG_l
16
- 22.0 6.0 4.0 Put_r
17
- -10.0 -16.0 6.0 Thal_l
@@ -1,12 +0,0 @@
1
- 0.0 38.0 10.0 ACC
2
- -24.0 -10.0 -20.0 AmyHipp_L
3
- 24.0 -8.0 -22.0 AmyHipp_R
4
- -2.0 -52.0 26.0 PrC
5
- -2.0 32.0 -8.0 SGC
6
- -46.0 -66.0 18.0 TPJ_L
7
- 50.0 -60.0 18.0 TPJ_R
8
- -2.0 52.0 14.0 dmPFC
9
- -6.0 10.0 -8.0 vBG_L
10
- 6.0 10.0 -8.0 vBG_R
11
- -2.0 50.0 -10.0 vmPFC
12
- -54.0 -10.0 -20.0 aMTS/aMTG
@@ -1,16 +0,0 @@
1
- 0 -53 6 PCC
2
- 0 52 -6 MPFC
3
- -48 -62 36 lAG
4
- 46 -62 32 rAG
5
- -24 -22 -20 lHF
6
- 24 -22 -20 rHF
7
- 10 -22 42 Middlecingulate
8
- -48 -20 38 lIPG
9
- 0 -48 -30 cerebellum
10
- 34 -80 -34 rCerebellum
11
- 56 30 8 rdlPFC
12
- -42 -82 10 lateraloccipital
13
- -54 24 10 rdrPFC
14
- 22 34 54 RSFG
15
- -50 14 -40 lTempP
16
- -38 14 54 leftmiddlefrontalgyrus(BA6)