VirtualFlyBrain / VFB_neo4j

A python package for writing schema-compliant content to VFB neo4J DBs
Apache License 2.0
0 stars 1 forks source link

LMB to KB - remaining tasks #24

Closed dosumis closed 7 years ago

dosumis commented 7 years ago

Update KB imports first (needed as edge addition runs on URIs)

Order of following is important:

Related tasks:

Unit tests

Neo4j connect

Robbie1977 commented 7 years ago

Been working through code fixing bugs. Got up to line 108:import_individuals_lmb2KB.py

mysql> SELECT oc.shortFormID AS claz, oi.shortFormID AS ind, oop.shortFormID AS rel_sfid, oop.label AS rel_label, ront.baseURI AS rBase, ront.short_name AS ront_name cont.base_uri AS cbase FROM owl_individual oi JOIN individual_type it ON oi.id = it.individual_id JOIN owl_type ot ON it.type_id = ot.id JOIN owl_class oc ON ot.class = oc.id JOIN owl_objectProperty oop ON ot.objectProperty=oop.id JOIN ontology ront ON (oop.ontology_id=ront.id) JOIN ontology cont ON (oc.ontology_id=ront.id);
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'cont.base_uri AS cbase FROM owl_individual oi JOIN individual_type it ON oi.id =' at line 1
dosumis commented 7 years ago

Missing comma:

ront_name cont.base_uri

ront_name, cont.base_uri

On 19 Mar 2017 5:32 p.m., "Rob Court" notifications@github.com wrote:

Been working through code fixing bugs. Got up to line 108:import_individuals_lmb2KB.py

mysql> SELECT oc.shortFormID AS claz, oi.shortFormID AS ind, oop.shortFormID AS rel_sfid, oop.label AS rel_label, ront.baseURI AS rBase, ront.short_name AS ront_name cont.base_uri AS cbase FROM owl_individual oi JOIN individual_type it ON oi.id = it.individual_id JOIN owl_type ot ON it.type_id = ot.id JOIN owl_class oc ON ot.class = oc.id JOIN owl_objectProperty oop ON ot.objectProperty=oop.id JOIN ontology ront ON (oop.ontology_id=ront.id) JOIN ontology cont ON (oc.ontology_id=ront.id); ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'cont.base_uri AS cbase FROM owl_individual oi JOIN individual_type it ON oi.id =' at line 1

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment-287632690, or mute the thread https://github.com/notifications/unsubscribe-auth/AAG4x5rYgsOALnNuVDL8fGFxkFQED3Awks5rnWavgaJpZM4MaKT3 .

dosumis commented 7 years ago

Apologies for any remaining bugs. Everything apart from some final changes on Saturday have been checked/debugged.

BTW: Need to rebuild owltools on Jenkins and re-run VFB_ind_build (dev release). Release before last of OWLtools moved the executable - screwing up our paths. Now fixed. I put a JSON conversion step into the into the VFB_in build job. Would be good to have this running from the latest OWLtools. This will ensure vfb_ext.owl can be pulled from URI.

On Mar 20, 2017, at 7:37 AM, David Osumi-Sutherland dosumis@gmail.com wrote:

Missing comma:
ront_name cont.base_uri

ront_name, cont.base_uri

On 19 Mar 2017 5:32 p.m., "Rob Court" <notifications@github.com mailto:notifications@github.com> wrote: Been working through code fixing bugs. Got up to line 108:import_individuals_lmb2KB.py

mysql> SELECT oc.shortFormID AS claz, oi.shortFormID AS ind, oop.shortFormID AS rel_sfid, oop.label AS rel_label, ront.baseURI AS rBase, ront.short_name AS ront_name cont.base_uri AS cbase FROM owl_individual oi JOIN individual_type it ON oi.id = it.individual_id JOIN owl_type ot ON it.type_id = ot.id JOIN owl_class oc ON ot.class = oc.id JOIN owl_objectProperty oop ON ot.objectProperty=oop.id JOIN ontology ront ON (oop.ontology_id=ront.id) JOIN ontology cont ON (oc.ontology_id=ront.id); ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'cont.base_uri AS cbase FROM owl_individual oi JOIN individual_type it ON oi.id http://oi.id/ =' at line 1 — You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment-287632690, or mute the thread https://github.com/notifications/unsubscribe-auth/AAG4x5rYgsOALnNuVDL8fGFxkFQED3Awks5rnWavgaJpZM4MaKT3.

Robbie1977 commented 7 years ago

Getting Warning:

*** Adding constraints and Indexes***
/opt/VFB_neo4j/src/uk/ac/ebi/vfb/neo4j/KB_tools.py:76: UserWarning: Can't use a <class 'NoneType'> as an attribute value in Cypher. Key label Value :None                           % (type(v), k, (str(v))))
Robbie1977 commented 7 years ago

FYI the numbers so far are: Adding 117888 Individuals Adding 115827 FACTs ...

Robbie1977 commented 7 years ago

owltools building: https://blanik.inf.ed.ac.uk:8079/view/OWL/job/owltools/9/

Some Warnings but has compiled:

https://blanik.inf.ed.ac.uk:8079/view/OWL/job/owltools/9/console

dosumis commented 7 years ago

Adding constraints and Indexes /opt/VFB_neo4j/src/uk/ac/ebi/vfb/neo4j/KB_tools.py:76: UserWarning: Can't use a <class 'NoneType'> as an attribute value in Cypher. Key label Value :None % (type(v), k, (str(v))))

Probably harmless. Got a stack trace?

Robbie1977 commented 7 years ago

Nope as it's a generated warning: https://github.com/VirtualFlyBrain/VFB_neo4j/blob/master/src/uk/ac/ebi/vfb/neo4j/KB_tools.py#L75

Robbie1977 commented 7 years ago

Do you know what the column name should be off hand: "Unknown column 'cont.base_uri' in 'field list'"

Traceback (most recent call last):
  File "/opt/VFB_neo4j/src/uk/ac/ebi/vfb/neo4j/lmb2neoKB/import_individuals_lmb2KB.py", line 108, in <module>
    cursor.execute("SELECT oc.shortFormID AS claz, " \
  File "/usr/local/lib/python3.6/site-packages/pymysql/cursors.py", line 166, in execute
    result = self._query(query)
  File "/usr/local/lib/python3.6/site-packages/pymysql/cursors.py", line 322, in _query
    conn.query(q)
  File "/usr/local/lib/python3.6/site-packages/pymysql/connections.py", line 852, in query
    self._affected_rows = self._read_query_result(unbuffered=unbuffered)
  File "/usr/local/lib/python3.6/site-packages/pymysql/connections.py", line 1053, in _read_query_result
    result.read()
  File "/usr/local/lib/python3.6/site-packages/pymysql/connections.py", line 1336, in read
    first_packet = self.connection._read_packet()
  File "/usr/local/lib/python3.6/site-packages/pymysql/connections.py", line 1010, in _read_packet
    packet.check_error()
  File "/usr/local/lib/python3.6/site-packages/pymysql/connections.py", line 393, in check_error
    err.raise_mysql_exception(self._data)
  File "/usr/local/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception
    raise errorclass(errno, errval)
pymysql.err.InternalError: (1054, "Unknown column 'cont.base_uri' in 'field list'")
dosumis commented 7 years ago

Do you know what the column name should be of hand: "Unknown column 'cont.base_uri' in 'field list'"

cbase

(From SQL cont.base_uri AS cbase)

dosumis commented 7 years ago

/opt/VFB_neo4j/src/uk/ac/ebi/vfb/neo4j/KB_tools.py:76: UserWarning: Can't use a <class 'NoneType'> as an attribute value in Cypher. Key label Value :None % (type(v), k, (str(v))))

This is harmless. There are some individuals with no label in the DB. It could be suppressed with a conditional

https://github.com/VirtualFlyBrain/VFB_neo4j/blob/master/src/uk/ac/ebi/vfb/neo4j/lmb2neoKB/import_individuals_lmb2KB.py#L45

ad['label'] = d['label']
#>
if d['label']: ad['label'] = d['label']
Robbie1977 commented 7 years ago

Are you sure it's not baseURI rather than base_uri as these are both called from ontologies table

dosumis commented 7 years ago

Yep sorry cont.baseURI

Robbie1977 commented 7 years ago
*** Adding 0 Types ***
Traceback (most recent call last):
  File "/opt/VFB_neo4j/src/uk/ac/ebi/vfb/neo4j/lmb2neoKB/import_individuals_lmb2KB.py", line 147, in <module>
    edge_writer.test_edge_addition()
  File "/opt/VFB_neo4j/src/uk/ac/ebi/vfb/neo4j/KB_tools.py", line 147, in test_edge_addition
    missed_edges = [x['columns'] for x in self.output[0] if not x['data']]
IndexError: list index out of range
Robbie1977 commented 7 years ago

Probably the issue is with the previous section as seems to be trying to link to VFBi_:

/opt/VFB_neo4j/src/uk/ac/ebi/vfb/neo4j/KB_tools.py:150: UserWarning: Edge not added. Something doesn't match here: ["'http://virtualflybrain.org/reports/VFBi_00000629'", "'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'", "'http://virtualflybrain.org/reports/VFBc_00000629'"]
  warnings.warn("Edge not added. Something doesn't match here: %s" % str(e))

Full Log: https://gist.github.com/Robbie1977/d9ca393fd27f0d8a048131b7f1e77e13

dosumis commented 7 years ago

"Adding '0' Types" is down to mangled SQL. Should be

SELECT oc.shortFormID AS claz, 
oi.shortFormID AS ind, 
oop.shortFormID AS rel_sfid, 
oop.label AS rel_label, 
ront.baseURI AS rBase, 
ront.short_name AS ront_name,
cont.baseURI AS cbase 
FROM owl_individual oi 
JOIN individual_type it ON oi.id=it.individual_id 
JOIN owl_type ot ON it.type_id=ot.id 
JOIN owl_class oc ON ot.class = oc.id 
JOIN owl_objectProperty oop ON ot.objectProperty=oop.id 
JOIN ontology ront ON (oop.ontology_id=ront.id) 
JOIN ontology cont ON (oc.ontology_id=cont.id);
dosumis commented 7 years ago

We need to drop all Classes and Individuals (i.e. everything but data_source, license and pub) from DB before running scripts. Individuals have new IRIs. + class nodes in current DB have no IRIs. This, plus short_form ID constraint explains lines like this:

/opt/VFB_neo4j/src/uk/ac/ebi/vfb/neo4j/neo4j_tools.py:83: UserWarning: {'code': 'Neo.ClientError.Schema.ConstraintValidationFailed', 'message': 'Node 0 already exists with label Individual and property "short_form"=[VFB_00000001]'}
  warnings.warn(str(e))

The subsequent warnings are a knock on effect of failure to add nodes with correct IRI.

Robbie1977 commented 7 years ago

I'll wipe the DB before each run.

dosumis commented 7 years ago

Be careful. Important to keep the datasource and license nodes + assoc pub nodes.

On Mar 21, 2017, at 9:18 AM, Rob Court notifications@github.com wrote:

I'll wipe the DB before each run.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment-288019789, or mute the thread https://github.com/notifications/unsubscribe-auth/AAG4xw2m1ch0sdiEkRIq6UpoSARX1lZ-ks5rn5X-gaJpZM4MaKT3.

Robbie1977 commented 7 years ago

What is the intended load order of the scripts?

dosumis commented 7 years ago

The order is in the ticket above. Load features and ontology content first. Then run the other scripts in the order listed.

Robbie1977 commented 7 years ago

@dosumis ontologies_2_KB.py doesn't appear to load any FBbt nodes?

dosumis commented 7 years ago

@dosumis ontologies_2_KB.py doesn't appear to load any FBbt nodes?

Fixed.

Robbie1977 commented 7 years ago

After: ontologies_2_KB.py load_features_from_lmb.py import_individuals_lmb2KB.py add_clusters.py add_annotations.py

KB (from scratch): Node ID 142771 Property ID 644441 Relationship ID 239316 Relationship Type ID 1

By Labels: [Property] 139 [Individual, VFB] 117888 [Class] 12955 [Class, Feature] 11789

dosumis commented 7 years ago

Looks about right. What about counts of edges? Count r for: (:Class)<-[r:INSTANCEOF]-(:Individual) (:Individual)<-(r:Related)-(:Individual) (:Class)<-[r:Related]-(:Individual)

On 25 Mar 2017 3:02 p.m., "Rob Court" notifications@github.com wrote:

After: ontologies_2_KB.py load_features_from_lmb.py import_individuals_lmb2KB.py add_clusters.py add_annotations.py

KB (from scratch): Node ID 142771 Property ID 644441 Relationship ID 239316 Relationship Type ID 1

By Labels: [Property] 139 [Individual, VFB] 117888 [Class] 12955 [Class, Feature] 11789

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment-289217150, or mute the thread https://github.com/notifications/unsubscribe-auth/AAG4x2rVWk-JPTPZPbVQlMC8YYNaNLtsks5rpSx3gaJpZM4MaKT3 .

dosumis commented 7 years ago

BTW - after working with Scala/SCOWL for a bit and looking back through the owl gen code, I've concluded that it'll be much quicker to patch cypher queries into the current Jython OWLgen code for now and make the switch to Scala later. The edits to the Jython code will be quite minimal and the Cypher will be re-usable.

Do you have an open KB with the new load I can look at?

On 25 Mar 2017 3:02 p.m., "Rob Court" notifications@github.com wrote:

After: ontologies_2_KB.py load_features_from_lmb.py import_individuals_lmb2KB.py add_clusters.py add_annotations.py

KB (from scratch): Node ID 142771 Property ID 644441 Relationship ID 239316 Relationship Type ID 1

By Labels: [Property] 139 [Individual, VFB] 117888 [Class] 12955 [Class, Feature] 11789

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment-289217150, or mute the thread https://github.com/notifications/unsubscribe-auth/AAG4x2rVWk-JPTPZPbVQlMC8YYNaNLtsks5rpSx3gaJpZM4MaKT3 .

Robbie1977 commented 7 years ago

You can access the test kb on http://129.215.91.204:7574 inside the vpn.

On Sun, 26 Mar 2017 at 10:45, David Osumi-Sutherland < notifications@github.com> wrote:

BTW - after working with Scala/SCOWL for a bit and looking back through the owl gen code, I've concluded that it'll be much quicker to patch cypher queries into the current Jython OWLgen code for now and make the switch to Scala later. The edits to the Jython code will be quite minimal and the Cypher will be re-usable.

Do you have an open KB with the new load I can look at?

On 25 Mar 2017 3:02 p.m., "Rob Court" notifications@github.com wrote:

After: ontologies_2_KB.py load_features_from_lmb.py import_individuals_lmb2KB.py add_clusters.py add_annotations.py

KB (from scratch): Node ID 142771 Property ID 644441 Relationship ID 239316 Relationship Type ID 1

By Labels: [Property] 139 [Individual, VFB] 117888 [Class] 12955 [Class, Feature] 11789

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub < https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment-289217150 , or mute the thread < https://github.com/notifications/unsubscribe-auth/AAG4x2rVWk-JPTPZPbVQlMC8YYNaNLtsks5rpSx3gaJpZM4MaKT3

.

You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment-289269339, or mute the thread https://github.com/notifications/unsubscribe-auth/AEao8HmBwafABp4eAprWfznT9XzKNQk2ks5rpjO4gaJpZM4MaKT3 .

dosumis commented 7 years ago

That IP => me ... page is working ... didn't send any data.

On 26 Mar 2017 11:18 a.m., "Rob Court" notifications@github.com wrote:

You can access the test kb on http://129.215.91.204:7574 inside the vpn.

On Sun, 26 Mar 2017 at 10:45, David Osumi-Sutherland < notifications@github.com> wrote:

BTW - after working with Scala/SCOWL for a bit and looking back through the owl gen code, I've concluded that it'll be much quicker to patch cypher queries into the current Jython OWLgen code for now and make the switch to Scala later. The edits to the Jython code will be quite minimal and the Cypher will be re-usable.

Do you have an open KB with the new load I can look at?

On 25 Mar 2017 3:02 p.m., "Rob Court" notifications@github.com wrote:

After: ontologies_2_KB.py load_features_from_lmb.py import_individuals_lmb2KB.py add_clusters.py add_annotations.py

KB (from scratch): Node ID 142771 Property ID 644441 Relationship ID 239316 Relationship Type ID 1

By Labels: [Property] 139 [Individual, VFB] 117888 [Class] 12955 [Class, Feature] 11789

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub < https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment- 289217150 , or mute the thread < https://github.com/notifications/unsubscribe-auth/AAG4x2rVWk- JPTPZPbVQlMC8YYNaNLtsks5rpSx3gaJpZM4MaKT3

.

You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment- 289269339, or mute the thread https://github.com/notifications/unsubscribe-auth/ AEao8HmBwafABp4eAprWfznT9XzKNQk2ks5rpjO4gaJpZM4MaKT3 .

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment-289270799, or mute the thread https://github.com/notifications/unsubscribe-auth/AAG4x1V403X9SMORZa_ZxbtLsUNpNNpiks5rpjuDgaJpZM4MaKT3 .

Robbie1977 commented 7 years ago

No idea why both with and without bolt works this end - are you using the route all VPN as I think the other only routes the inf.ed.ac.uk traffic which might fail with ip direct

Robbie1977 commented 7 years ago

On the relationships we might have an issue as only have Related: ()-[r:Related]->() = 239316 or which (label, count): has_postsynaptic_terminal_in 441 member_of 16127 has_member 16127 develops_from 805 [1] 205026 fasciculates_with 790

where label = [1] (short_form, count): OBI_0000312 130 BFO_0000050 54615 VFBext_0000003 38545 RO_0002292 34454 VFBext_0000002 38544 null 38738

same with IRI: http://xmlns.com/foaf/0.1/depicts 38738 http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003 38545 http://purl.obolibrary.org/obo/OBI_0000312 130 http://purl.obolibrary.org/obo/BFO_0000050 54615 http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002 38544 http://purl.obolibrary.org/obo/RO_0002292 34454

Robbie1977 commented 7 years ago

I'm going to wipe and do a full run as that wasn't an completely clean run. I'll keep that server as is If you want to try and access.

dosumis commented 7 years ago

On Mar 27, 2017, at 9:54 AM, Rob Court notifications@github.com wrote:

On the relationships we might have an issue as only have Related: ()-[r:Related]->() = 239316 or which (label, count): has_postsynaptic_terminal_in 441 member_of 16127 has_member 16127 develops_from 805 [1] 205026 fasciculates_with 790

Wonder what this is:

[1] 205026

Do you have logs?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/VirtualFlyBrain/VFB_neo4j/issues/24#issuecomment-289392896, or mute the thread https://github.com/notifications/unsubscribe-auth/AAG4x9ZhftZFOgcigNggW4dd7gkN95lAks5rp3kxgaJpZM4MaKT3.

Robbie1977 commented 7 years ago

I've added the full details to the ticket (email doesn't get resent), I'm just running a full clean load now on a new test server to check it's a real issue and will post the full logs.

Robbie1977 commented 7 years ago
Loading http://ontologies.berkeleybop.org/fbbt/fbbt-simple.json
Loading http://ontologies.berkeleybop.org/so.json
Loading http://ontologies.berkeleybop.org/fbbi.json
Loading https://raw.githubusercontent.com/VirtualFlyBrain/VFB_owl/master/src/owl/vfb_ext.json

Processing chunk starting with: MERGE (n:Class:Feature { IRI: 'http://flybase.org/reports/FBal0276838' }) SET n.short_form = "FBal0276838" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Class:Feature { IRI: 'http://flybase.org/reports/FBtp0100709' }) SET n.short_form = "FBtp0100709" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Class:Feature { IRI: 'http://flybase.org/reports/FBtp0106219' }) SET n.short_form = "FBtp0106219" SET n.is_obsolete = False
*** Adding constraints and Indexes***
*** Adding 117888 Individuals ***
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFB_00000001' }) SET n.short_form = "VFB_00000001" SET n.label = "fru-M-200266" SET n.is_obsolete = False SET n.comment = "OutAge: Adult 5~15 days" SET n.synonyms = ['fru-M-200266', 'FruMARCM-M002262_seg001'] SET n.xrefs = ['FlyCircuit_gene_name:FruMARCM-M002262_seg001', 'FlyCircuit_idid:1', 'FlyCircuit_name:fru-M-200266']
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFB_00005027' }) SET n.short_form = "VFB_00005027" SET n.label = "Cha-F-000220" SET n.is_obsolete = False SET n.comment = "OutAge: Adult 5~15 days" SET n.synonyms = ['Cha-F-000220', 'ChaMARCM-F001113_seg001'] SET n.xrefs = ['FlyCircuit_gene_name:ChaMARCM-F001113_seg001', 'FlyCircuit_idid:5027', 'FlyCircuit_name:Cha-F-000220']
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFB_00010033' }) SET n.short_form = "VFB_00010033" SET n.label = "fru-F-500094" SET n.is_obsolete = False SET n.comment = "OutAge: Adult 5~15 days" SET n.synonyms = ['fru-F-500094', 'FruMARCM-F000623_seg001'] SET n.xrefs = ['FlyCircuit_gene_name:FruMARCM-F000623_seg001', 'FlyCircuit_idid:10033', 'FlyCircuit_name:fru-F-500094']
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFB_00015087' }) SET n.short_form = "VFB_00015087" SET n.label = "VGlut-F-400378" SET n.is_obsolete = False SET n.comment = "OutAge: Adult 5~15 days" SET n.synonyms = ['VGlut-F-400378', 'DvGlutMARCM-F1422_seg1'] SET n.xrefs = ['FlyCircuit_gene_name:DvGlutMARCM-F1422_seg1', 'FlyCircuit_idid:15087', 'FlyCircuit_name:VGlut-F-400378']
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFB_00022208' }) SET n.short_form = "VFB_00022208" SET n.label = "GMR_59C12_AE_01_00-fA01b" SET n.is_obsolete = False SET n.synonyms = ['GMR_59C12_AE_01_00-fA01b'] SET n.xrefs = []
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBi_00001463' }) SET n.short_form = "VFBi_00001463" SET n.label = "fru-M-400088-i" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBi_00003985' }) SET n.short_form = "VFBi_00003985" SET n.label = "Gad1-F-100071-i" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBi_00006489' }) SET n.short_form = "VFBi_00006489" SET n.label = "VGlut-F-500795-i" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBi_00008991' }) SET n.short_form = "VFBi_00008991" SET n.label = "VGlut-F-200482-i" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBi_00011506' }) SET n.short_form = "VFBi_00011506" SET n.label = "fru-F-200014-i" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBi_00014046' }) SET n.short_form = "VFBi_00014046" SET n.label = "Trh-F-300039-i" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFB_00024555' }) SET n.short_form = "VFB_00024555" SET n.label = "VDRC_VT000837_GAL4_attP2_1" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFB_00029555' }) SET n.short_form = "VFB_00029555" SET n.label = "VDRC_VT017665_GAL4_attP2_1" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFB_00040900' }) SET n.short_form = "VFB_00040900" SET n.label = "VDRC_VT037500_GAL4_attP2_3" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFB_00045900' }) SET n.short_form = "VFB_00045900" SET n.label = "VDRC_VT054779_GAL4_attP2_1" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBc_00025074' }) SET n.short_form = "VFBc_00025074" SET n.label = "VDRC_VT002834_GAL4_attP2_2_c" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBc_00027574' }) SET n.short_form = "VFBc_00027574" SET n.label = "VDRC_VT011145_LexAGAD_attP40_3_c" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBc_00030074' }) SET n.short_form = "VFBc_00030074" SET n.label = "VDRC_VT019348_GAL4_attP2_5_c" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBc_00038919' }) SET n.short_form = "VFBc_00038919" SET n.label = "VDRC_VT027954_LexAGAD_attP40_1_c" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBc_00040839' }) SET n.short_form = "VFBc_00040839" SET n.label = "VDRC_VT037216_GAL4_attP2_3_c" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBc_00043339' }) SET n.short_form = "VFBc_00043339" SET n.label = "VDRC_VT043702_LexAGAD_attP40_2_c" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBc_00021032' }) SET n.short_form = "VFBc_00021032" SET n.label = "GMR_34E07_AE_01_03-fA01b_c" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBc_00023532' }) SET n.short_form = "VFBc_00023532" SET n.label = "GMR_43D02_AE_01_04-fA01b_c" SET n.is_obsolete = False
Processing chunk starting with: MERGE (n:Individual:VFB { IRI: 'http://virtualflybrain.org/reports/VFBc_00047549' }) SET n.short_form = "VFBc_00047549" SET n.label = "VDRC_VT061709_LexAGAD_attP40_1_c" SET n.is_obsolete = False
*** Adding 115827 FACTs ***
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00000001'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00000001'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00000001', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00000001'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00000667'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00000667'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00000667', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00000667'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00001337'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00001337', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00002005'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00002005'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00002005', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00002005'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00002677'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00002677'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00002677', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00002677'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00003354'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00003354', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00004026'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00004026'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00004026', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00004026'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00004693'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00004693'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00004693', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00004693'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00005360'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00005360'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00005360', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00005360'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00006029'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00006029', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00006697'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00006697'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00006697', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00006697'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00007363'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00007363'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00007363', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00007363'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00008030'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00008030', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00008699'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00008699'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00008699', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00008699'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00009366'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00009366'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00009366', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00009366'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00010033'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00010033', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00010703'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00010703'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00010703', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00010703'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00011380'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00011380'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00011380', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00011380'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00012047'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00012047', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00012731'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00012731'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00012731', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00012731'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00013416'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00013416'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00013416', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00013416'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00014087'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00014087', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00014754'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00014754'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00014754', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00014754'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00015429'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00015429'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00015429', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00015429'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00016099'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00016099', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00024446'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00024446'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00024446', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00024446'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00025113'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00025113'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00025113', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00025113'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00025779'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00025779', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00026446'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00026446'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00026446', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00026446'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00027113'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00027113'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00027113', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00027113'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00027779'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00027779', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00028446'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00028446'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00028446', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00028446'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00029113'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00029113'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00029113', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00029113'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00029779'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00029779', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00030446'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00030446'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00030446', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00030446'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00037458'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00037458'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00037458', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00037458'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00038124'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00038124', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00038791'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00038791'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00038791', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00038791'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00039458'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00039458'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00039458', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00039458'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00040124'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00040124', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00040213'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00040213'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00040213', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00040213'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00040880'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00040880'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00040880', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00040880'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00041546'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00041546', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00042213'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00042213'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00042213', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00042213'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00042880'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00042880'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00042880', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00042880'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00043546'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00043546', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00044213'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00044213'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00044213', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00044213'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00044880'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00044880'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00044880', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00044880'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00020740'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00020740'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00020740', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00020740'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00021407'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00021407'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00021407', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00021407'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00022073'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00022073', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00022740'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00022740'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00022740', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00022740'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00023407'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00023407'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00023407', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00023407'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00045590'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00045590', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00046257'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00046257'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00046257', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00046257'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00046924'} ), (rn:Property { IRI: 'http://xmlns.com/foaf/0.1/depicts' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00046924'} ) MERGE (s)-[re:Related { IRI: 'http://xmlns.com/foaf/0.1/depicts'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBc_00046924', 'http://xmlns.com/foaf/0.1/depicts', 'http://virtualflybrain.org/reports/VFB_00046924'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00047590'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00017894'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00047590', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002', 'http://virtualflybrain.org/reports/VFBc_00017894'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFBi_00048257'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFBc_00048257'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFBi_00048257', 'http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003', 'http://virtualflybrain.org/reports/VFBc_00048257'
*** Adding 89199 Types ***
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00000001'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00000001', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00002005'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00002005', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00004026'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00004026', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00006029'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00006029', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00008030'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00008030', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00010033'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00010033', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00012047'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00012047', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00014087'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00014087', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016099'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016099', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00020653'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00020653', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00023369'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00023369', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00025839'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00025839', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00027839'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00027839', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00029839'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00029839', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00038184'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00038184', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00040184'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00040184', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00042184'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00042184', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00044184'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00044184', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00046184'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00046184', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00048184'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00003624'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00048184', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00003624'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00001573'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00007004'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00001573', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00007004'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00003593'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00007004'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00003593', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00007004'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00005539'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00007011'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00005539', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00007011'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00007542'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00007011'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00007542', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00007011'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00009545'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00007011'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00009545', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00007011'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00011559'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00007011'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00011559', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00007011'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00013598'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00007011'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00013598', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00007011'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00015608'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00007011'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/BFO_0000050'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00015608', 'http://purl.obolibrary.org/obo/BFO_0000050', 'http://purl.obolibrary.org/obo/FBbt_00007011'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00021644'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0063458'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00021644', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0063458'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00023644'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0058267'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00023644', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0058267'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00003711'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBal0276838'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00003711', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBal0276838'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00009832'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBal0276838'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00009832', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBal0276838'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00003576'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0055412'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00003576', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0055412'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00005373'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0014830'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00005373', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0014830'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00010511'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0016769'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00010511', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0016769'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00009081'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0022557'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00009081', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0022557'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00015022'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0022557'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00015022', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0022557'
/opt/VFB_neo4j/src/uk/ac/ebi/vfb/neo4j/KB_tools.py:76: UserWarning: Can't use a <class 'NoneType'> as an attribute value in Cypher. Key label Value :None
  % (type(v), k, (str(v))))
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00014622'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0022557'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00014622', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0022557'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00025976'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0101555'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00025976', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0101555'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00028580'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0106760'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00028580', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0106760'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00037413'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0103195'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00037413', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0103195'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00039843'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0103787'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00039843', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0103787'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00042332'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0103867'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00042332', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0103867'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00044763'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0108090'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00044763', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0108090'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00047239'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002292' }), (o:Class { IRI:'http://flybase.org/reports/FBtp0107650'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002292'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00047239', 'http://purl.obolibrary.org/obo/RO_0002292', 'http://flybase.org/reports/FBtp0107650'
*** Adding 38741 dataset links ***
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00000001' }), (ds:data_source { name : 'Chiang2010'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00002005' }), (ds:data_source { name : 'Chiang2010'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00004026' }), (ds:data_source { name : 'Chiang2010'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00006029' }), (ds:data_source { name : 'Chiang2010'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00008030' }), (ds:data_source { name : 'Chiang2010'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00010033' }), (ds:data_source { name : 'Chiang2010'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00012047' }), (ds:data_source { name : 'Chiang2010'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00014087' }), (ds:data_source { name : 'Chiang2010'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00016099' }), (ds:data_source { name : 'Chiang2010'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00025652' }), (ds:data_source { name : 'Dickson_VT'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00027652' }), (ds:data_source { name : 'Dickson_VT'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00029652' }), (ds:data_source { name : 'Dickson_VT'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00037997' }), (ds:data_source { name : 'Dickson_VT'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00039997' }), (ds:data_source { name : 'Dickson_VT'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00041417' }), (ds:data_source { name : 'Dickson_VT'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00043417' }), (ds:data_source { name : 'Dickson_VT'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00020610' }), (ds:data_source { name : 'Jenett2012'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00022610' }), (ds:data_source { name : 'Jenett2012'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00046127' }), (ds:data_source { name : 'Dickson_VT'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (i:Individual { IRI : 'http://virtualflybrain.org/reports/VFBc_00048127' }), (ds:data_source { name : 'Dickson_VT'}) MERGE (i)-[:has_source  { id_in_source: 'None' }]->(ds)
Processing chunk starting with: MATCH (c:Individual { IRI: 'http://virtualflybrain.org/reports/VFB_00017659' }) SET c.label = 'cluster 3.74'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017659'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00000001'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017659', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00000001'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017695'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00000251'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017695', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00000251'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017704'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00000501'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017704', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00000501'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016971'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00000751'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016971', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00000751'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017564'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00001003'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017564', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00001003'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017833'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00001253'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017833', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00001253'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017639'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00001504'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017639', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00001504'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017321'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00001755'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017321', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00001755'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017531'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00002005'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017531', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00002005'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017579'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00002256'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017579', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00002256'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016964'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00002506'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016964', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00002506'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016939'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00002761'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016939', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00002761'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017547'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00003011'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017547', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00003011'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016876'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00003268'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016876', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00003268'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016931'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00003524'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016931', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00003524'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017054'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00003774'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017054', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00003774'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017614'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00004026'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017614', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00004026'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017095'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00004276'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017095', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00004276'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017436'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00004527'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017436', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00004527'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017686'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00004777'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017686', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00004777'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016896'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00005027'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016896', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00005027'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017054'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00005277'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017054', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00005277'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017121'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00005527'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017121', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00005527'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017686'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00005777'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017686', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00005777'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017314'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00006029'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017314', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00006029'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017429'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00006280'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017429', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00006280'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017350'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00006530'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017350', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00006530'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017070'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00006780'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017070', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00006780'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016856'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00007030'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016856', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00007030'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017068'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00007280'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017068', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00007280'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017486'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00007530'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017486', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00007530'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017202'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00007780'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017202', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00007780'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017817'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00008030'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017817', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00008030'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016987'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00008282'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016987', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00008282'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017344'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00008532'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017344', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00008532'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016977'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00008782'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016977', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00008782'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017881'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00009032'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017881', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00009032'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017130'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00009283'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017130', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00009283'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017680'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00009533'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017680', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00009533'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017564'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00009783'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017564', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00009783'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017673'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00010033'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017673', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00010033'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017535'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00010285'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017535', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00010285'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017691'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00010536'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017691', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00010536'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017747'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00010788'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017747', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00010788'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017859'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00011045'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017859', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00011045'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017452'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00011296'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017452', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00011296'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017691'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00011547'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017691', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00011547'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017121'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00011797'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017121', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00011797'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017512'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00012047'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017512', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00012047'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017309'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00012298'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017309', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00012298'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016848'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00012564'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016848', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00012564'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017298'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00012814'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017298', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00012814'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017187'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00013064'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017187', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00013064'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016870'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00013314'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016870', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00013314'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016866'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00013586'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016866', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00013586'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016847'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00013836'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016847', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00013836'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016846'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00014087'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016846', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00014087'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016906'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00014337'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016906', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00014337'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017756'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00014587'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017756', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00014587'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017780'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00014837'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017780', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00014837'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017850'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00015087'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017850', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00015087'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017043'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00015344'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017043', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00015344'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016862'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00015596'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00016862', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00015596'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017706'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00015849'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017706', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00015849'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00017204'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002351' }), (o:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00016099'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002351'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00017204', 'http://purl.obolibrary.org/obo/RO_0002351', 'http://virtualflybrain.org/reports/VFB_00016099'
Processing chunk starting with: MATCH (s:Individual { IRI:'http://virtualflybrain.org/reports/VFB_00000061'} ), (rn:Property { IRI: 'http://purl.obolibrary.org/obo/RO_0002202' }), (o:Class { IRI:'http://purl.obolibrary.org/obo/FBbt_00067348'} ) MERGE (s)-[re:Related { IRI: 'http://purl.obolibrary.org/obo/RO_0002202'}]-(o) SET re.label = rn.label SET re.short_form = rn.short_form RETURN 'http://virtualflybrain.org/reports/VFB_00000061', 'http://purl.obolibrary.org/obo/RO_0002202', 'http://purl.obolibrary.org/obo/FBbt_00067348'
Robbie1977 commented 7 years ago

MATCH p=()-[r:Related]->() RETURN DISTINCT r.IRI, count(r) r.IRI count(r) http://purl.obolibrary.org/obo/RO_0002351 16127 http://xmlns.com/foaf/0.1/depicts 38738 http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003 38545 http://purl.obolibrary.org/obo/RO_0002350 16127 http://purl.obolibrary.org/obo/RO_0002110 441 http://purl.obolibrary.org/obo/OBI_0000312 130 http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002 38544 http://purl.obolibrary.org/obo/RO_0002101 790 http://purl.obolibrary.org/obo/BFO_0000050 54615 http://purl.obolibrary.org/obo/RO_0002292 34454 http://purl.obolibrary.org/obo/RO_0002202 805

Robbie1977 commented 7 years ago

labels(n) count(n) [Individual, VFB] 117888 [Property] 139 [Class] 12955 [Class, Feature] 11789

dosumis commented 7 years ago

()-[i:INSTANCEOF]-() RETURN count(i) ?

dosumis commented 7 years ago

Other than that the figures look about right, and the logs don't have warnings about missed edges.

Robbie1977 commented 7 years ago

Nothing but Related generated

Robbie1977 commented 7 years ago

The label is still wrong on (part_of): IRI http://purl.obolibrary.org/obo/BFO_0000050 short_form BFO_0000050 label [1]

Robbie1977 commented 7 years ago

Is a problem on them all:

IRI http://purl.obolibrary.org/obo/RO_0002292 short_form RO_0002292 label [1] IRI http://purl.obolibrary.org/obo/BFO_0000050 short_form BFO_0000050 label [1] IRI http://purl.obolibrary.org/obo/OBI_0000312 short_form OBI_0000312 label [1] IRI http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000002 short_form VFBext_0000002 label [1] IRI http://purl.obolibrary.org/obo/fbbt/vfb/VFBext_0000003 short_form VFBext_0000003 label [1] IRI http://xmlns.com/foaf/0.1/depicts label [1]

dosumis commented 7 years ago

INSTANCEOF edges now being added in tests.

Have yet to trace the problem with edge labels. Adding a test, but the fact that only some are hit suggests a problem in data, not code. Easier to debug that if I can see KB, but may have to reconfigure tunnelblick (only option available in my current setup is only forum).

Robbie1977 commented 7 years ago

@dosumis In your local tests does neo4j/ontologies_2_KB.py result in nodes with the label set correctly?

dosumis commented 7 years ago

@dosumis In your local tests does neo4j/ontologies_2_KB.py result in nodes with the label set correctly?

Yep. Just added new test. Works fine.

Robbie1977 commented 7 years ago

Will rerun then - current best is on http://eccles.inf.ed.ac.uk:7574 (bolt is on 7887 so easier just to turn bolt off in browser page)

dosumis commented 7 years ago

Looks like some data issues with generation of vfb_ext.json - linked to old owltools just trying with rebuilt OWLtools.

dosumis commented 7 years ago

Could you look into OWLtools build and relationship to failure or VFB_ind build?

Robbie1977 commented 7 years ago

Looking at it now....

Robbie1977 commented 7 years ago

Doing better so far: https://blanik.inf.ed.ac.uk:8079/job/Build_VFB_ind/332/console

Robbie1977 commented 7 years ago

built fine so I'll reload the 129.215... test server