diff --git a/finalStep.py b/finalStep.py index c0b6f6d..00b4700 100644 --- a/finalStep.py +++ b/finalStep.py @@ -189,7 +189,8 @@ vc.nc.commit_list(statements=[ 'MATCH (n:DataSet) WHERE n.short_form STARTS WITH "FBlc" SET n:hasScRNAseq SET n:scRNAseq_DataSet', 'MATCH (n:DataSet)<-[:has_source]-(:Individual)-[:in_register_with]->(:Template) SET n:has_image', - 'MATCH (a)-[r1:licence]->(l:License) MERGE (a)-[r2:has_license]->(l) ON CREATE SET r2=r1 SET r2.label="has_license" DELETE r1' + 'MATCH (a)-[r1:licence]->(l:License) MERGE (a)-[r2:has_license]->(l) ON CREATE SET r2=r1 SET r2.label="has_license" DELETE r1', + 'MATCH (primary)<-[:composed_primarily_of]-(c:Cluster)-[:has_source]->(ds:scRNAseq_DataSet) WHERE not primary:hasScRNAseq SET primary:hasScRNAseq' ]) stop = timeit.default_timer() print('Run time: ', stop - start)