-
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
Duplicate nodes in pdb.v4 #253
Comments
The simpler one looks like it was introduced during side loading of expression data. Code: self.ni.add_node(labels=['Class'],
IRI=iri,
attribute_dict=ad) ---> statement = "MERGE (n:%s { iri: '%s' }) set n.short_form = '%s'" ... So Merge should work fine as long as the target node has the :Class neo label and iris match. From inspection of the DBs, this seems to be the case Testing merge behavior against pdb-dev (also on v4): MERGE (c:Class {iri: 'http://virtualflybrain.org/reports/VFBexp_FBtp0122237FBtp011872'} ) SET c.fu = 'bar' Adds yet another class. But queries between these classes look broken: Very confusing. Could there be some character encoding issue or indexing bug? |
There is no duplicate showing at http://pdbl.p2.virtualflybrain.org/browser/ so it's after the generic pipeline has loaded as part of the sideloding as the duplicate is in http://pdbsl.p2.virtualflybrain.org/browser/ I've initially ruled out the first step https://github.com/VirtualFlyBrain/pipeline/blob/pipeline2/process.sh
Starting on the next stages... |
Does anyone know why we now have 2 nodes with the same iri in pdb.v4 -
?
there is only one node for this in the old pdb
v4 has:
KB has
The text was updated successfully, but these errors were encountered: