From b34a90e2f5b7132761e73863da467b0546745a38 Mon Sep 17 00:00:00 2001 From: Yousef Moazzam Date: Tue, 14 Apr 2026 12:57:39 +0100 Subject: [PATCH] Remove default param values for recon in CoR sweep The default values are unnecessary for the tomo GUI's usage of the parameter schema and associated workflow template, and the default values are related to pipeline validation issues in the tomo GUI (likely existing since the merge of #152), so its removal causes no issues and provides a convenient workaround for the validation issue. --- httomo/schemas/cor-sweep-param.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/httomo/schemas/cor-sweep-param.json b/httomo/schemas/cor-sweep-param.json index a2d0c00..2274ab4 100644 --- a/httomo/schemas/cor-sweep-param.json +++ b/httomo/schemas/cor-sweep-param.json @@ -367,23 +367,23 @@ "$ref": "#/$defs/SweepConfig" }, "sinogram_order": { - "default": false, "title": "Sinogram Order", "type": "boolean" }, "algorithm": { - "default": "gridrec", "title": "Algorithm", "type": "string" }, "init_recon": { - "default": null, "title": "Init Recon", "type": "null" } }, "required": [ - "center" + "center", + "sinogram_order", + "algorithm", + "init_recon" ], "title": "TomopyReconConfigParams", "type": "object"