fix: Handle multiple spaces in Raw Data line for BMG MARS parser#1243
Merged
Conversation
Some BMG PHERAstar CSV exports write the Raw Data header with more than one space before the filter parenthesis (e.g. "Raw Data (450)"). The regexes required exactly one space, causing "Raw Data line not found in input file." errors. Relax the whitespace to \s+ in the search regex and all filter format patterns. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
stephenworlow
approved these changes
Jul 23, 2026
nathan-stender
added a commit
that referenced
this pull request
Jul 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
BMG PHERAstar CSV exports can write the
Raw Dataheader with more than one space before the filter parenthesis (e.g.Raw Data (450)with two spaces). The parser's regexes required exactly one literal space, so parsing failed with:This relaxes the whitespace to
\s+in the search regex and all fourFILTER_FORMATSpatterns inbmg_mars_structure.py.Changes
bmg_mars_structure.py:Raw Data \(→Raw Data\s+\(in the search regex and all filter format patterns.PHERAstar output file.CSV(a real double-space export) and its generated expected.json.Testing
bmg_marstests pass.hatch run lint(ruff, black, mypy) clean.🤖 Generated with Claude Code