Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/murfey/client/contexts/tomo.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,10 +267,11 @@ def _add_tilt(
[str(file_transferred_to), tilt_angle]
]
if tilt_series in self._completed_tilt_series:
logger.info(
logger.warning(
f"Tilt series {tilt_series} was previously thought complete but now {file_path} has been seen"
)
self._completed_tilt_series.remove(tilt_series)
self._tilt_series_sizes[tilt_series] = 0
rerun_data = {
"session_id": environment.murfey_session,
"tag": tilt_series,
Expand Down
1 change: 1 addition & 0 deletions src/murfey/server/api/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,7 @@ def register_tilt_series_for_rerun(
).all()
for ts in tilt_series_db:
ts.processing_requested = False
ts.tilt_series_length = -1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You'll need to remind me what -1 is used to indicate in the tilt series database table.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-1 just means we don't know the value

db.add(ts)
db.commit()

Expand Down