From d074c396389d063c640fe4a5989a0a8c6efd4e19 Mon Sep 17 00:00:00 2001 From: Ruben Verweij Date: Mon, 10 Jul 2017 17:10:39 +0200 Subject: [PATCH] Add a class priority so this reader will be loaded before the Bioformats reader --- nd2reader/reader.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nd2reader/reader.py b/nd2reader/reader.py index 139e2be..543f07c 100644 --- a/nd2reader/reader.py +++ b/nd2reader/reader.py @@ -10,6 +10,8 @@ class ND2Reader(FramesSequenceND): This is the main class: use this to process your .nd2 files. """ + class_priority = 12 + def __init__(self, filename): super(self.__class__, self).__init__() self.filename = filename