Skip to content

Commit

Permalink
Prohibit bioformats and vips from reading mrxs directly.
Browse files Browse the repository at this point in the history
  • Loading branch information
manthey committed Oct 3, 2023
1 parent a319ea0 commit 5995a79
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
### Improvements
- Style can specify a dtype of 'source' to maintain the original dtype even when compositing frames ([#1326](../../pull/1326))

### Changes
- Prohibit bioformats and vips from reading mrxs directly ([#1328](../../pull/1328))

## 1.25.0

### Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

# Default to ignoring files with no extension and some specific extensions.
config.ConfigValues['source_bioformats_ignored_names'] = \
r'(^[^.]*|\.(jpg|jpeg|jpe|png|tif|tiff|ndpi|nd2|ome|nc|json|isyntax))$'
r'(^[^.]*|\.(jpg|jpeg|jpe|png|tif|tiff|ndpi|nd2|ome|nc|json|isyntax|mrxs))$'


def _monitor_thread():
Expand Down
2 changes: 1 addition & 1 deletion sources/vips/large_image_source_vips/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

# Default to ignoring files with no extension and some specific extensions.
config.ConfigValues['source_vips_ignored_names'] = \
r'(^[^.]*|\.(yml|yaml|json|png|svs))$'
r'(^[^.]*|\.(yml|yaml|json|png|svs|mrxs))$'


def _clearVipsCache():
Expand Down

0 comments on commit 5995a79

Please sign in to comment.