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

sync: debug with debug-sync-93d5 #1097

Merged
merged 6 commits into from
Apr 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions components/configuration/VFBOverview/quickHelp.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
"height": "575",
"width": "900",
"steps": [{
"title": "Welcome to Virtual Fly Brain",
"image" : "https://VirtualFlyBrain.org/data/VFB/screencaps/VFB_3D_400x400.jpg",
"instructions": [{
"icon" : "fa fa-question-circle-o",
"label" : "Hi, we are currently running a VFB User Survey, once you have used the site please consider completing this survey to help us improve it by clicking User Survey in the Help menu above."
},{
"icon" : "fa fa-fast-forward",
"label" : "Just click NEXT for handy tips on using VFB or SKIP INTO to close this and jump right into VFB."
}]
},{
"title": "Welcome to Virtual Fly Brain",
"image" : "geppetto/build/VFBqHelpMain.jpg",
"instructions": [{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,14 @@ var toolbarMenu = {
position: "bottom-start",
list: [
{
label: "User Survey",
icon: "",
trailerIcon: "fa fa-external-link",
action: {
handlerAction: "openNewTab",
parameters: ["https://www.surveymonkey.co.uk/r/5HDZZRR"]
}
},{
label: "F.A.Q.",
icon: "",
trailerIcon: "fa fa-external-link",
Expand Down
2 changes: 1 addition & 1 deletion components/configuration/VFBTree/VFBTreeConfiguration.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var treeCypherQuery = instance => ({
+ "Individual)-[r:INSTANCEOF]->(anat:Class:Nervous_system) WHERE exists(ie.index) WITH root, anat,r,image"
+ " MATCH p=allshortestpaths((root)<-[:SUBCLASSOF|part_of*..]-(anat)) "
+ "RETURN collect(distinct { node_id: id(anat), short_form: anat.short_form, image: image.short_form })"
+ " AS image_nodes, id(root) AS root, p",
+ " AS image_nodes, id(root) AS root, collect(p)",
"resultDataContents": ["row", "graph"]
}
]
Expand Down
Loading