large-image-source-bioformats 1.30.6.dev6__tar.gz → 1.30.6.dev12__tar.gz
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 large-image-source-bioformats might be problematic. Click here for more details.
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/PKG-INFO +3 -3
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/large_image_source_bioformats/__init__.py +13 -0
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/large_image_source_bioformats.egg-info/PKG-INFO +3 -3
- large_image_source_bioformats-1.30.6.dev12/large_image_source_bioformats.egg-info/requires.txt +5 -0
- large_image_source_bioformats-1.30.6.dev6/large_image_source_bioformats.egg-info/requires.txt +0 -5
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/LICENSE +0 -0
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/README.rst +0 -0
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/large_image_source_bioformats/girder_source.py +0 -0
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/large_image_source_bioformats.egg-info/SOURCES.txt +0 -0
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/large_image_source_bioformats.egg-info/dependency_links.txt +0 -0
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/large_image_source_bioformats.egg-info/entry_points.txt +0 -0
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/large_image_source_bioformats.egg-info/top_level.txt +0 -0
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/pyproject.toml +0 -0
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/setup.cfg +0 -0
- {large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/setup.py +0 -0
{large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: large-image-source-bioformats
|
|
3
|
-
Version: 1.30.6.
|
|
3
|
+
Version: 1.30.6.dev12
|
|
4
4
|
Summary: An bioformats tilesource for large_image.
|
|
5
5
|
Home-page: https://github.com/girder/large_image
|
|
6
6
|
Author: Kitware, Inc.
|
|
@@ -19,10 +19,10 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
19
19
|
Requires-Python: >=3.8
|
|
20
20
|
Description-Content-Type: text/x-rst
|
|
21
21
|
License-File: LICENSE
|
|
22
|
-
Requires-Dist: large-image>=1.30.6.
|
|
22
|
+
Requires-Dist: large-image>=1.30.6.dev12
|
|
23
23
|
Requires-Dist: python-bioformats>=1.5.2
|
|
24
24
|
Provides-Extra: girder
|
|
25
|
-
Requires-Dist: girder-large-image>=1.30.6.
|
|
25
|
+
Requires-Dist: girder-large-image>=1.30.6.dev12; extra == "girder"
|
|
26
26
|
|
|
27
27
|
An bioformats tilesource for large_image.
|
|
28
28
|
|
|
@@ -741,6 +741,19 @@ class BioformatsFileTileSource(FileTileSource, metaclass=LruCacheMetaclass):
|
|
|
741
741
|
ext = dotext.strip('.')
|
|
742
742
|
if ext not in cls.extensions:
|
|
743
743
|
cls.extensions[ext] = SourcePriority.IMPLICIT
|
|
744
|
+
# The python modules doesn't list all the extensions that can be
|
|
745
|
+
# read, so supplement from the jar
|
|
746
|
+
readerlist = zipfile.ZipFile(
|
|
747
|
+
pathlib.Path(bioformats.__file__).parent /
|
|
748
|
+
'jars/bioformats_package.jar',
|
|
749
|
+
).open('loci/formats/readers.txt').read(100000).decode().split('\n')
|
|
750
|
+
pattern = re.compile(r'^loci\.formats\.in\..* # (?:.*?\b(\w{2,})\b(?:,|\s|$))')
|
|
751
|
+
for line in readerlist:
|
|
752
|
+
for ext in set(pattern.findall(line)) - {
|
|
753
|
+
'pattern', 'urlreader', 'screen', 'zip', 'zarr', 'db',
|
|
754
|
+
'fake', 'no'}:
|
|
755
|
+
if ext not in cls.extensions:
|
|
756
|
+
cls.extensions[ext] = SourcePriority.IMPLICIT
|
|
744
757
|
|
|
745
758
|
|
|
746
759
|
def open(*args, **kwargs):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: large-image-source-bioformats
|
|
3
|
-
Version: 1.30.6.
|
|
3
|
+
Version: 1.30.6.dev12
|
|
4
4
|
Summary: An bioformats tilesource for large_image.
|
|
5
5
|
Home-page: https://github.com/girder/large_image
|
|
6
6
|
Author: Kitware, Inc.
|
|
@@ -19,10 +19,10 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
19
19
|
Requires-Python: >=3.8
|
|
20
20
|
Description-Content-Type: text/x-rst
|
|
21
21
|
License-File: LICENSE
|
|
22
|
-
Requires-Dist: large-image>=1.30.6.
|
|
22
|
+
Requires-Dist: large-image>=1.30.6.dev12
|
|
23
23
|
Requires-Dist: python-bioformats>=1.5.2
|
|
24
24
|
Provides-Extra: girder
|
|
25
|
-
Requires-Dist: girder-large-image>=1.30.6.
|
|
25
|
+
Requires-Dist: girder-large-image>=1.30.6.dev12; extra == "girder"
|
|
26
26
|
|
|
27
27
|
An bioformats tilesource for large_image.
|
|
28
28
|
|
{large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/LICENSE
RENAMED
|
File without changes
|
{large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/README.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/setup.cfg
RENAMED
|
File without changes
|
{large_image_source_bioformats-1.30.6.dev6 → large_image_source_bioformats-1.30.6.dev12}/setup.py
RENAMED
|
File without changes
|