cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

lei_yan
Node
since ‎12-11-2021
‎06-01-2022

User Statistics

  • 5 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I have a cypher script file “test.cypher”: CALL apoc.load.csv('rawCount.tsv', {header:true, sep:'\t'}) YIELD map, list CALL { WITH map, list MERGE (g:Gene{symbol: list[0]}) WITH * UNWIND keys(map)[1..] AS key W...
I am working at “St. Jude Children's Research Hospital”, as a Sr Bioinformatics Software Engineer. Neo4j is a super cool DB. Our lab has many gene X single cell data (expression/activities/network), I am sure neo4j will help us a lot. This community ...
Scenario: I have loaded some nodes into a DB, such as: node_1, node_2, node_3... node_a, node_b, node_c... I have a csv file, like: x, node_1, node_2, node_3 node_a, 1, 2, 3 node_b, 4, 5, 6 node_c, 7, 8, 9 Requirement: I want to batch-import relati...