We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7ed7cb commit f0dd9e8Copy full SHA for f0dd9e8
src/murfey/client/analyser.py
@@ -122,6 +122,17 @@ def _find_context(self, file_path: Path) -> bool:
122
self._context = SPAMetadataContext("epu", self._basepath)
123
return True
124
125
+ if "Metadata" in file_path.parts or file_path.name == "EpuSession.dm":
126
+ self._context = SPAMetadataContext("epu", self._basepath)
127
+ return True
128
+ elif (
129
+ "Batch" in file_path.parts
130
+ or "SearchMaps" in file_path.parts
131
+ or file_path.name == "Session.dm"
132
+ ):
133
+ self._context = TomographyMetadataContext("tomo", self._basepath)
134
135
+
136
# CLEM workflow checks
137
# Look for LIF and XLIF files
138
if file_path.suffix in (".lif", ".xlif"):
0 commit comments