large-image-source-bioformats 1.27.5.dev55__tar.gz → 1.27.5.dev59__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.
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/PKG-INFO +1 -1
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/large_image_source_bioformats/__init__.py +13 -0
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/large_image_source_bioformats.egg-info/PKG-INFO +1 -1
- large-image-source-bioformats-1.27.5.dev59/large_image_source_bioformats.egg-info/requires.txt +5 -0
- large-image-source-bioformats-1.27.5.dev55/large_image_source_bioformats.egg-info/requires.txt +0 -5
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/LICENSE +0 -0
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/README.rst +0 -0
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/large_image_source_bioformats/girder_source.py +0 -0
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/large_image_source_bioformats.egg-info/SOURCES.txt +0 -0
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/large_image_source_bioformats.egg-info/dependency_links.txt +0 -0
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/large_image_source_bioformats.egg-info/entry_points.txt +0 -0
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/large_image_source_bioformats.egg-info/top_level.txt +0 -0
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/pyproject.toml +0 -0
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/setup.cfg +0 -0
- {large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/setup.py +0 -0
|
@@ -215,6 +215,7 @@ class BioformatsFileTileSource(FileTileSource, metaclass=LruCacheMetaclass):
|
|
|
215
215
|
if not _startJavabridge(self.logger):
|
|
216
216
|
msg = 'File cannot be opened by bioformats reader because javabridge failed to start'
|
|
217
217
|
raise TileSourceError(msg)
|
|
218
|
+
self.addKnownExtensions()
|
|
218
219
|
|
|
219
220
|
self._tileLock = threading.RLock()
|
|
220
221
|
|
|
@@ -699,6 +700,18 @@ class BioformatsFileTileSource(FileTileSource, metaclass=LruCacheMetaclass):
|
|
|
699
700
|
javabridge.detach()
|
|
700
701
|
return large_image.tilesource.base._imageToPIL(image)
|
|
701
702
|
|
|
703
|
+
@classmethod
|
|
704
|
+
def addKnownExtensions(cls):
|
|
705
|
+
# This starts javabridge/bioformats if needed
|
|
706
|
+
_getBioformatsVersion()
|
|
707
|
+
if not hasattr(cls, '_addedExtensions'):
|
|
708
|
+
cls._addedExtensions = True
|
|
709
|
+
cls.extensions = cls.extensions.copy()
|
|
710
|
+
for dotext in bioformats.READABLE_FORMATS:
|
|
711
|
+
ext = dotext.strip('.')
|
|
712
|
+
if ext not in cls.extensions:
|
|
713
|
+
cls.extensions[ext] = SourcePriority.IMPLICIT
|
|
714
|
+
|
|
702
715
|
|
|
703
716
|
def open(*args, **kwargs):
|
|
704
717
|
"""
|
{large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/LICENSE
RENAMED
|
File without changes
|
{large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/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.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/setup.cfg
RENAMED
|
File without changes
|
{large-image-source-bioformats-1.27.5.dev55 → large-image-source-bioformats-1.27.5.dev59}/setup.py
RENAMED
|
File without changes
|