Code Monkey home page Code Monkey logo

drug_gene_interactions_prediction's Introduction

Transductive Link Prediction for Drug-Gene Interaction Networks

Alana Deng, Kaitlyn Wade, Lianghong Chen, Gen Zhou

Background

Bipartite Graph

A bipartite graph is defined as a graph whose vertex set can be partitioned into two disjoint sets. Let $G = (V, E)$ be a graph with vertex set $V$ and edge set $E$. $G$ is bipartite if there exist two disjoint sets $U$ and $W$ such that $V = U \cup W$ and every edge in $E$ connects a vertex in $U$ to a vertex in $W$. A graph $G$ is bipartite if and only if there is no cycle of odd length in $G$.

The notation $G = (U, W, E)$ is commonly used to denote a bipartite graph with vertex sets $U$ and $W$, and edge set $E$.

Drug-Gene Interaction Data

Drug-gene interaction data provides a nuanced perspective on how genetic variations can influence an individual's response to specific medications. Biological systems are inherently complex, with intricate relationships between drugs and genes. Capturing and understanding these relationships is crucial for uncovering insights that empower personalized treatments and precision medicine.

Drug-gene interaction data is often modeled as a bipartite graph, where there is a set of vertices $U$ for different types of drug, and a disjoint vertex set $V$ for genes. The interactions between them are depicted as edges in set $E$.

Transductive Learning

Transductive learning focuses on making predictions for specific, existing data points. In transductive learning, the model aims to infer the labels or relationships of a specific set of instances that are already present in the dataset.

In the context of bipartite link prediction, transductive learning seeks to utilize the information inherent in the current structure of the bipartite graph to make predictions for specific, unobserved links.

Motivation & Challenges

  • Real-world drug-gene interaction data is often incomplete due to experimental constraints. Link prediction addresses this incompleteness by inferring potential interactions based on existing drug-gene interaction data.
  • Drug-gene interaction networks are usually sparse, with only a small portion of possible interactions observed. This sparsity poses challenges for accurately predicting links between drugs and genes.
  • Integration of diverse data sources adds complexity to the prediction task. Link prediction must navigate these heterogeneous sources to generate meaningful insights.

Dataset

The Drug-Gene Interaction Database (DGIdb, www.dgidb.org) is a web resource that provides information on drug-gene interactions and druggable genes from publications, databases, and other web-based sources. Drug, gene, and interaction data are normalized and merged into conceptual groups.

  • This is a relatively large set for limited computational resources. We can use some sampling/preprocessing methods to select some important nodes/edges

Methods

  • Negative Edge Sampling: Random undersampling, Feature-based undersampling, Topology-based undersampling
  • Train-Test Split: Stratified train-test split
  • Feature Selection: PCA
  • Link Prediction: Node Embeddings + Machine Learning(ML)/Graph Neural Networks (GNN) Classifiers
    • Node Embedding: Node2Vec, DeepWalk, Metapath2Vec, Word2Vec, Struc2Vec, BiNE
    • Classification Models: Conventional ML/GNNs
      • Conventional Machine Learning Methods: Logistic regression, XGBoost, Naive Bayes
      • GNN-Based Methods: GraphSAGE, GCN, GAT
  • Evaluation Metrics: AUC-ROC, AUC-PRC

Directory Layout

The root directory of the repository is drug_gene_interaction_prediction. The folder structure of drug_gene_interaction_prediction is as follows

drug_gene_interaction_prediction
drug_gene_interaction_prediction/
│
├── README.md
│
├── data
│   ├── interactions.tsv #Raw drug-gene interaction data without any preprocessing
│   ├── preprocessed_34_10.tsv #preprocessed interaction matrix (cutoff values: gene 34, drug 10)
│   └── preprocessed_42_10.tsv #preprocessed interaction matrix (cutoff values: gene 42, drug 10)
│
├── code
│   ├── preprocessing # data preprocessing, analysis, and visualization
│   ├── graph_embedding # node representation learning
│   ├── classification # classification models
│   └── backup # backup scripts
│
└── res # directory to store results

Getting Started

Usage

  • ../code/requirements.txt: pip install -r requirements.txt.
  • ../backup/GCN.py: python GCN.py <.tsv path>.

drug_gene_interactions_prediction's People

Contributors

alanadeng avatar kyle4490 avatar

Stargazers

Kaitlyn Wade avatar

Watchers

Kaitlyn Wade avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.