Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion src/murfey/client/contexts/sxt.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def register_sxt_data_collection(
)

recipes_to_assign_pjids = [
"sxt-tomo-align",
"sxt-aretomo",
]
for recipe in recipes_to_assign_pjids:
capture_post(
Expand Down
1 change: 1 addition & 0 deletions src/murfey/server/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ class Settings(BaseSettings):
app.include_router(murfey.server.api.workflow.router)
app.include_router(murfey.server.api.workflow.correlative_router)
app.include_router(murfey.server.api.workflow.spa_router)
app.include_router(murfey.server.api.workflow.sxt_router)
app.include_router(murfey.server.api.workflow.tomo_router)
app.include_router(murfey.server.api.clem.router)
app.include_router(murfey.server.api.workflow_fib.router)
Expand Down
4 changes: 2 additions & 2 deletions src/murfey/workflows/sxt/process_sxt_tilt_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def process_sxt_tilt_series_workflow(
.where(DataCollection.dcg_id == DataCollectionGroup.id)
.where(ProcessingJob.dc_id == DataCollection.id)
.where(AutoProcProgram.pj_id == ProcessingJob.id)
.where(ProcessingJob.recipe == "sxt-tomo-align")
.where(ProcessingJob.recipe == "sxt-aretomo")
).one()
instrument_name = (
murfey_db.exec(select(Session).where(Session.id == session_id))
Expand Down Expand Up @@ -93,7 +93,7 @@ def process_sxt_tilt_series_workflow(
)
stack_file.parent.mkdir(parents=True, exist_ok=True)
zocalo_message = {
"recipes": ["sxt-tomo-align"],
"recipes": ["sxt-aretomo"],
"parameters": {
"txrm_file": tilt_series_info.txrm,
"dcid": collected_ids[1].id,
Expand Down
Loading