large-image-source-bioformats 1.26.1.dev37__tar.gz → 1.26.1.dev41__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.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/PKG-INFO +1 -1
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/large_image_source_bioformats/__init__.py +9 -4
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/large_image_source_bioformats.egg-info/PKG-INFO +1 -1
- large-image-source-bioformats-1.26.1.dev41/large_image_source_bioformats.egg-info/requires.txt +5 -0
- large-image-source-bioformats-1.26.1.dev37/large_image_source_bioformats.egg-info/requires.txt +0 -5
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/LICENSE +0 -0
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/README.rst +0 -0
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/large_image_source_bioformats/girder_source.py +0 -0
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/large_image_source_bioformats.egg-info/SOURCES.txt +0 -0
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/large_image_source_bioformats.egg-info/dependency_links.txt +0 -0
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/large_image_source_bioformats.egg-info/entry_points.txt +0 -0
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/large_image_source_bioformats.egg-info/top_level.txt +0 -0
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/setup.cfg +0 -0
- {large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/setup.py +0 -0
|
@@ -74,7 +74,10 @@ def _monitor_thread():
|
|
|
74
74
|
source._bioimage.close()
|
|
75
75
|
except Exception:
|
|
76
76
|
pass
|
|
77
|
-
|
|
77
|
+
try:
|
|
78
|
+
source._bioimage = None
|
|
79
|
+
except Exception:
|
|
80
|
+
pass
|
|
78
81
|
except AssertionError:
|
|
79
82
|
pass
|
|
80
83
|
finally:
|
|
@@ -128,8 +131,8 @@ def _startJavabridge(logger):
|
|
|
128
131
|
atexit.register(_stopJavabridge)
|
|
129
132
|
logger.info('Started JVM for Bioformats tile source.')
|
|
130
133
|
_javabridgeStarted = True
|
|
131
|
-
except RuntimeError
|
|
132
|
-
logger.exception('Cannot start JVM for Bioformats tile source.'
|
|
134
|
+
except RuntimeError:
|
|
135
|
+
logger.exception('Cannot start JVM for Bioformats tile source.')
|
|
133
136
|
_javabridgeStarted = False
|
|
134
137
|
return _javabridgeStarted
|
|
135
138
|
|
|
@@ -178,7 +181,7 @@ class BioformatsFileTileSource(FileTileSource, metaclass=LruCacheMetaclass):
|
|
|
178
181
|
super().__init__(path, **kwargs)
|
|
179
182
|
|
|
180
183
|
largeImagePath = str(self._getLargeImagePath())
|
|
181
|
-
self._ignoreSourceNames('bioformats', largeImagePath, r'\.
|
|
184
|
+
self._ignoreSourceNames('bioformats', largeImagePath, r'(^[^.]*|\.(png|zarr(\.db|\.zip)))$')
|
|
182
185
|
|
|
183
186
|
if not _startJavabridge(self.logger):
|
|
184
187
|
msg = 'File cannot be opened by bioformats reader because javabridge failed to start'
|
|
@@ -276,6 +279,8 @@ class BioformatsFileTileSource(FileTileSource, metaclass=LruCacheMetaclass):
|
|
|
276
279
|
self._bioimage.close()
|
|
277
280
|
del self._bioimage
|
|
278
281
|
_openImages.remove(weakref.ref(self))
|
|
282
|
+
except Exception:
|
|
283
|
+
pass
|
|
279
284
|
finally:
|
|
280
285
|
if javabridge.get_env():
|
|
281
286
|
javabridge.detach()
|
{large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/LICENSE
RENAMED
|
File without changes
|
{large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/README.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/setup.cfg
RENAMED
|
File without changes
|
{large-image-source-bioformats-1.26.1.dev37 → large-image-source-bioformats-1.26.1.dev41}/setup.py
RENAMED
|
File without changes
|