From 8bd0977833aa1fee1813a54e7bcc129386f36c41 Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Fri, 17 Jul 2026 08:58:17 +0200 Subject: [PATCH] rugnux_vs_xds.py: drop the removed --scaling-output flag rugnux always writes both MTZ and CIF now (the --scaling-output option was removed), so passing it made every crystal in the battery fail against the current binary. Co-Authored-By: Claude Opus 4.8 (1M context) --- rugnux_vs_xds.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rugnux_vs_xds.py b/rugnux_vs_xds.py index 2bf203c5..39bf080a 100755 --- a/rugnux_vs_xds.py +++ b/rugnux_vs_xds.py @@ -185,7 +185,8 @@ def run_rugnux(master, workdir, name, xds, rugnux_bin, threads, timeout, reuse): if reuse and cif.exists(): return cif, None, None # no fresh timing when we skip the run - cmd = [rugnux_bin, "-o", name, "--scaling-output", "cif"] + # rugnux always writes both MTZ and CIF now (the old --scaling-output flag was removed). + cmd = [rugnux_bin, "-o", name] if xds.get("anomalous"): cmd.append("-A") if xds.get("dmin"):