Drug-Drug Interaction

../

The experiments can be found here: https://github.com/linqs/psl-examples/tree/main/drug-drug-interaction

Drug-Drug Interaction

Problem

In this example, we attempt to infer unknown drug drug interactions from a network of multiple drug-based similarities and known interactions.

Dataset

There are three datasets which are derived from DrugBank 4.3 and drugs.com. Each dataset below contain seven drug–drug similarities. Four of these similarity measures are drug-based: Chemical-based, Ligand-based, Side-effect-based and Annotation-based. Three similarities are between drug targets and computed by aggregating over known targets for the drugs: Sequence-based, PPI network-based, and Gene Ontology-based.

Experimental Setup

The default settings for the run script is for the dataset “general-interactions”. Therefore, the evaluator thresholds must be changed when running other datasets. For example, ./run.sh -D discreteevaluator.threshold=<NEW_THRESHOLD> aucevaluator.threshold=<NEW_THRESHOLD> will use the new values NEW_THRESHOLD.

Weight Learning

The original experiments this example is derived from uses an outdated weight learning method (MaxLikelihoodMPE). This example replaces the outdated weight learning method with more modern methods that perform marginally better. Using the default weights and disabling weight learning will also approximate the original results.

Origin

This example is based on the work from A Probabilistic Approach for Collective Similarity-Based Drug-Drug Interaction Prediction. This repo contains the original data and experiments from the paper. This example contains data which have been preprocessed and dumped from the original experiment. To reference the original work, please use this citation:

@article{sridhar:bio16,
    title = {A Probabilistic Approach for Collective Similarity-Based Drug-Drug Interaction Prediction},
    author = {Dhanya Sridhar and Shobeir Fakhraei and Lise Getoor},
    journal = {Bioinformatics},
    year = {2016},
    publisher = {Oxford},
    pages = {3175--3182},
    volume = {32},
    number = {20},
}

Keywords