Skip to content

Commit

Permalink
When checking for FOV updates at the end of a run, skip Moly points
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-l-kong committed Jul 21, 2023
1 parent d56e256 commit c0e8828
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/toffy/fov_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,10 @@ def _check_last_fov(self, path: str):

def _check_bin_updates(self):
for fov in self.run_structure.fov_progress:
# skip moly points
if fov in self.run_structure.moly_points:
continue

fov_bin_path = os.path.join(self.run_folder, fov + ".bin")
fov_json_path = os.path.join(self.run_folder, fov + ".json")

Expand Down

0 comments on commit c0e8828

Please sign in to comment.