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 7a14ecc commit 958c551Copy full SHA for 958c551
src/murfey/client/analyser.py
@@ -149,6 +149,10 @@ def _find_context(self, file_path: Path) -> bool:
149
# Tomography and SPA workflow checks
150
split_file_name = file_path.name.split("_")
151
if split_file_name:
152
+ # Skip context for gain files
153
+ if "gain" in split_file_name[-1]:
154
+ return False
155
+
156
# Files starting with "FoilHole" belong to the SPA workflow
157
if split_file_name[0].startswith("FoilHole"):
158
if not self._context:
0 commit comments