From 7f6cf5abe832ee80850b7ec98caa1d60f9882ac1 Mon Sep 17 00:00:00 2001 From: ivan-aksamentov Date: Wed, 4 Mar 2026 22:45:25 +0100 Subject: [PATCH 1/2] fix(nextstrain/rubella/E1): correct excessBandwidth typo Fix typo in alignmentParams.excessBandwith (missing 'd') to excessBandwidth. The misspelled key was silently ignored, causing the default bandwidth value (9) to be used instead of the intended value (18) during sequence alignment. Applied via: migrations/migrate_015_fix_excess_bandwidth_typo.py --- data/nextstrain/rubella/E1/pathogen.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/nextstrain/rubella/E1/pathogen.json b/data/nextstrain/rubella/E1/pathogen.json index 3ff536f36..d34c736b4 100644 --- a/data/nextstrain/rubella/E1/pathogen.json +++ b/data/nextstrain/rubella/E1/pathogen.json @@ -18,8 +18,8 @@ "alignmentParams": { "minSeedCover": 0.01, "terminalBandwidth": 100, - "excessBandwith": 18, - "minMatchLength": 20 + "minMatchLength": 20, + "excessBandwidth": 18 }, "qc": { "missingData": { From 27b5caa4d228c43717939614486b4a53c38f0302 Mon Sep 17 00:00:00 2001 From: ivan-aksamentov Date: Thu, 5 Mar 2026 13:11:43 +0100 Subject: [PATCH 2/2] docs: add changelog [skip ci] --- data/nextstrain/rubella/E1/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/data/nextstrain/rubella/E1/CHANGELOG.md b/data/nextstrain/rubella/E1/CHANGELOG.md index cca8ad28e..aa088d95d 100644 --- a/data/nextstrain/rubella/E1/CHANGELOG.md +++ b/data/nextstrain/rubella/E1/CHANGELOG.md @@ -1,3 +1,7 @@ +## Unreleased + +- Fix typo: `excessBandwith` to `excessBandwidth` + ## 2025-09-09T12:13:13Z Add schema definition url to `pathogen.json`. This is a purely technical change, for convenience of dataset authors. The data itself is not modified.