Skip to content

Commit

Permalink
labeling nodes with scRNAseq results
Browse files Browse the repository at this point in the history
Ref #1
  • Loading branch information
Robbie1977 authored Jun 12, 2023
1 parent 0e3953e commit 80aa09c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion finalStep.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 80aa09c

Please sign in to comment.