Allow downloads of VA-Spec objects from variant pages #588
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.
This pull request enhances the
VariantScreen.vuecomponent by adding a feature to download annotations for the selected variant. It introduces a newSplitButtonin the header, allowing users to choose from multiple annotation types to download as JSON files. The implementation includes new computed properties and a method for fetching and downloading the annotation data, as well as UI improvements for better usability.Feature: Download Variant Annotations
SplitButtonto the variant header that enables users to download different types of annotations (clinical evidence, functional impact statement, study result) for the currently selected variant. The button dynamically updates its options based on the available data for the active variant. [1] [2] [3]Implementation Details
annotatedVariantDownloadOptionsto generate the download menu options based on the active variant's data.fetchVariantAnnotationsmethod, which retrieves the requested annotation from the API and triggers a JSON file download in the browser. Error handling is included to notify the user if the download fails.UI and Code Quality Improvements