fix: ChimeraX --cmd quoting breaks rendering#110
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the ChimeraX plotting integration to build --cmd scripts using unquoted paths (to accommodate ChimeraX versions that reject quoted paths in ;-separated --cmd strings) and adds stricter path validation to prevent malformed scripts and command injection.
Changes:
- Switched ChimeraX
open/savecommand generation to interpolate paths unquoted in the--cmdscript. - Expanded path validation to reject additional characters (notably whitespace) that would break ChimeraX tokenization.
- Clarified inline documentation around subprocess execution vs. ChimeraX command parsing.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
PR #106 wrapped paths in double quotes inside the ChimeraX
--cmdscript to handle spaces. On some ChimeraX versions (e.g. 1.6.1) that quoting breaks the parser ("incomplete quoted text"), so every chimerax-plot render fails.Fix: drop the quoting and instead reject paths containing characters that would break or inject into the
;-separated command — space, tab,;,", newline, CR — surfacing a clear error rather than a broken/injected command.Also silences the expected
log(0)RuntimeWarning (zero-score positions) vianp.errstate; no behavioral change.