Skip to content
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

Navigator View Implementation + Additions to tutorial.md + generalized view/gene switching functionality in Views folder #156

Open
wants to merge 57 commits into
base: staging
Choose a base branch
from

Conversation

bdls-jamal
Copy link
Collaborator

Full changes for the navigator view(any improvement suggestions welcomed). Also some additions to the tutorial document to include things like code commenting, view switching, etc. Added a module in the Views folder to be used by any view to switch view, gene, or both. Instructions on use are in the tutorial.

NOTE: These changes are based on pre-routing PR modifications. This should only be merged if the routing PR is still un-merged. A separate PR for post-routing changes will be available later that also changes how the view is implemented + tutorial.

bdls-jamal and others added 30 commits October 7, 2024 21:09
…and nodes are aligned, tree drawn nicer, data is correct to the API.
…nk is clicked. Changes to placeholder files as well. Changes to package.json and eslint file to include eslint tsdoc checking now
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Expecting this to change due to routing change

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this will be different and will have to be reviewed again

@@ -0,0 +1,16 @@
import { styled } from '@mui/material'
export default styled(function CellEFPIcon(props) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rename this file and export to NavigatorViewIcon

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not entirely sure what you mean by export to NavigatorViewIcon, would you be able to elaborate? Otherwise, I have changed line 2 to match the other styles of just styled((props) => { as well as the file name and import name in other files.

import { useViewSwitch } from '../ViewGeneSwitching'

import CellEFPIcon from './Icons/CellEFPIcon'
import GeneInfoViewIcon from './Icons/GeneInfoViewerIcon' /** Placeholder icon for those that are not yet implemented in ePlant3 */
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rename this as there is another "GeneInfoViewIcon"

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rename this file as there is another GeneInfoViewIcon.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rename this to avoid naming conflict with other cellefpicon

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you use this coding pattern from Yonah? Doesn't seem like other icons use it. We seem to be using the GeneInfoViewerIcon.tsx style. Clever use of the 'currentColor' though. I think I can accept this but we need to talk about this during a standup or you can correct it.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did follow his structure yeah. I will try and change this in the meantime before standup

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is changed now

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same renaming conflict issue, make it clear it is for navigator. Or even better can we use the already built efp icon?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The reason I am using my own, is due to some custom sizing I needed to do without messing with the original

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me know if there is a way to achieve the same goal without using a separate file. For example, in some cases I needed to change width and height of the icon.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keeping this for now, assuming it will change a lot after routing merge.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct, it is gone after the routing changes.

package.json Outdated
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What are these packages for ? They're not explicitly imported:

  • msw
  • react-query
  • react-helmet
  • phylotree (I think we don't use this anymore?)
  • react-d3-tree (is this used by d3?)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, these are no longer needed. They were previously needed but I forgot to remove them manually.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

msw was in staging, so my change is just using an updated version. Should I keep that change? I've removed the others as they are no longer needed.

'https://ensembl.gramene.org/Medicago_truncatula/Gene/Summary?g={geneName}',
TOMATO:
'https://ensembl.gramene.org/Solanum_lycopersicum/Search/Results?species=Solanum_lycopersicum;idx=;q={geneName}',
POTATO: '', // Placeholder for N/A
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No potato for gramene?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did not find a dedicated link for potato last time I checked.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Assuming some of the URL fetching here will change with routing ? I.e. make sure this checks if the gene is defined in the URL or maybe yukthiw's change will already define it as genetic element. either way check if this breaks after routing PR.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not to worry, the fetching is gone in my routing changes file.

* @param metadata - Additional tree metadata including expression data
* @param primaryGene - Identifier of the primary gene being analyzed
* @param species - Species name for the primary gene
* @returns A D3-compatible tree structure
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Give us a sample D3 tree for the return, make it small

Copy link
Collaborator Author

@bdls-jamal bdls-jamal Apr 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding this to the description:

Example:
newickToD3("(A:0.1,B:0.2):0.3;", { efp_links: { A: "linkA", B: "linkB" }, genomes: { A: "SOYBEAN", B: "RICE" }, SCC_values: { A: 0.9, B: -0.2 }, sequence_similarity: { A: 95, B: 88 }, maximum_values: { A: 1.0, B: 1.0 }, tree: "(A:0.1,B:0.2):0.3;" }, "A", "SOYBEAN")

Returns: { name: 'internal', value: 0.3, children: [{ name: 'A', value: 0.1, metadata: { genome: 'SOYBEAN', efp_link: 'linkA', scc_value: 0.9, sequence_similarity: 95 } }, { name: 'B', value: 0.2, metadata: { genome: 'RICE', efp_link: 'linkB', scc_value: -0.2, sequence_similarity: 88 } } ] }

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It will look nicer in the comment...

}
}

/** Calculate dimensions based on number of leaf nodes */
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use fn commenting

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

* @param props - Component properties
* @returns JSX element containing metadata visualizations
*/
const MetadataVisualizations = ({
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is important fn, describe the params inside the props obj

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants