Skip to content

Commit

Permalink
Merge pull request #1455 from VirtualFlyBrain/master-solr-cache
Browse files Browse the repository at this point in the history
update alpha with release fixes
  • Loading branch information
Robbie1977 authored Jan 12, 2024
2 parents cbd5e8a + 154b944 commit 9508264
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ var focusTermConfiguration = {
position: "bottom-start",
dynamicListInjector: {
handlerAction: "subMenuGrouping",
parameters: ["undefined"]
parameters: []
}
}
]
Expand Down
5 changes: 5 additions & 0 deletions components/configuration/VFBMain/searchConfiguration.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,11 @@ var searchConfiguration = {
"filter_name": "Synaptic Neuropil",
"enabled": "disabled",
},
{
"key": "hasScRNAseq",
"filter_name": "Has scRNAseq data",
"enabled": "disabled",
},
{
"key": "DataSet",
"filter_name": "Dataset",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,15 @@ var toolbarMenu = {
handlerAction: "openNewTab",
parameters: ["https://neuprint.janelia.org/?dataset=hemibrain%3Av1.2.1&qt=findneurons"]
}
},
{
label: "Adult Male VNC (MANC) NeuPRINT+ (FlyEM, Janelia)",
icon: "",
position: "right-start",
action: {
handlerAction: "openNewTab",
parameters: ["https://neuprint.janelia.org/?dataset=manc%3Av1.0&qt=findneurons"]
}
}
]
},
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 @@ -9,7 +9,7 @@ var treeCypherQuery = instance => ({
"statement": "MATCH (root:Class)<-[:INSTANCEOF]-(t:Template {short_form:'" + instance + "'})"
+ "<-[:depicts]-(tc:Template)<-[ie:in_register_with]-(c:Individual)-[:depicts]->(image:"
+ "Individual)-[r:INSTANCEOF]->(anat:Class:Anatomy) WHERE exists(ie.index) WITH root, anat,r,image"
+ " MATCH p=allshortestpaths((root)<-[:SUBCLASSOF|part_of*..]-(anat)) "
+ " MATCH p=allshortestpaths((root)<-[:SUBCLASSOF|part_of*..50]-(anat)) "
+ "UNWIND nodes(p) as n UNWIND nodes(p) as m WITH * WHERE id(n) < id(m) "
+ "MATCH path = allShortestPaths( (n)-[:SUBCLASSOF|part_of*..1]-(m) ) "
+ "RETURN collect(distinct { node_id: id(anat), short_form: anat.short_form, image: image.short_form })"
Expand Down

0 comments on commit 9508264

Please sign in to comment.