--- dataset_name: "CROssBARv2-KG" tags: - biomedical - knowledge-graph - bioinformatics - biology - chemistry - systems-biology task_categories: - graph-construction - link-prediction - node-classification - graph-ml pretty_name: "CROssBARv2 Knowledge Graph Dataset" language: - en size_categories: - 10MGene-disease link via expression or function
Genetic variant linked to disease risk/pathology

| | Ec_hierarchy.csv | child_id | parent_id | Hierarchical classification of enzyme functions | | Disease_to_drug_edge.csv | disease_id | drug_id | Therapeutic intervention with a drug | | DTI.csv | drugbank_id | uniprot_id | Direct target binding or modulation | | Phenotype_hierarchical_edges.csv | child_id | parent_id | Hierarchical classification of phenotypes | | Protein_to_phenotype.csv | protein_id | hpo_id | Protein involvement in a phenotypic condition | | Drug_to_side_effect.csv | drugbank_id | meddra_id | Associated adverse effect of a drug | | Disease_to_disease_comorbidity_edge.csv | disease1 | disease2 | Comorbid occurrence in patients | | DGI.csv | entrez_id | drugbank_id | Positive/negative regulation of gene expression | | Drug_to_pathway.csv | drug_id | pathway_id | Target involvement in a biological pathway | | PPI.csv | uniprot_a | uniprot_b | Physical/functional protein-protein association | | Disease_to_disease_association_edge.csv | disease_id1 | disease_id2 | Statistical or mechanistic disease link | | Phenotype_to_disease.csv | hpo_id | disease_id | Disease-related clinical trait | | Orthology.csv | entrez_a | entrez_b | Evolutionary relationship between genes | | Side_effect_hierarchy.csv | child_id | parent_id | Hierarchical classification of side effects | | Organism_to_disease_edge.csv | organism_id | disease_id | Pathogen-induced disease etiology | | DDI.csv | drug1 | drug2 | Pharmacological or biochemical interaction | | Protein_to_ec.csv | protein_id | ec_id | Enzymatic reaction catalysis | | Reactome_hierarchical_edges.csv | child_id | parent_id | Hierarchical or functional pathway connection | | Tf_gene_edges.csv | tf | target | Regulatory influence on gene expression | | Disease_hiererchical_edges.csv | child_id | parent_id | Hierarchical classification of diseases | | Protein_to_pathway.csv | uniprot_id | pathway_id | Functional participation in a biological pathway | | Protein_has_domain.csv | source_id | target_id | Protein contains structural/functional domain | | Protein_belongs_to_organism.csv | source_id | target_id | Protein origin specific to an organism | | Protein_to_go.csv | source | target | Molecular activity performed by protein / Cellular component localization / Biological role or process involvement | | Pathway_to_pathway.csv | pathway_id1 | pathway_id2 | Hierarchical or functional pathway connection | | Gene_encodes_protein.csv | source_id | target_id | Genetic encoding of a protein product | | Disease_to_pathway.csv | disease_id | pathway_id | Regulation of biological pathway activity | | Domain_to_go.csv | source | target | Functional role enabled by domain / Structural or localization role of domain / Biological role or process involvement of domain | | CTI.csv | chembl | uniprot_id | Direct target binding or modulation | # How to Use You can easily load this dataset using the Hugging Face `datasets` library: ```python from datasets import load_dataset # Example 1: Load the Protein nodes proteins = load_dataset("HUBioDataLab/CROssBARv2-KG", data_files="nodes/Protein.csv") # Example 2: Load Drug-Target Interactions (Edges) dti_edges = load_dataset("HUBioDataLab/CROssBARv2-KG", data_files="edges/DTI.csv") ```