-
Notifications
You must be signed in to change notification settings - Fork 0
add fragments #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ | |
| 'sequence_view', | ||
| 'internal_fragment_map', | ||
| 'tag_table', | ||
| 'deconv_spectrum' | ||
| 'combined_spectrum' | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainComponent name updated from 'deconv_spectrum' to 'combined_spectrum'. This naming change aligns with the unified data rendering approach being implemented across the visualization modules. Ensure that all references to this component in other parts of the codebase (such as templates, component initialization logic, and documentation) have been updated consistently. 🏁 Script executed: #!/bin/bash
# Verify all references to the spectrum component have been updated consistently
echo "Searching for any remaining references to 'deconv_spectrum'..."
rg "deconv_spectrum" --type pyLength of output: 1091 Missing references to rename ‘deconv_spectrum’ to ‘combined_spectrum’ The search uncovered several remaining usages of the old component name that must be updated: • src/render/initialize.py Please update all of these to use 'combined_spectrum' (including import/initialization logic, data-store keys, and template references) so that the component name is consistent across the codebase. |
||
| ] | ||
|
|
||
| # Setup cache access | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Remove commented-out code.
Since the refactoring to use the new rendering system is now complete, the commented-out code for manual data retrieval and component initialization should be removed.
📝 Committable suggestion