Dataset Viewer
Auto-converted to Parquet
text
stringlengths
15
94
C0003467 disease_gene FGF17
C3536714 disease_gene ITGA6
C0038002 disease_gene RAB27A
C0042384 disease_gene STAT4
C4024989 disease_gene DCC
C1864985 disease_gene AP5Z1
C0013604 disease_gene RMRP
C0026034 disease_gene TP63
C2939465 disease_gene G6PD
C2220104 disease_gene LAMA3
C0221357 disease_gene CITED2
C0024419 disease_gene MYD88
C0339573 disease_gene OPTN
C1848924 disease_gene IGLL1
C4020873 disease_gene AFG3L2
C0020649 disease_gene IL1A
C4020885 disease_gene MVK
C0476254 disease_gene DYX9
C0376175 disease_gene NEB
C0021125 disease_gene DNMT1
C2936907 disease_gene NDUFAF5
C0023893 disease_gene DHTKD1
C0546967 disease_gene PEX1
C0917816 disease_gene BCKDHB
C0683322 disease_gene LZTFL1
C1843367 disease_gene ANK1
C4023170 disease_gene EVC
C0151723 disease_gene SLC12A3
C0008925 disease_gene PIGL
C0554101 disease_gene SPINK5
C0151611 disease_gene EMX2
C0236736 disease_gene EHMT2
C4280625 disease_gene LARGE1
C0000737 disease_gene MSH6
C4025682 disease_gene CYBA
C0042798 disease_gene ADAM9
C4072823 disease_gene MECP2
C1854885 disease_gene PSAP
C0235659 disease_gene ERBB3
C0007117 disease_gene DICER1
C1832324 disease_gene PTPRC
C0242422 disease_gene MAPT
C0423109 disease_gene PEX12
C0151786 disease_gene AFG3L2
C0423110 disease_gene RAI1
C0025362 disease_gene B9D1
C0152421 disease_gene ELN
C0015672 disease_gene PON1
C0029882 disease_gene NCF4
C0178664 disease_gene ITGB4
C1849367 disease_gene STAT3
C0010606 disease_gene ATM
C0038002 disease_gene TPP2
C4020871 disease_gene VPS13A
C0036400 disease_gene GDF1
C1845977 disease_gene MID2
C0023893 disease_gene PRUNE2
C0017661 disease_gene LAIR1
C0037773 disease_gene MFN2
C0154723 disease_gene MGR9
C1864897 disease_gene FRA16E
C2677762 disease_gene MAP2K1
C0424688 disease_gene GAD1
C0232744 disease_gene PEX2
C0009319 disease_gene RFX5
C0162834 disease_gene NR0B1
C0007758 disease_gene GMPPB
C1836047 disease_gene TPM2
C0026827 disease_gene AGA
C0002395 disease_gene ESR1
C0008311 disease_gene KRT19
C0338502 disease_gene ELP4
C0007193 disease_gene VCL
C0085605 disease_gene PEX19
C0013404 disease_gene PON3
C1864897 disease_gene POMT1
C3714756 disease_gene CNGB1
C0497247 disease_gene ERCC8
C0020455 disease_gene VPS45
C2748055 disease_gene RNF125
C0017601 disease_gene YARS2
C0557874 disease_gene NELFA
C0011853 disease_gene TNFRSF1A
C0017181 disease_gene MVK
C1856468 disease_gene SEMA5A
C0014550 disease_gene TRNL1
C4024729 disease_gene MMP2
C0040038 disease_gene F2
C0854107 disease_gene SLC35A1
C0279626 disease_gene GDI2
C0521525 disease_gene RAF1
C0265341 disease_gene FGFRL1
C0151744 disease_gene EIF2AK3
C0007758 disease_gene NDUFS4
C3179239 disease_gene CLCN7
C0020507 disease_gene LDLR
C1848207 disease_gene CCDC22
C0002888 disease_gene MMADHC
C3714756 disease_gene CRX
C1840077 disease_gene ECEL1
End of preview. Expand in Data Studio

BioGraphFusion Dataset

License Paper arXiv

πŸ“Š Dataset Description

This dataset contains the benchmark data used in the paper "BioGraphFusion: Graph Knowledge Embedding for Biological Completion and Reasoning" published in Bioinformatics.

πŸ—οΈ Dataset Structure

The dataset includes three biomedical knowledge graph completion tasks with background knowledge integration:

1. Disease-Gene Prediction (DisGeNet_cv)

  • Task: Disease-gene association prediction
  • Background Knowledge: Drug-Disease relationships from SIDER (14,631 triples) + Protein-Chemical relationships from STITCH (277,745 triples)
  • Main Dataset: DisGeNet (130,820 triples) focusing on gene targets
  • Description: Predicts disease-gene associations using multi-source biological knowledge

2. Protein-Chemical Interaction (STITCH)

  • Task: Protein-chemical interaction prediction
  • Background Knowledge: Drug-Disease relationships from SIDER (14,631 triples) + Disease-Gene relationships from DisGeNet (130,820 triples)
  • Main Dataset: STITCH (23,074 triples) focusing on chemical targets
  • Description: Predicts protein-chemical interactions with integrated disease and gene knowledge

3. Medical Ontology Reasoning (UMLS)

  • Task: Medical concept reasoning
  • Background Knowledge: Various medical relationships from UMLS (4,006 triples)
  • Main Dataset: UMLS (2,523 triples) with multi-domain entities
  • Description: Reasons about medical concepts and their hierarchical relationships

πŸ“ˆ Dataset Statistics

Dataset Task Background Knowledge Sources Main Dataset Targets Total Triples
Disease-Gene Prediction Disease-gene association prediction Drug-Disease Relationships SIDER (14,631) + Protein-Chemical Relationships STITCH (277,745) DisGeNet (130,820) Gene ~423K
Protein-Chemical Interaction Protein-chemical interaction prediction Drug-Disease Relationships SIDER (14,631) + Disease-Gene Relationships DisGeNet (130,820) STITCH (23,074) Chemical ~168K
Medical Ontology Reasoning Medical concept reasoning Various Medical Relationships UMLS (4,006) UMLS (2,523) Multi-domain Entities ~6.5K

πŸ’» Usage

Loading the Dataset

from datasets import load_dataset

# Load the complete dataset
dataset = load_dataset("Y-TARL/BioGraphFusion")

# Load specific task
disgenet_data = load_dataset("Y-TARL/BioGraphFusion", "Disease-Gene")
stitch_data = load_dataset("Y-TARL/BioGraphFusion", "Protein-Chemical") 
umls_data = load_dataset("Y-TARL/BioGraphFusion", "umls")

πŸ“ Citation

If you use this dataset in your research, please cite our paper:

@article{lin2025biographfusion,
  title={BioGraphFusion: Graph Knowledge Embedding for Biological Completion and Reasoning},
  author={Lin, Yitong and He, Jiaying and Chen, Jiahe and Zhu, Xinnan and Zheng, Jianwei and Tao, Bo},
  journal={Bioinformatics},
  pages={btaf408},
  year={2025},
  publisher={Oxford University Press}
}

πŸ”— Related Resources

πŸ“„ License

This dataset is released under the Apache 2.0 License.

πŸ™ Acknowledgements

We thank the original data providers:

  • DisGeNet for disease-gene associations
  • STITCH for protein-chemical interactions
  • UMLS for medical ontology data

πŸ“ž Contact

For questions about the dataset, please open an issue in the GitHub repository.

Downloads last month
103