From 70f5b4af88b991ffc4a3cd559f606ce692a69d61 Mon Sep 17 00:00:00 2001 From: Stephen Riggs <122790971+stephen-riggs@users.noreply.github.com> Date: Wed, 11 Sep 2024 09:34:17 +0100 Subject: [PATCH] Interpret files with EER as from tomo software (#344) --- src/murfey/client/analyser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/murfey/client/analyser.py b/src/murfey/client/analyser.py index 697f3d7d..c565b6b3 100644 --- a/src/murfey/client/analyser.py +++ b/src/murfey/client/analyser.py @@ -178,6 +178,7 @@ def _find_context(self, file_path: Path) -> bool: or "[" in file_path.name or "Fractions" in split_file_name[-1] or "fractions" in split_file_name[-1] + or "EER" in split_file_name[-1] ): if not self._context: logger.info("Acquisition software: tomo")