Closed stuarteberg closed 2 years ago
Added nBlastMatches
boolean to hemibrain_Meta. If true
then NblastMatchTo
relationship between Neurons exists in dataset.
Example query to search for nblast matches for a bodyId with a score filter.
MATCH(n :hemibrain_Neuron)-[x :NblastMatchTo]->(m :hemibrain_Neuron) WHERE x.score > 0.1 AND n.bodyId=1250920325 RETURN n.bodyId, n.instance, n.type, x.score, m.bodyId, m.instance, m.type ORDER By x.score DESC
These updates were added to the @neuprint/queries module.
Meta
object to specify whether or not NBLAST scores are available in the neo4j database.