You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to download the gene-gene and disease-gene edges(from https://neo4j.het.io/browser/). However, when I attempt to click on them, the website breaks after some time. Could you please advise me on how to download them successfully?
Thank you.
The text was updated successfully, but these errors were encountered:
Hmm, this Cypher query finds all 27,977 gene-gene edges and just took 340 milliseconds for me to run at https://neo4j.het.io/browser/, so something is going wrong for you:
MATCH (gene:Gene)-[rel]-(disease:Disease)
RETURNgene.identifierASgene_id,
gene.nameASgene_name,
disease.identifierASdisease_id,
disease.nameASdisease_name,
type(rel) ASrel_typeORDER BYgene_idDESC
There are also several formats of bulk downloads available for Hetionet. The TSV or JSON formats would allow you to easily extract all gene-gene and disease-gene edges.
Hello,
I would like to download the gene-gene and disease-gene edges(from https://neo4j.het.io/browser/). However, when I attempt to click on them, the website breaks after some time. Could you please advise me on how to download them successfully?
Thank you.
The text was updated successfully, but these errors were encountered: