siibra 0.4a76__py3-none-any.whl → 0.5a1__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.

Potentially problematic release.


This version of siibra might be problematic. Click here for more details.

Files changed (34) hide show
  1. siibra/VERSION +1 -1
  2. siibra/commons.py +3 -2
  3. siibra/configuration/configuration.py +6 -2
  4. siibra/configuration/factory.py +48 -27
  5. siibra/explorer/__init__.py +1 -0
  6. siibra/explorer/url.py +162 -0
  7. siibra/explorer/util.py +65 -0
  8. siibra/features/anchor.py +36 -9
  9. siibra/features/connectivity/__init__.py +6 -2
  10. siibra/features/connectivity/functional_connectivity.py +21 -0
  11. siibra/features/connectivity/regional_connectivity.py +91 -86
  12. siibra/features/dataset/ebrains.py +1 -1
  13. siibra/features/feature.py +331 -35
  14. siibra/features/tabular/bigbrain_intensity_profile.py +5 -2
  15. siibra/features/tabular/cell_density_profile.py +3 -1
  16. siibra/features/tabular/cortical_profile.py +14 -10
  17. siibra/features/tabular/gene_expression.py +0 -2
  18. siibra/features/tabular/layerwise_bigbrain_intensities.py +3 -2
  19. siibra/features/tabular/receptor_density_profile.py +7 -1
  20. siibra/features/tabular/regional_timeseries_activity.py +81 -102
  21. siibra/features/tabular/tabular.py +21 -9
  22. siibra/livequeries/bigbrain.py +11 -22
  23. siibra/locations/__init__.py +65 -1
  24. siibra/locations/boundingbox.py +0 -16
  25. siibra/locations/location.py +13 -0
  26. siibra/locations/pointset.py +1 -3
  27. siibra/retrieval/cache.py +5 -3
  28. siibra/retrieval/datasets.py +27 -27
  29. siibra/volumes/neuroglancer.py +6 -9
  30. {siibra-0.4a76.dist-info → siibra-0.5a1.dist-info}/METADATA +1 -1
  31. {siibra-0.4a76.dist-info → siibra-0.5a1.dist-info}/RECORD +34 -31
  32. {siibra-0.4a76.dist-info → siibra-0.5a1.dist-info}/WHEEL +1 -1
  33. {siibra-0.4a76.dist-info → siibra-0.5a1.dist-info}/LICENSE +0 -0
  34. {siibra-0.4a76.dist-info → siibra-0.5a1.dist-info}/top_level.txt +0 -0
@@ -128,7 +128,7 @@ class EbrainsDataset(EbrainsBaseDataset):
128
128
  return self._id
129
129
 
130
130
  @property
131
- def detail(self):
131
+ def _detail(self):
132
132
  if not self._cached_data:
133
133
  match = re.search(r"([a-f0-9-]+)$", self.id)
134
134
  instance_id = match.group(1)
@@ -145,7 +145,7 @@ class EbrainsDataset(EbrainsBaseDataset):
145
145
  @property
146
146
  def name(self) -> str:
147
147
  if self._name is None:
148
- self._name = self.detail.get("name")
148
+ self._name = self._detail.get("name")
149
149
  return self._name
150
150
 
151
151
  @property
@@ -154,16 +154,16 @@ class EbrainsDataset(EbrainsBaseDataset):
154
154
  {
155
155
  "url": f if f.startswith("http") else f"https://doi.org/{f}",
156
156
  }
157
- for f in self.detail.get("kgReference", [])
157
+ for f in self._detail.get("kgReference", [])
158
158
  ]
159
159
 
160
160
  @property
161
161
  def description(self) -> str:
162
- return self.detail.get("description")
162
+ return self._detail.get("description")
163
163
 
164
164
  @property
165
165
  def contributors(self) -> List[EbrainsDatasetPerson]:
166
- return self.detail.get("contributors")
166
+ return self._detail.get("contributors")
167
167
 
168
168
  @property
169
169
  def ebrains_page(self):
@@ -171,16 +171,16 @@ class EbrainsDataset(EbrainsBaseDataset):
171
171
 
172
172
  @property
173
173
  def custodians(self) -> EbrainsDatasetPerson:
174
- return self.detail.get("custodians")
174
+ return self._detail.get("custodians")
175
175
 
176
176
  @property
177
177
  def LICENSE(self) -> str:
178
- return self.detail.get("license", "No license information is found.")
178
+ return self._detail.get("license", "No license information is found.")
179
179
 
180
180
 
181
181
  class EbrainsV3DatasetVersion(EbrainsBaseDataset):
182
182
  @staticmethod
183
- def parse_person(d: dict) -> EbrainsDatasetPerson:
183
+ def _parse_person(d: dict) -> EbrainsDatasetPerson:
184
184
  assert "https://openminds.ebrains.eu/core/Person" in d.get("type"), "Cannot convert a non person to a person dict!"
185
185
  _id = d.get("id")
186
186
  name = f"{d.get('givenName')} {d.get('familyName')}"
@@ -199,7 +199,7 @@ class EbrainsV3DatasetVersion(EbrainsBaseDataset):
199
199
  self._cached_data = cached_data
200
200
 
201
201
  @property
202
- def detail(self):
202
+ def _detail(self):
203
203
  if not self._cached_data:
204
204
  match = re.search(r"([a-f0-9-]+)$", self._id)
205
205
  instance_id = match.group(1)
@@ -219,30 +219,30 @@ class EbrainsV3DatasetVersion(EbrainsBaseDataset):
219
219
 
220
220
  @property
221
221
  def name(self) -> str:
222
- fullname = self.detail.get("fullName")
222
+ fullname = self._detail.get("fullName")
223
223
  if not fullname:
224
224
  for dataset in self.is_version_of:
225
225
  if fullname:
226
226
  break
227
227
  fullname = dataset.name
228
- version_id = self.detail.get("versionIdentifier")
228
+ version_id = self._detail.get("versionIdentifier")
229
229
  return f"{fullname} ({version_id})"
230
230
 
231
231
  @property
232
232
  def is_version_of(self):
233
233
  if not hasattr(self, "_is_version_of"):
234
- self._is_version_of = [EbrainsV3Dataset(id=id.get("id")) for id in self.detail.get("isVersionOf", [])]
234
+ self._is_version_of = [EbrainsV3Dataset(id=id.get("id")) for id in self._detail.get("isVersionOf", [])]
235
235
  return self._is_version_of
236
236
 
237
237
  @property
238
238
  def urls(self) -> List[EbrainsDatasetUrl]:
239
239
  return [{
240
240
  "url": doi.get("identifier", None)
241
- } for doi in self.detail.get("doi", [])]
241
+ } for doi in self._detail.get("doi", [])]
242
242
 
243
243
  @property
244
244
  def description(self) -> str:
245
- description = self.detail.get("description")
245
+ description = self._detail.get("description")
246
246
  for ds in self.is_version_of:
247
247
  if description:
248
248
  break
@@ -251,7 +251,7 @@ class EbrainsV3DatasetVersion(EbrainsBaseDataset):
251
251
 
252
252
  @property
253
253
  def contributors(self) -> List[EbrainsDatasetPerson]:
254
- return [EbrainsV3DatasetVersion.parse_person(d) for d in self.detail.get("author", [])]
254
+ return [EbrainsV3DatasetVersion._parse_person(d) for d in self._detail.get("author", [])]
255
255
 
256
256
  @property
257
257
  def ebrains_page(self) -> str:
@@ -261,19 +261,19 @@ class EbrainsV3DatasetVersion(EbrainsBaseDataset):
261
261
 
262
262
  @property
263
263
  def custodians(self) -> EbrainsDatasetPerson:
264
- return [EbrainsV3DatasetVersion.parse_person(d) for d in self.detail.get("custodian", [])]
264
+ return [EbrainsV3DatasetVersion._parse_person(d) for d in self._detail.get("custodian", [])]
265
265
 
266
266
  @property
267
- def version_changes(self):
268
- return self.detail.get("versionInnovation", "")
267
+ def version_changelog(self):
268
+ return self._detail.get("versionInnovation", "")
269
269
 
270
270
  @property
271
271
  def version_identifier(self):
272
- return self.detail.get("versionIdentifier", "")
272
+ return self._detail.get("versionIdentifier", "")
273
273
 
274
274
  @property
275
275
  def LICENSE(self) -> str:
276
- return self.detail.get("license", "No license information is found.")
276
+ return self._detail.get("license", "No license information is found.")
277
277
 
278
278
 
279
279
  class EbrainsV3Dataset(EbrainsBaseDataset):
@@ -290,16 +290,16 @@ class EbrainsV3Dataset(EbrainsBaseDataset):
290
290
 
291
291
  @property
292
292
  def name(self) -> str:
293
- return self.detail.get("fullName")
293
+ return self._detail.get("fullName")
294
294
 
295
295
  @property
296
296
  def urls(self) -> List[EbrainsDatasetUrl]:
297
297
  return [{
298
298
  "url": doi.get("identifier", None)
299
- } for doi in self.detail.get("doi", [])]
299
+ } for doi in self._detail.get("doi", [])]
300
300
 
301
301
  @property
302
- def detail(self):
302
+ def _detail(self):
303
303
  if not self._cached_data:
304
304
  match = re.search(r"([a-f0-9-]+)$", self._id)
305
305
  instance_id = match.group(1)
@@ -315,7 +315,7 @@ class EbrainsV3Dataset(EbrainsBaseDataset):
315
315
 
316
316
  @property
317
317
  def description(self) -> str:
318
- return self.detail.get("description", "")
318
+ return self._detail.get("description", "")
319
319
 
320
320
  @property
321
321
  def contributors(self):
@@ -336,15 +336,15 @@ class EbrainsV3Dataset(EbrainsBaseDataset):
336
336
 
337
337
  @property
338
338
  def custodians(self) -> EbrainsDatasetPerson:
339
- return [EbrainsV3DatasetVersion.parse_person(d) for d in self.detail.get("custodian", [])]
339
+ return [EbrainsV3DatasetVersion._parse_person(d) for d in self._detail.get("custodian", [])]
340
340
 
341
341
  @property
342
342
  def version_ids(self) -> List['str']:
343
- return [version.get("id") for version in self.detail.get("versions", [])]
343
+ return [version.get("id") for version in self._detail.get("versions", [])]
344
344
 
345
345
  @property
346
346
  def LICENSE(self) -> str:
347
- return self.detail.get("license", "No license information is found.")
347
+ return self._detail.get("license", "No license information is found.")
348
348
 
349
349
 
350
350
  class GenericDataset():
@@ -16,7 +16,7 @@
16
16
 
17
17
  from . import volume
18
18
 
19
- from ..commons import logger, MapType, merge_meshes
19
+ from ..commons import logger, MapType, merge_meshes, NEUROGLANCER_MAX_GIB
20
20
  from ..retrieval import requests, cache
21
21
  from ..locations import boundingbox as _boundingbox
22
22
 
@@ -169,16 +169,13 @@ class NeuroglancerProvider(volume.VolumeProvider, srctype="neuroglancer/precompu
169
169
 
170
170
 
171
171
  class NeuroglancerVolume:
172
-
173
- # Number of bytes at which an image array is considered to large to fetch
174
- MAX_GiB = 0.2
175
-
176
172
  # Wether to keep fetched data in local cache
177
173
  USE_CACHE = False
178
174
 
179
175
  @property
180
176
  def MAX_BYTES(self):
181
- return self.MAX_GiB * 1024 ** 3
177
+ "Number of bytes at which an image array is considered to large to fetch"
178
+ return NEUROGLANCER_MAX_GIB * 1024 ** 3
182
179
 
183
180
  def __init__(self, url: str):
184
181
  # TODO do we still need VolumeProvider.__init__ ? given it's not a subclass of VolumeProvider?
@@ -280,9 +277,9 @@ class NeuroglancerVolume:
280
277
  else:
281
278
  scale = self.scales[0]
282
279
  logger.warning(
283
- f"Requested resolution {resolution_mm} is not available. "
284
- f"Falling back to the highest possible resolution of "
285
- f"{', '.join(map('{:.2f}'.format, scale.res_mm))} mm."
280
+ f"Requested resolution {resolution_mm}mm is not available for "
281
+ f"all axes. Falling back to the highest possible resolution of "
282
+ f"({', '.join(map('{:.4f}mm'.format, scale.res_mm))})."
286
283
  )
287
284
 
288
285
  scale_changed = False
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: siibra
3
- Version: 0.4a76
3
+ Version: 0.5a1
4
4
  Summary: siibra - Software interfaces for interacting with brain atlases
5
5
  Home-page: https://github.com/FZJ-INM1-BDA/siibra-python
6
6
  Author: Big Data Analytics Group, Forschungszentrum Juelich, Institute of Neuroscience and Medicine (INM-1)
@@ -1,9 +1,9 @@
1
- siibra/VERSION,sha256=4oFM5LehWUik2JhqYTEX5cjFx0AB1RJ3kDAfUXyFtWA,7
1
+ siibra/VERSION,sha256=_pBYKH2kRUgC4bB0SlnS6S10C1La6Jboq2dyXNVCOPA,7
2
2
  siibra/__init__.py,sha256=qBxxMRyl9RojNt0twQr2LDk1Nyk5eNsPHFxxoIwnpx4,4540
3
- siibra/commons.py,sha256=pBV8fAIFIjxnozK5hnHFauzNOZAcsK99u11yHQPaiBA,25738
3
+ siibra/commons.py,sha256=EbFb3q7k2R6NY4pGFk89ApRjky_PeoE-UV6vdtUJa4s,25875
4
4
  siibra/configuration/__init__.py,sha256=-_Kuf0TfMEdFXiSCTAdcHUL_krA8-cxhJypSNNay53Q,752
5
- siibra/configuration/configuration.py,sha256=x06QsaqGQbce1d9TuFCCYEgMWJBlLbkt8B3zTfYz5RE,6887
6
- siibra/configuration/factory.py,sha256=O5_IwvLNahOOcuAPGmBfO9Ag0lnCaHCGAd2koYYD8dg,19923
5
+ siibra/configuration/configuration.py,sha256=ZZgQX_5PtOuDYFqFY9Zo84XLZAu-GKwpvPJFKmvld_c,7070
6
+ siibra/configuration/factory.py,sha256=EGOQGxJxWIku8sP7PvZUhRE-Pv-jnFkjKkNx_ygfHKk,20547
7
7
  siibra/core/__init__.py,sha256=z22elfoi5_TscUb17-pBoGyfT_q9PQpvgOgSLEJe2WE,916
8
8
  siibra/core/atlas.py,sha256=dZkvQZRHeAPdt8MGh3oi9QyYf_QL8L8PY9PZ7WwPIiE,7807
9
9
  siibra/core/concept.py,sha256=dT8uyG_l3jnD9gmXg54G2kvbvwxVjmr-Qi2LetakqCI,9160
@@ -11,45 +11,48 @@ siibra/core/parcellation.py,sha256=Eob_rMtxQTOcFFbWuE0dbRXfHM8ALaeDsNpoyD7tVOc,1
11
11
  siibra/core/region.py,sha256=P_WIC_TWAZmzrr1i4ZrKlj4y9IwHbXkdSSsRKF4W3Bw,32817
12
12
  siibra/core/relation_qualification.py,sha256=EUU9EPkV0mdCjGUU2hki1rQ5R5U4X2YoFmvwOirO2_E,3641
13
13
  siibra/core/space.py,sha256=dC225jhRFt0KlPtjKEEVre6X8HoDupsymEOrc7AdmmI,5774
14
+ siibra/explorer/__init__.py,sha256=_9gCCp7P8AniGlztulrRyleIOEKcNZlBFVurtnI8GBM,40
15
+ siibra/explorer/url.py,sha256=mUAFN7OHfLELfdqqJmSdAkmXJjKCv6Qh5RHtyxNQjfo,5868
16
+ siibra/explorer/util.py,sha256=Z2ruicDL3S_qcxhHHW0GF1q5-r963tJpzgtQmAn8YSM,1424
14
17
  siibra/features/__init__.py,sha256=Y5q2M7HoToTcfAdO50jmnPGZybJOi5GyEcbxQRscJjo,1518
15
- siibra/features/anchor.py,sha256=1w9VuSEWC3oapph8GtbsW26kvMcE7_9ik7281oRMjlE,14245
16
- siibra/features/feature.py,sha256=DrRp1WwnwSAkj9cocexnA-m9TTi_ltlBmgo4IB2kAOc,19863
17
- siibra/features/connectivity/__init__.py,sha256=ybKN9OfmabSeTx1I6WSrULu5dT6raefty8QB2XaiUrE,1077
18
- siibra/features/connectivity/functional_connectivity.py,sha256=AkRYufi4r3CeV50FLaI6kjKraQ4t9G58iPn521HRRGk,1407
19
- siibra/features/connectivity/regional_connectivity.py,sha256=LGJJWPPhkSUNHWKPc5ePhf5K4noaSpOl4nQT7e9iRM8,15291
18
+ siibra/features/anchor.py,sha256=lv_F_Ld3ovwd0krB1mxGDKs2ZyniN6tqsGjtk0Nx7IM,15289
19
+ siibra/features/feature.py,sha256=pNxNtFJiOelp6DRQ-QO-cjSRUkKjLzxBb2Q_Xng6NjQ,30442
20
+ siibra/features/connectivity/__init__.py,sha256=XU6w7kX6lN_fZLt0TFGqg39Z9FCfbcotSR79p-JhLV4,1161
21
+ siibra/features/connectivity/functional_connectivity.py,sha256=9xHu_GaODGP6Q0--hTf_tMjLtg1IKWI4qw78sZ9GQ5M,2120
22
+ siibra/features/connectivity/regional_connectivity.py,sha256=eSzAG_42txJNT2oOa-Bp5Z7Hmi7FrrllaHGIwN82IY0,14991
20
23
  siibra/features/connectivity/streamline_counts.py,sha256=ngl7xCiCUOyflyBvjZYa3ShOmtf21E5e0A_BeWfFtSQ,1064
21
24
  siibra/features/connectivity/streamline_lengths.py,sha256=0a09Dag-eRvs1KgHSU47I3xQwbgHICsDozhZyuNzQME,1067
22
25
  siibra/features/connectivity/tracing_connectivity.py,sha256=pyTMTLvkJL3ftk56s0AbT8dHexV4EyuTJ2yX27kLGfc,1083
23
26
  siibra/features/dataset/__init__.py,sha256=5h_wstfa3h35emL1qoKOtcFOiIjKZX9oIy-GwsChEyc,748
24
- siibra/features/dataset/ebrains.py,sha256=wdb1-4ovHE1duw2a9NSU0PYgqnlt8-f4pLsGwfTa8xw,2542
27
+ siibra/features/dataset/ebrains.py,sha256=dWG6e19spJmhgmfP3PbxxNhMLLVSOhwoKEInRXSVeGg,2544
25
28
  siibra/features/image/__init__.py,sha256=UIECVLwKYKeuCPNa4WcjcLDuNr_3JxCyiOQSjBRf36U,1013
26
29
  siibra/features/image/image.py,sha256=Mo3ca3MkCi1zq0T6jNmr-Pr-x1Xq_Cl3y8SALOslOFI,3235
27
30
  siibra/features/image/sections.py,sha256=d4TQSs6nIKQ5vgi89htERfWOMgnvOA9k4LhaXBMWNbE,961
28
31
  siibra/features/image/volume_of_interest.py,sha256=DIv9GNOptfungLddA_CfrrCfY8p36rbWCT9xkE6K66w,2654
29
32
  siibra/features/tabular/__init__.py,sha256=3DBwa8JtGd-npeOyyw6kJzcveKXadbqSATyJtTnY3-w,1176
30
- siibra/features/tabular/bigbrain_intensity_profile.py,sha256=JWG4KC9DlmsXazSn9tLdWkx7F8AlCtpwrBQcYZ0tRw0,2215
31
- siibra/features/tabular/cell_density_profile.py,sha256=hPGE-lW36QCJrfLWHk9W4DmAow6HxSJG18onBcOicK8,9096
32
- siibra/features/tabular/cortical_profile.py,sha256=B6DE_Uw_uASMcnqkdKuAL1GCV53CHlKbkCUaCvTzoxY,9476
33
- siibra/features/tabular/gene_expression.py,sha256=Cb212uBDprR032_Wj2gbpD7tVr4_gSKFKqlBPbnxQro,4989
34
- siibra/features/tabular/layerwise_bigbrain_intensities.py,sha256=qbuOcV2EBuUFJDVrHBzDVLY3emV_xFslgESniOxl6cg,2138
33
+ siibra/features/tabular/bigbrain_intensity_profile.py,sha256=7WsfJhp4EGn7VhAhwIou4r3QZ5SQejR9SxPgmKaYez4,2321
34
+ siibra/features/tabular/cell_density_profile.py,sha256=SgS1Fb0Ztuj0toJQVwpuimDx-r2DrVim7ru6KCba3ag,9187
35
+ siibra/features/tabular/cortical_profile.py,sha256=euyAxi5C2Ths0fR93oM5B9oD9ej73dslVabDr4XH2Qo,9632
36
+ siibra/features/tabular/gene_expression.py,sha256=YqUicjGC0rkPXSWZwJtUjgxCIcfekeGk9nkWT0EZceE,4965
37
+ siibra/features/tabular/layerwise_bigbrain_intensities.py,sha256=w6AxLPyUxHBOQlkNPgr4O4xARTzmmXenEHA0nbUDgbo,2161
35
38
  siibra/features/tabular/layerwise_cell_density.py,sha256=CJMcUeN_aawfCzZTLq4xKq-Kas5sHFNVNVL6bqhCOEc,4167
36
39
  siibra/features/tabular/receptor_density_fingerprint.py,sha256=aah1PE3W4_tWSKmjTlGVsBp7DEGfAI6Xtt3yQHBOwPE,7164
37
- siibra/features/tabular/receptor_density_profile.py,sha256=6JO14y9WB40PbDDcxu8KvC_0HGi3l3rnUiGJWjgsk4w,3577
38
- siibra/features/tabular/regional_timeseries_activity.py,sha256=mLMlbyrNMjB5azeVXKQTZkpD-1UXYhabrtPzamvZ3FM,8948
39
- siibra/features/tabular/tabular.py,sha256=P9jNqF-4D2hcEU92ukYyjtu3Sksg9zBVvjI6biVHIm8,4576
40
+ siibra/features/tabular/receptor_density_profile.py,sha256=KSh3SV6NYObR9gkTM-BQkY-V3MYuOL3pgrfr579bPGc,3733
41
+ siibra/features/tabular/regional_timeseries_activity.py,sha256=z_CcMfC-fDJbMkKR8JbXpdgf3JM9LA_o0fBz-zDZIkQ,7966
42
+ siibra/features/tabular/tabular.py,sha256=-HM6VfmNXXmWpGrixmkKFHgNmj5T0xNRqd6JBbIqbvc,5001
40
43
  siibra/livequeries/__init__.py,sha256=rpJKroYqtujIkvAUlavOIHUlP4Yg73U27Se44aZms2Q,1013
41
44
  siibra/livequeries/allen.py,sha256=a0-F1Wk8ocJcJBm1pZLv9BvHjdv2iPeM56xmkN-g-r4,12252
42
- siibra/livequeries/bigbrain.py,sha256=kb-4K512s9Hrn3y0MNYhT7Mqc8Qq-BXFOO-aU65pHyI,9416
45
+ siibra/livequeries/bigbrain.py,sha256=GzyrtMD31O-S6J-FMi5754fzfIexovOHmdDFF3mcvvs,8464
43
46
  siibra/livequeries/ebrains.py,sha256=6Ra-5Wjn-GOR5ybZp_zDqsIxwGJBS0mF-H8JXNCLeJI,5724
44
47
  siibra/livequeries/query.py,sha256=8npNqiovJpWioVe_vYof10y128E7sH0LJh62d7OJTSQ,1862
45
- siibra/locations/__init__.py,sha256=8NCOAo4hU0nUeLxGGaWYM3GfHORuoxUoLQ8QBVli9-I,855
46
- siibra/locations/boundingbox.py,sha256=VxWLl82JnJws-39f2x5S7ApHw1G7bkOuPYqwsFTPYF0,16898
47
- siibra/locations/location.py,sha256=B2mdopHa_zIY_-lfeBzosdkKnIklG-BuWF7fXWq1dQk,4628
48
+ siibra/locations/__init__.py,sha256=TeYmTYlo7GR0qLYj_ORkIqLQ_pENWZIkQxzPSZ-yCrE,2989
49
+ siibra/locations/boundingbox.py,sha256=-oJMUSBa9YwosM5OQHzcugnjaMYif00k_XJ3-NNkNm0,16324
50
+ siibra/locations/location.py,sha256=m0lSp_nvDoluZ7vjHS12eGW0Fpb8q7BhObjLAjpdV94,5086
48
51
  siibra/locations/point.py,sha256=ZPfjcGgxBvZrXNJ7HA4qLk9xr-0ZlA2Nj_5z8w4IZzw,12662
49
- siibra/locations/pointset.py,sha256=Wp-qlU3hdlLlEc3WU-QodpL_70It7GQf9FctnYLXsQI,7159
52
+ siibra/locations/pointset.py,sha256=sBngAfcH5gwU0RrgVyt8dcYY4eo9N-9wWyv3Inglxig,7093
50
53
  siibra/retrieval/__init__.py,sha256=pAJ2WsNk9tVY1RddmXzya1iFgJXJarO4TVCJTob1Ej0,1062
51
- siibra/retrieval/cache.py,sha256=k4_8bcWVVMTwLGhmUFhyDHoKPh3a7qe6AWpFHmW0r7w,4943
52
- siibra/retrieval/datasets.py,sha256=hmzTIAJ50fK302crWXlNjA27NrVNBdks8xTx8tb2uvM,11174
54
+ siibra/retrieval/cache.py,sha256=9Wssws2YHiI_OW4EZp72OzYV9nw8h5cAEAakSxtRMts,5143
55
+ siibra/retrieval/datasets.py,sha256=1ULz7e6QGP2HBO9XF5D59_X2jcwl3V4kaY1USw7NGrQ,11205
53
56
  siibra/retrieval/repositories.py,sha256=wYE3oYcIBgD3WOqIerS3darsg_TSrfpdDJ72l2uytak,25961
54
57
  siibra/retrieval/requests.py,sha256=tRmgocvob7619e_4Vw-dVd8R3JJ95UGkVyESXF2EBE0,22013
55
58
  siibra/retrieval/exceptions/__init__.py,sha256=_w996kp5rxuvi-_iLhrByrH2OtApxm_TykthkaQvKpo,874
@@ -59,13 +62,13 @@ siibra/vocabularies/receptor_symbols.json,sha256=F6DZIArPCBmJV_lWGV-zDpBBH_GOJOZ
59
62
  siibra/vocabularies/region_aliases.json,sha256=T2w1wRlxPNTsPppXn0bzC70tNsb8mOjLsoHuxDSYm2w,8563
60
63
  siibra/volumes/__init__.py,sha256=KFOT756W63pIEtw9lZGDzQYExOg94A1wvsuUEgLwVak,965
61
64
  siibra/volumes/gifti.py,sha256=_LUHgPqndzSj9nNH70Ee2lWMkockVGdi2_JufuaExG4,5551
62
- siibra/volumes/neuroglancer.py,sha256=s1kTy8njP2w1zzR2mWSWPXbuhut6g78cYOS74J43vWw,24474
65
+ siibra/volumes/neuroglancer.py,sha256=HWxhTh2FviLkNHdKL-_OMtl3oC6-WQb5b8skdvQ0ql8,24504
63
66
  siibra/volumes/nifti.py,sha256=nGSCedjpsiy43XIiHQ2SRy9rPRK8Ci9QDq4AHKclCck,9030
64
67
  siibra/volumes/parcellationmap.py,sha256=nSxkVRbIhyrE6dXzVkrtGk1uoZlPQE1Mcgn1s2vjbZo,44173
65
68
  siibra/volumes/sparsemap.py,sha256=_vM14wKn-7PHBIbT9rBKGGN4XQXijdKtT6BnyKxWXeE,21682
66
69
  siibra/volumes/volume.py,sha256=Er8w5c76ZEKmoWyvEU-HHmZ6bbh8YM51j3jT-XRYDtU,10889
67
- siibra-0.4a76.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
68
- siibra-0.4a76.dist-info/METADATA,sha256=m_h7AyprPxCcuN8yBm_GWWkeln3DsCEowPeaYpqCf1Q,9804
69
- siibra-0.4a76.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
70
- siibra-0.4a76.dist-info/top_level.txt,sha256=NF0OSGLL0li2qyC7MaU0iBB5Y9S09_euPpvisD0-8Hg,7
71
- siibra-0.4a76.dist-info/RECORD,,
70
+ siibra-0.5a1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
71
+ siibra-0.5a1.dist-info/METADATA,sha256=-0iiAEE8P8cFDhM6jjqAGGCf8VQ4vpBmd7cpapozqaI,9803
72
+ siibra-0.5a1.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
73
+ siibra-0.5a1.dist-info/top_level.txt,sha256=NF0OSGLL0li2qyC7MaU0iBB5Y9S09_euPpvisD0-8Hg,7
74
+ siibra-0.5a1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.41.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5