IGS / gEAR

The gEAR Portal was created as a data archive and viewer for gene expression data including microarrays, bulk RNA-Seq, single-cell RNA-Seq and more.
https://umgear.org
GNU Affero General Public License v3.0
10 stars 5 forks source link

Decouple orthology mapping from plotting API calls; Create "orthologs" dropdown #649

Closed adkinsrs closed 3 months ago

adkinsrs commented 3 months ago

Made a branch for this ui-v2-orthology-refactoring

Currently in the API plot calls, I perform orthology mapping on the searched gene/genes, and then plot on the mapped gene. This works, but makes it impossible to allow the user to select orthologs in one-to-many mappings. Need to refactor to retrieve orthologies via a separate API call before plotting. That way we can populate a dropdown of orthologs for the user to choose from, which when changed, will search the API plotting functions using the selected one.

adkinsrs commented 3 months ago

Merged branch into ui-v2