-
Notifications
You must be signed in to change notification settings - Fork 1
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
Graph Browser component requirements #337
Comments
We need 3 different graph widgets, all of which will have full underlying JSON graph specified in initial query (i.e. no dynamic querying to generate more graph during browsing). Nodes should be selectable => change in focus term). All edges must be have direction and we need the ability to label and render edges and to adjust their width. Prefer static over dynamic layout. Component 1: Tree browser (not connected graph) for template: single root or small number of roots - many branches and leaf nodes. This one should be folded out to some limited number of nodes. Would also be good if automatically folds out to focus term (this is what VFB1 does). We don't need edge types displayed. See original VFB1 tree browser: http://vfbsandbox1.inf.ed.ac.uk/site/stacks/index.htm - Note - this simple text layout has the advantage of compactness. Component 2: Context browser - connected graph starting from one root (a bottom) = focus term - graph laid out above in rows with all arrows pointing up. Row[0] = search term ('apoptotic body' in graph below); Row[1] = nodes one hop away by longest path ('extracellular vesicle' in graph below), Row[2] nodes 2 hops away by longest path etc. Note the graph has multiple paths so some nodes are 2 different distances from search term. Nodes should (ideally) be big enough to display term name. Nodes should be clickable to select. Modelled after QuickGO: https://www.ebi.ac.uk/QuickGO/term/GO:0097189 Component 3: Circuit explorer - connected graph organised in columns. Would be good to be able to display edge strength as thickness. Graphs are generated from two leg queries => starting entity class or individual & ending entity class or individual + specification of max number of links. Column position determined by simple algorithm we provide. We need to be able to colour render nodes by type (Neo4J label / Geppetto model supertype). We need to think carefully about how queries are driven. |
May be of help further down: https://www.graphviz.org/pdf/dotguide.pdf |
@dosumis @Robbie1977 below the main questions came out from our explorative meeting on this component and possible libraries to use:
3.1 Visualise the node (load 3D data, load image(s), load metadata in the terminfo) changing the focus term?
3.2 run another query that returns more data from that node?
The implementation per node will be as much generic as possible since each node can represents different objects (neurons, images, others).
The text was updated successfully, but these errors were encountered: