We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcb8b8b commit 8301d7eCopy full SHA for 8301d7e
src/murfey/workflows/tomo/tomo_metadata.py
@@ -225,9 +225,9 @@ def register_search_map_in_database(
225
else:
226
logger.info(
227
f"Unable to register search map {sanitise(search_map_name)} position yet: "
228
- f"stage {search_map_params.x_stage_position}, "
229
- f"width {search_map_params.width}, "
230
- f"atlas pixel size {dcg.atlas_pixel_size}"
+ f"stage {sanitise(str(search_map_params.x_stage_position))}, "
+ f"width {sanitise(str(search_map_params.width))}, "
+ f"atlas pixel size {sanitise(str(dcg.atlas_pixel_size))}"
231
)
232
murfey_db.add(search_map)
233
murfey_db.commit()
0 commit comments