Skip to main content
Advertisement
Browse Subject Areas
?

Click through the PLOS taxonomy to find articles in your field.

For more information about PLOS Subject Areas, click here.

  • Loading metrics

Drug-target interaction prediction using Multi Graph Regularized Nuclear Norm Minimization

Abstract

The identification of potential interactions between drugs and target proteins is crucial in pharmaceutical sciences. The experimental validation of interactions in genomic drug discovery is laborious and expensive; hence, there is a need for efficient and accurate in-silico techniques which can predict potential drug-target interactions to narrow down the search space for experimental verification. In this work, we propose a new framework, namely, Multi-Graph Regularized Nuclear Norm Minimization, which predicts the interactions between drugs and target proteins from three inputs: known drug-target interaction network, similarities over drugs and those over targets. The proposed method focuses on finding a low-rank interaction matrix that is structured by the proximities of drugs and targets encoded by graphs. Previous works on Drug Target Interaction (DTI) prediction have shown that incorporating drug and target similarities helps in learning the data manifold better by preserving the local geometries of the original data. But, there is no clear consensus on which kind and what combination of similarities would best assist the prediction task. Hence, we propose to use various multiple drug-drug similarities and target-target similarities as multiple graph Laplacian (over drugs/targets) regularization terms to capture the proximities exhaustively. Extensive cross-validation experiments on four benchmark datasets using standard evaluation metrics (AUPR and AUC) show that the proposed algorithm improves the predictive performance and outperforms recent state-of-the-art computational methods by a large margin. Software is publicly available at https://github.com/aanchalMongia/MGRNNMforDTI.

Introduction

The field of drug discovery in Pharmaceutical Sciences is plagued with the problem of high attrition rate. The task is to find effective interactions between chemical compounds (drugs) and amino-acid sequences/ proteins (targets). This is traditionally done through wet-lab experiments which are costly and laborious.

An effective and appropriate alternative to avoid costly failures is to computationally predict the interaction probability. A lot of algorithms have been proposed for DTI (Drug-target interaction) prediction in recent years [1, 2], which use small number of experimentally validated interactions in existing databases such as ChEMBL [3], DrugBank [4], KEGG DRUG [5], STITCH [6] and SuperTarget [7]. Identification of drug-target pairs leads to improvements in different research areas such as drug discovery, drug repositioning, polypharmacology, drug resistance and side-effect prediction [8].

For example, Drug repositioning [9, 10] (reuse of existing drugs for new indications) can grant polypharmacology (multi-target effect) to a drug. One of the many successfully repositioned drugs is Gleevec (imatinib mesylate). Earlier, it was known to interact only with the Bcr-Abl fusion gene which is indicative of leukemia. However, later discoveries showing that it also interacts with PDGF and KIT, repositioned it for the treatment of gastrointestinal stromal tumors [11, 12].

There are three major classes of computational methods for predicting DTI: Ligand-based, Docking based, and Chemogenomic approaches. Ligand-based approaches leverage the similarity between target proteins’ ligands to predict interactions [13]. The idea is that molecules with similar structure/property would bind similar proteins [14]. But, the reliability of results might get compromised due to limited information about known ligands per protein. Docking-based approaches use the 3D structure of both drugs and proteins to predict the interaction likelihood [1517]. This, although is well-accepted, but is very time-consuming and hence, cannot be used for protein families for which the 3D structure is either difficult to predict or is unavailable [18] like the G-protein coupled receptors (GPCRs).

Chemogenomic approaches overcome the challenges of traditional methods and thus, have recently gained much attention. The approaches under this category can work on the huge amount of biological data, publicly available in existing online databases and can process metadata (chemical structures and genomic sequences) for both the drug and target, respectively. These approaches can further sub-classified based on the representation of the input data: Feature-based techniques and Similarity-based techniques. Feature-based techniques take their inputs in the form of features and class labels (binary values here) and leverage machine learning for classifying if an input instance corresponds to a positive interaction or a negative one. Examples of typical feature based methods include Decision Trees (DT), Random Forests (RF) and Support Vector Machines (SVM) to build classification models based on the labeled feature vectors [19]. In the training set, positive instances are the experimentally known interactions while the negative ones are either non-interactions or unknown interactions. The other category of chemogenomic techniques, Similarity-based methods, use two similarity matrices corresponding to drug and target similarity, respectively, along with the drug-target interaction matrix.

Let us discuss the similarity between the said DTI problem and the problem of collaborative filtering (CF). CF is a standard problem in information retrieval. It is used in recommendations systems (e.g. in Netflix movie recommendations and Amazon product recommendations). There is a database of user’s and their ratings on items (movies, products, etc.). Obviously, not all the ratings are available; users typically rate only a small subset of items. The objective is to estimate the ratings of all the users on all the items. If that can be done accurately, recommendation accuracy increases. The similarity between DTI and CF should be straightforward now; the drugs play the role of users and the targets play the role of items. The interactions are similar to the ratings. Over the years, many approaches originally developed for CF have been leveraged to solve the DTI problems.

In both CF [20] and DTI [2123], the initial techniques were based on simple neighborhood-based models. In order to predict the interaction of a (active) drug on a target, the first step is to find out similar (neighbor) drugs by computing some kind of a similarity score. Once the neighborhood is obtained, the interaction value from the drugs in the neighborhood are weighted (by the normalized similarity score) to interpolate the interaction of the active drug on the target. This is similar to KNN (K-nearest neighbor) based approaches in DTI prediction literature [24]. Another approach was based on bipartite local models. In such models, a local model is built for every drug and target. For example in [25] an SVM was trained for each to predict the interaction of each drug on all targets and each target on all drugs. Finally, the decision from the two was fused. This is just an example, there are other techniques falling under this generic approach like [26, 27]. The above-mentioned methods can be categorized as classification based approaches where the chemical/biological information is used to generate features for drugs and targets individually and these two types of features are then concatenated and the corresponding interaction is assumed to the class corresponding to this feature. Any standard classifier is generally used for the final classification. In such class of techniques, the emphasis is on different feature selection mechanisms [28, 29]. Both semi-supervised [30, 31] and supervised [32, 33] classification based prediction approaches have been leveraged in Drug-Target interaction prediction.

The second category is based on network diffusion models. One technique for DTI prediction based on such models is based on a random walk on the network with a predefined transition matrix [34]. Another work falling under this category, predicts interactions by finding a simple path (without loops) between nodes of the network.

The third approach is based on matrix factorization. These techniques were originally developed for collaborative filtering [35]. It is assumed that drugs and targets are characterized by latent factors. The probability of interaction is high when the latent factors match; i.e. when the inner product has a high value. Therefore, it is logical to express the interaction matrix as a (an inner) product of drug and target latent factors. This allows matrix factorization (and its variants) to be applied [36, 37].

In a very recent review paper [2] it was empirically shown that matrix factorization based techniques yields by far the best results. The fundamental assumption behind matrix factorization to work is that there are very few (latent) factors that are responsible for drug target interactions. This is the reason, one can factor the DTI matrix into a tall (drug) latent factor matrix and a fat (target) latent factor matrix. Mathematically speaking, the assumption is that the DTI matrix is of low-rank. Matrix factorization is being used to model low-rank matrices for the past two decades since the publication of Lee and Seung’s seminal paper [38]. However, matrix factorization is a bi-linear non-convex problem; there are no convergence guarantees. In order to ameliorate this problem, mathematicians proposed an alternative approach based on nuclear norm minimization [3941]. The nuclear norm is the closest convex surrogate to the rank minimization (known to be NP-hard) problem and there are provable mathematical guarantees on its equivalence to rank minimization.

The standard versions of both the matrix factorization and nuclear norm minimization techniques are unable to incorporate similarity information of the drugs and the targets. In recent studies [37, 42], it was shown that the best results are obtained when these technique incorporate graph regularization penalties into them. But, these works regularize the objective function by taking into account, just the standard chemical structure similarity for drugs (Sd) and the genomic sequence similarity for targets (St). No study in literature gives a clear picture of which kind of similarities would be the best for DTI prediction. We, therefore, incorporate different other kinds of similarities and a combination of them as a multi-graph Laplacian regularization with Nuclear Norm Minimization for DTI prediction. The algorithm uses four new similarity measures over the drugs and targets, apart from the standard similarities to construct the graph Laplacians. The four newly incorporated similarities are computed from the interaction matrix and take into account the Cosine similarity, Correlation, Hamming distance and Jaccard similarity between the drugs and targets. To the best of our knowledge, this is the first work on multiple graph laplacian regularized nuclear norm minimization for DTI prediction.

Materials and methods

Dataset description

We use the four benchmark datasets introduced in [21] having four different classes of proteins: enzymes (Es), ion channels (ICs), G protein- coupled receptors (GPCRs) and nuclear receptors (NRs). The data was simulated from public databases KEGG BRITE [43], BRENDA [44] SuperTarget [7] and DrugBank [4] and is publically available at the given link: http://web.kuicr.kyoto-u.ac.jp/supp/yoshi/drugtarget/.

The data from each of these databases is formatted as an adjacency matrix, called interaction matrix between drugs and targets, encoding the interaction between n drugs and m targets as 1 if the drug di and target tj are known to interact and 0, otherwise.

Along with the interaction matrix, drug similarity matrix Sd and a target similarity matrix St are also provided. In Sd, each entry represents the pairwise similarity between the drugs and is measured using SIMCOMP [45]. It represents the chemical structure similarity between drugs; measured using the number of shared substructures within the chemical structures of two drugs. In St, the similarity score between two proteins is the genomic sequence similarity. It is based on the amino acid sequences of the target protein and is computed using normalized Smith–Waterman [46].

The similarity matrices Sd and St constitute the most standard similarities that have been used in the DTI prediction task hitherto. We use these similarities along with the following four more similarities computationally derived from the drug-target interaction matrix to form the graph laplacian terms:

  • Cosine similarity: measures the cosine of the angle between two drug/target vectors projected in a multi-dimensional space. Its value ranges from -1 (exactly opposite) to 1 (exactly the same). Given two n-dimensional drug (or target) vectors (A and B), the cosine similarity is calculated as follows: Here, Ai and Bi denote the components of vector A and B.
  • Correlation: computes the Pearson’s linear correlation coefficient indicating the extent to which two variables are linearly related. It has a value between +1 and −1, where 1 is total positive linear correlation, 0 is no linear correlation, and −1 is total negative linear correlation. For a pair (say A and B) of drugs/targets with sample size n, it is given by: where
  • Hamming similarity: has been computed using Hamming distance. For any two n-dimensional drugs/targets (A and B), the hamming distance is the percentage of interaction positions that differ. We calculate Hamming distance based similarity by simply subtracting hamming distance from 1, giving us its complementary (the percentage of common interaction positions for a pair of drugs/targets). It can be calculated as follows:
  • Jaccard similarity: is defined as the percentage of common non-zero interaction positions for the two given sample sets of drugs/target vectors.

Table 1 summarizes the statistics of all four datasets.

thumbnail
Table 1. Drugs, targets and interactions in each dataset used for validation.

https://doi.org/10.1371/journal.pone.0226484.t001

Nuclear norm minimization

Let us assume that X is the adjacency matrix where each entry denotes interaction between a drug and target (1 if they interact, 0 otherwise). Unfortunately, we only observe this matrix partially because all interactions are not known. If M denotes the partially observed adjacency matrix, the mathematical relation between X and M is expressed as: (1) In the above equation, A denoted the sub-sampling operator, element-wise multiplied to X. It is nothing but a binary matrix or a mask that has 0’s where the interaction X has not been observed or is unknown and 1’s where they have been. The task is to recover X, given the observations M, and the sub-sampling mask A. It is known that X is of low-rank. Ideally, X should be recovered by (2). (2)

Unfortunately, rank minimization is an NP-hard problem with doubly exponential complexity, therefore solving it directly is not feasible.

Traditionally, a low-rank matrix has been modeled as a product of a thin and a fat matrix and recovered using Matrix Factorization techniques [38]. But, Matrix Factorization is a bi-linear non-convex problem, therefore there is no guarantee for global convergence. In the past decade, mathematicians showed that the rank minimization problem can be relaxed by its convex surrogate (nuclear norm minimization) with provable guarantees [39, 40] This turns out to be a convex problem that can be solved by Semi-Definite Programming. More efficient solvers have also been proposed. Problem (2) is expressed as (3) (3)

Here the nuclear norm (|| ||*) is defined as the sum of singular values of data matrix X. It is the l1 norm (sum of absolute values) of the singular values of X and is the tightest convex relaxation of the rank of the matrix, and hence its ideal replacement.

Here, (3) is a constrained formulation for the noiseless scenario, usually its relaxed version, (4) is solved. (4)

One of the efficient solvers for Nuclear Norm minimization is the Singular value shrinkage (SVS) algorithm [47].

Algorithm 1 Singular value shrinkage

1: procedure Matrix-SVS(M, A, λ)

2:  Initialize: X = rand, a

3:   For loop, iterate (k)

4:    

5:    Compute SVD of B: Bk = USVT

6:    Soft threshold the singular values: Σ = soft(S, λ/2)

7:    Xk = UΣVT

8:    

9:  End loop 1

Multi Graph Regularized Nuclear Norm Minimization

Nuclear Norm based Low-rank Matrix Completion is not our contribution, it has been around since the past decade. The problem with standard Nuclear norm minimization (NNM) is that it cannot accommodate associated information such as Similarity matrices for Drugs and Targets. But, it has been seen in recent studies that accommodating the similarity information is crucial for improving the DTI prediction results. The current works have incorporated the standard similarity measures for drugs and targets in matrix factorization [37] and Matrix completion [42] frameworks. It is imperative that NNM should be capable of taking into account more types and combinations of similarities. To achieve this, we have augmented four other types of similarities between drugs/targets and presented Multi-Graph regularized Nuclear Norm Minimization (MGRNNM).

Graph regularization assumes that data points which are in the neighborhood of each other in the original space should also be close to each other in the learned manifold (Local Invariance assumption). So, Graph regularization would allow/enable the algorithm to learn manifolds for the drug and target spaces in which the data is assumed to lie. The multi graph regularized version of Nuclear norm minimization, aims to prevent over fitting and greatly enhance the generalizing capabilities. It is incorporated into the formulation/objective function as Laplacian weights corresponding to drugs and targets: (5) where λ ≥ 0, μ1 ≥ 0 and μ2 ≥ 0 are parameters balancing the reconstruction error of NNM in the first two terms and graph regularization in the last two terms, Tr(.) denotes the trace of the matrix, nos stands for number of similarity matrices (nos = 5 in our case).

If, say we consider a single similarity matrix for drugs (Sd) and that for targets (St), then Ld = DdSd and Lt = DtSt are the graph Laplacians [48] for Sd (drug similarity matrix) and St (target similarity matrix), respectively, and and are degree matrices.

Problem (5) is solved using a variable splitting approach [49]. The augmented Lagrangian is expressed as (6). We introduce two new proxy variables Z and Y such that ZT = X and Y = X. (6)

The variables are updated using ADMM [50, 51]. This leads to the following subproblems (7), (8) and (9) (7) (8) (9) Problem (7) can be expressed as a standard NNM probelm (by column stacking the variables). (10)

To solve for Y and Z, we differentiate (8) and (9) wrt Y and Z, respectiveley. (11) (12) (13) (14)

Since Lt is a symmetric matrix, . So, Equating the derivative to zero, we get: (15) The matrix equation of this form (AT+TB = C) cannot be solved directly for variable T and is called Sylvester equation. Such an equation has a unique solution when the eigenvalues of A and -B are distinct.

A similar Sylvester equation and update step for Z can be obtained by differentiating F2 and equating to 0. (16)

It can be shown that computing the sum of the Graph Laplacians is equivalent to computing the Laplacian from the sum of various similarity matrices involved. For instance, consider the sum of drug Graph Laplacians: Let where stands for combined similarity for drugs. Essentially, (17)łThen, (18)

Here, and denote combined degree matrix and combined Laplacian matrix (sum of graph laplacians) for drugs. Of note, the individual Laplacians or the similarities can be weighted unequally to give more or less emphasis on a specific type of similarity. The pseudo-code for MGRNNM has been given in Algorithm 2.

The standard NNM is a convex problem and the introduced graph regularization penalties are also convex, so entire formulation (5), being a sum of convex functions, is convex. Therefore it is bound to converge to a global minima. We chose the number of iterations such that the algorithm halts when the objective function does not change with iterations. A sample convergence plot for one of the datasets for drug-target pair prediction has been shown in Fig 1.

thumbnail
Fig 1. Converge plot of the MGRNNM algorithm for NR dataset with cross validation setting CVS1 (drug-target pair prediction).

https://doi.org/10.1371/journal.pone.0226484.g001

Algorithm 2 Multi Graph regularized Nuclear Norm Minimization

1: procedure MGRNNM()

2:  Sparsify:

3:  Initialize:

4:    

5:   For loop, iterate (k)

6:    

7:    XkMATRIXSVS(YYk, AA, λ)

8:    

9:    

10:  End loop 1

Time complexity of MGRNNM

The algorithm is iterative, so we only discuss the time complexity per iteration. In each iteration, we solve the two Sylvester equations and one NNM. NNM itself is an iterative algorithm that requires solving Singular value decomposition in each iteration, the order of complexity of which is O(n3). The complexity of solving Sylvester equation is O(nb.log(n)) [52] where b is between 2 and 3.

Results and discussion

Experimental setup

We validated our proposed method by comparing it with recent and well-performing prediction methods proposed in the literature. Out of the 7 approaches with which we compare,

  • Five are specifically designed for DTI task (WGRMF: Weighted Graph Regularized Matrix Factorization, CMF: Collaborative Matrix Factorization, RLS_WNN: Regularized Least square Nearest neighbor profile, NRLMF: Neighborhood Regularized Logistic Matrix Factorization for Drug-Target Interaction Prediction and TMF: Triple matrix factorization) [23, 37, 5355]. Of note, the code available for TMF does not reproduce the results stated in the corresponding paper; the results obtained after running their code has been reported in this work.
  • One being traditional matrix completion (MC: matrix completion) [47] and
  • Last one being a naive solution to our problem, available as an unpublished work (MCG: matrix completion on graphs). Of note, the Space complexity of MCG is O(n4) while that of MGRNNM is O(n2). [56])

All baselines designed for DTI problem are recent and are already compared against older methods.

We have performed 5 runs of 10-fold cross-validation (CV) for each of the algorithms under three cross-validation setting (CVS) [2]:

  • CVS1/Pair prediction: random drug–target pairs are left out for testing set to be used in prediction. It is the conventional setting for validation and evaluation.
  • CVS2/Drug prediction: the complete drug profiles are left out for the testing set. It tests the algorithm’s ability to predict interactions for novel drugs i.e. drugs for which no interaction information is available.
  • CVS3/Target prediction: the complete target profiles are left out for the testing set. It tests the algorithm’s ability to predict interactions for novel targets.

In 10-fold CV, the given data was divided into 10 folds and out of those 10 folds, one was left out for testing whereas the remaining 9 folds were used as the training set. As the evaluation metrics, we have used AUC (Area under ROC curve) and AUPR (Area under the precision-recall curve). In biological drug discovery, AUPR is a practically more important metric since it penalizes high ranked false positive interactions much more than AUC. This is because those pairs would be biologically validated later in the drug discovery process.

Preprocessing

Each of the drug and target similarity matrices were summed up to compute the combined similarity matrices and (Eq (17)). The combined similarity matrices were further sparsified by using p-nearest neighbor graph which is obtained by taking into account only the similarity values which correspond to the nearest neighbors for each drug/target. The usage of such a pre-processing, as shown by [37], helps learn a data manifold on or near to which the data is assumed to lie which, in turn, is expected to preserve the local geometries of the original data and hence give more accurate results. where Np(i) is the set of p nearest neighbors to drug di. Similarity matrix sparsification is done by element-wise multiplying it with Nij. In the next step, the combined graph laplacian terms are computed. Also, instead of graph laplacians ( and ), we have used normalized graph laplacians ( and ) instead as normalized graph Laplacians are known to perform better in many cases [57].

Parameter settings

For setting the parameters of our algorithm, we performed cross-validation on the training set on the parameters p, λ, μ1, μ2, ν1, ν2 to find the best parameter combination for each dataset, under each cross-validation setting. As mentioned earlier, the individual laplacians or the similarities can be weighted unequally to give more or less emphasis on a specific type of similarity, we weigh the Cosine, Correlation and Jaccard similarities heavily (4 times) relative to Hamming similarity. This was done because hamming similarity showed the least improvement in prediction accuracy as compared to the other three similarities when taken into account along with standard similarities. For the other methods, we set the parameters to their optimal (which were found to be already optimal) in [2].

Interaction prediction

Tables 2 and 3 show the AUPR results and the AUC results for the CVS1 cross validation setting respectively. The following tables (Tables 4, 5, 6 and 7) report the CVS2 and CVS3 validation setting results. The second column in each table shows the results of our algorithm when only the standard similarity matrices (Sd: chemical structure similarity for drugs, St: Genomic sequence similarity for target proteins) were used for prediction.

thumbnail
Table 2. AUPR results for interaction prediction under validation setting CVS1.

https://doi.org/10.1371/journal.pone.0226484.t002

thumbnail
Table 3. AUC results for interaction prediction under validation setting CVS1.

https://doi.org/10.1371/journal.pone.0226484.t003

thumbnail
Table 4. AUPR results for interaction prediction under validation setting CVS2.

https://doi.org/10.1371/journal.pone.0226484.t004

thumbnail
Table 5. AUC results for interaction prediction under validation setting CVS2.

https://doi.org/10.1371/journal.pone.0226484.t005

thumbnail
Table 6. AUPR results for interaction prediction under validation setting CVS3.

https://doi.org/10.1371/journal.pone.0226484.t006

thumbnail
Table 7. AUC results for interaction prediction under validation setting CVS3.

https://doi.org/10.1371/journal.pone.0226484.t007

The results clearly show that the interaction prediction in MGRNNM, not only shows great improvement on incorporation of new similarity types but also outperforms all the state-of-the-art prediction methods in terms of AUC and AUPR evaluation metrics in almost all test cases except in CVS3 (where the difference between AUPR obtained by the best-performing method: TMF and MGRNM is not much).

The degradation in performance in CVS3 setting can be attributed to the comparatively unstable results obtained for mainly NR dataset. This can be due to its excessively small size, as also concluded by [58].

It is also observed that inference of MGRNNM under CVS1 is always better than in CVS2/CVS3 because novel drugs/target proteins have no interaction available and hence CVS1 validation setting provides more information in the training data.

If we compare the performance of MGRNNM under CVS2 and CVS3 in all the datasets, an important factor which influence the results in these two cross-validation settings is the “drug to target ration” (say DTR). DTR for NR, GPCR, IC and E datasets are 54:26, 223:95, 105:102 and 445:664 respectively. Since, more information is the prior condition to achieve better inferences, performance under CVS2 should be better than in CVS3 for NR and GPCR datasets, performance under CVS2 and CVS3 should be similar for IC dataset and performance under CVS3 should be better than in CVS2. The results from MGRNNM perfectly follow this trend.

We also analyze the performance of MGRNNM with the two regularization parameters μ1 and μ2, which govern the incorporation of the two graph laplacian terms in our algorithm. As an example, Fig 2 shows how these two parameters affect the prediction in case of GPCR dataset under cross-validation setting CVS1. When μ1 and μ2 are close to zero, the value of AUPR is 0.67; whereas when μ1 and μ2 gradually increase, the value of AUPR improves (more steep increase with μ1 than with μ2), achieving the best value (0.85) at μ1 = 0.5 and μ2 = 0.1 validating the effectiveness of multiple graph Laplacian components.

thumbnail
Fig 2. Three-dimensional mesh depicting the variation of AUPR with the parameters μ1 and μ2 for drug-target interaction prediction using MGRNNM.

https://doi.org/10.1371/journal.pone.0226484.g002

Validation of multiple similarities

To precisely analyze the consequence of multiple similarities incorporation, we observed the mean AUPR for several cases:

  • standard: When only the standard similarity matrices (Sd: chemical structure similarity for drugs, St: Genomic sequence similarity for target proteins) were used for prediction.
  • standard+Cosine: When Cosine similarity between each pair of drugs/targets (, ) was taken into account along with standard similarities.
  • standard+Correlation: When Pearson’s linear Correlation between each pair of drugs/targets (, ) was taken into account along with standard similarities.
  • standard+Hamming: When Hamming similarity between each pair of drugs/targets (, ) was taken into account along with standard similarities.
  • standard+Jaccard: When Jaccard similarity between each pair of drugs/targets (, ) was taken into account along with standard similarities.
  • COMBINED: When all five similarity types between each pair of drugs/targets (, ) were taken into account.

The analysis was carried out for every dataset under all the three cross-validation settings. Fig 3 clearly depicts that incorporating all the similarities for drugs and targets for prediction task yields the best results.

thumbnail
Fig 3. Bar plots depicting that incorporating all the similarities for drugs and targets for prediction task yields best results for every dataset (a) E (b) IC (c) GPCR and (d) NR under the three cross-validation settings in comparison to the cases where each type of similarity was considered separately.

Here, “standard” represents the case when only the chemical structure similarity for drugs and genomic sequence similarity for targets were taken into account and “COMBINED” refers to the use case where all the similarity matrices (standard similarity, Cosine similarity, Correlation, Hamming similarity and Jaccard similarity) were considered.

https://doi.org/10.1371/journal.pone.0226484.g003

Conclusion

Drug-target interaction prediction is a crucial task in genomic drug discovery. Many computational techniques have been proposed in the literature. In this work, we presented a novel chemogenomic approach for predicting the drug-target interactions, MGRNNM (Multi-Graph regularized Nuclear Norm Minimization). It is a graph regularized version of the traditional Nuclear Norm Minimization algorithm which incorporates multiple Graph Laplacians over the drugs and targets into the framework for an improved interaction prediction. The algorithm is generic and can be used for prediction in protein-protein interaction [59], RNA-RNA interaction [60], etc.

The evaluation was performed using three different cross-validation settings, namely CVS1 (random drug-target pairs left out), CVS2 (entire drug profile left out) and CVS3 (entire target profile left out) to compare our method with 5 other state-of-the-art methods (three specifically designed for DTI prediction). In almost all of the test cases, our algorithm shows the best performance, outperforming the baselines. This work can be extended by accounting for more types of drug and target similarities which could be either chemically/biologically driven or obtained from the metadata itself to improve the prediction accuracy even further.

Supporting information

S1 File. Supplementary file showing the experimental results on the analysis of the improvements achieved by the MGRNNM algorithm and statistical significance of the improvement of MGRNNM over the other methods.

https://doi.org/10.1371/journal.pone.0226484.s001

(PDF)

References

  1. 1. Dai YF, Zhao XM. A survey on the computational approaches to identify drug targets in the postgenomic era. BioMed research international. 2015;2015.
  2. 2. Ezzat A, Wu M, Li XL, Kwoh CK. Computational prediction of drug–target interactions using chemogenomic approaches: an empirical survey. Briefings in bioinformatics. 2018.
  3. 3. Gaulton A, Bellis LJ, Bento AP, Chambers J, Davies M, Hersey A, et al. ChEMBL: a large-scale bioactivity database for drug discovery. Nucleic acids research. 2011;40(D1):D1100–D1107. pmid:21948594
  4. 4. Wishart DS, Knox C, Guo AC, Cheng D, Shrivastava S, Tzur D, et al. DrugBank: a knowledgebase for drugs, drug actions and drug targets. Nucleic acids research. 2007;36(suppl_1):D901–D906. pmid:18048412
  5. 5. Kanehisa M, Goto S, Sato Y, Furumichi M, Tanabe M. KEGG for integration and interpretation of large-scale molecular data sets. Nucleic acids research. 2011;40(D1):D109–D114. pmid:22080510
  6. 6. Kuhn M, Szklarczyk D, Pletscher-Frankild S, Blicher TH, Von Mering C, Jensen LJ, et al. STITCH 4: integration of protein–chemical interactions with user data. Nucleic acids research. 2013;42(D1):D401–D407. pmid:24293645
  7. 7. Günther S, Kuhn M, Dunkel M, Campillos M, Senger C, Petsalaki E, et al. SuperTarget and Matador: resources for exploring drug-target relationships. Nucleic acids research. 2007;36(suppl_1):D919–D922. pmid:17942422
  8. 8. Masoudi-Nejad A, Mousavian Z, Bozorgmehr JH. Drug-target and disease networks: polypharmacology in the post-genomic era. In silico pharmacology. 2013;1(1):17. pmid:25505661
  9. 9. Ashburn TT, Thor KB. Drug repositioning: identifying and developing new uses for existing drugs. Nature reviews Drug discovery. 2004;3(8):673. pmid:15286734
  10. 10. Cheng F, Liu C, Jiang J, Lu W, Li W, Liu G, et al. Prediction of drug-target interactions and drug repositioning via network-based inference. PLoS computational biology. 2012;8(5):e1002503. pmid:22589709
  11. 11. McLean SR, Gana-Weisz M, Hartzoulakis B, Frow R, Whelan J, Selwood D, et al. Imatinib binding and cKIT inhibition is abrogated by the cKIT kinase domain I missense mutation Val654Ala. Molecular cancer therapeutics. 2005;4(12):2008–2015. pmid:16373716
  12. 12. Frantz S. Drug discovery: playing dirty; 2005.
  13. 13. Keiser MJ, Roth BL, Armbruster BN, Ernsberger P, Irwin JJ, Shoichet BK. Relating protein pharmacology by ligand chemistry. Nature biotechnology. 2007;25(2):197. pmid:17287757
  14. 14. Johnson A, Wiley-Interscience MM. Concepts and Applications of Molecular Similarity. Edited; 1991.
  15. 15. Xie L, Evangelidis T, Xie L, Bourne PE. Drug discovery using chemical systems biology: weak inhibition of multiple kinases may contribute to the anti-cancer effect of nelfinavir. PLoS computational biology. 2011;7(4):e1002037. pmid:21552547
  16. 16. Li H, Gao Z, Kang L, Zhang H, Yang K, Yu K, et al. TarFisDock: a web server for identifying drug targets with docking approach. Nucleic acids research. 2006;34(suppl_2):W219–W224. pmid:16844997
  17. 17. Pujadas G, Vaque M, Ardevol A, Blade C, Salvado M, Blay M, et al. Protein-ligand docking: A review of recent advances and future perspectives. Current Pharmaceutical Analysis. 2008;4(1):1–19.
  18. 18. Cheng AC, Coleman RG, Smyth KT, Cao Q, Soulard P, Caffrey DR, et al. Structure-based maximal affinity model predicts small-molecule druggability. Nature biotechnology. 2007;25(1):71. pmid:17211405
  19. 19. Nagamine N, Shirakawa T, Minato Y, Torii K, Kobayashi H, Imoto M, et al. Integrating statistical predictions and experimental verifications for enhancing protein-chemical interaction predictions in virtual screening. PLoS computational biology. 2009;5(6):e1000397. pmid:19503826
  20. 20. Sarwar B, Karypis G, Konstan J, Riedl J. Item-based collaborative filtering recommendation algorithms. In: Proceedings of the 10th international conference on World Wide Web. ACM; 2001. p. 285–295.
  21. 21. Yamanishi Y, Araki M, Gutteridge A, Honda W, Kanehisa M. Prediction of drug–target interaction networks from the integration of chemical and genomic spaces. Bioinformatics. 2008;24(13):i232–i240. pmid:18586719
  22. 22. Shi JY, Yiu SM. SRP: A concise non-parametric similarity-rank-based model for predicting drug-target interactions. In: 2015 IEEE International Conference on Bioinformatics and Biomedicine (BIBM). IEEE; 2015. p. 1636–1641.
  23. 23. van Laarhoven T, Marchiori E. Predicting drug-target interactions for new drug compounds using a weighted nearest neighbor profile. PloS one. 2013;8(6):e66952. pmid:23840562
  24. 24. Shi JY, Li JX, Lu HM, Zhang Y. Predicting Drug-Target Interactions Between New Drugs and New Targets via Pairwise K-nearest Neighbor and Automatic Similarity Selection. In: He X, Gao X, Zhang Y, Zhou ZH, Liu ZY, Fu B, et al., editors. Intelligence Science and Big Data Engineering. Big Data and Machine Learning Techniques. Cham: Springer International Publishing; 2015. p. 477–486.
  25. 25. Bleakley K, Yamanishi Y. Supervised prediction of drug–target interactions using bipartite local models. Bioinformatics. 2009;25(18):2397–2403. pmid:19605421
  26. 26. van Laarhoven T, Nabuurs SB, Marchiori E. Gaussian interaction profile kernels for predicting drug–target interaction. Bioinformatics. 2011;27(21):3036–3043. pmid:21893517
  27. 27. Mei JP, Kwoh CK, Yang P, Li XL, Zheng J. Drug–target interaction prediction by learning from local information and neighbors. Bioinformatics. 2012;29(2):238–245. pmid:23162055
  28. 28. He Z, Zhang J, Shi XH, Hu LL, Kong X, Cai YD, et al. Predicting drug-target interaction networks based on functional groups and biological features. PloS one. 2010;5(3):e9603. pmid:20300175
  29. 29. Yu H, Chen J, Xu X, Li Y, Zhao H, Fang Y, et al. A systematic prediction of multiple drug-target interactions from chemical, genomic, and pharmacological data. PloS one. 2012;7(5):e37608. pmid:22666371
  30. 30. Chen H, Zhang Z. A semi-supervised method for drug-target interaction prediction with consistency in networks. PloS one. 2013;8(5):e62975. pmid:23667553
  31. 31. Shi JY, Li JX, Lu HM. Predicting existing targets for new drugs base on strategies for missing interactions. BMC bioinformatics. 2016;17(8):282. pmid:27585458
  32. 32. Shi JY, Liu Z, Yu H, Li YJ. Predicting drug-target interactions via within-score and between-score. BioMed research international. 2015;2015.
  33. 33. Shi JY, Yiu SM, Li Y, Leung HC, Chin FY. Predicting drug–target interaction for new drugs using enhanced similarity measures and super-target clustering. Methods. 2015;83:98–104. pmid:25957673
  34. 34. Chen X, Liu MX, Yan GY. Drug–target interaction prediction by random walk on the heterogeneous network. Molecular BioSystems. 2012;8(7):1970–1978. pmid:22538619
  35. 35. Koren Y, Bell R, Volinsky C. Matrix factorization techniques for recommender systems. Computer. 2009;(8):30–37.
  36. 36. Cobanoglu MC, Liu C, Hu F, Oltvai ZN, Bahar I. Predicting drug–target interactions using probabilistic matrix factorization. Journal of chemical information and modeling. 2013;53(12):3399–3409. pmid:24289468
  37. 37. Ezzat A, Zhao P, Wu M, Li XL, Kwoh CK. Drug-target interaction prediction with graph regularized matrix factorization. IEEE/ACM Transactions on Computational Biology and Bioinformatics (TCBB). 2017;14(3):646–656.
  38. 38. Lee DD, Seung HS. Learning the parts of objects by non-negative matrix factorization. Nature. 1999;401(6755):788. pmid:10548103
  39. 39. Candès EJ, Tao T. The power of convex relaxation: Near-optimal matrix completion. IEEE Transactions on Information Theory. 2010;56(5):2053–2080.
  40. 40. Candès EJ, Recht B. Exact matrix completion via convex optimization. Foundations of Computational mathematics. 2009;9(6):717.
  41. 41. Recht B. A simpler approach to matrix completion. Journal of Machine Learning Research. 2011;12(Dec):3413–3430.
  42. 42. Wang M, Tang C, Chen J. Drug-Target Interaction Prediction via Dual Laplacian Graph Regularized Matrix Completion. BioMed Research International. 2018;2018.
  43. 43. Kanehisa M, Goto S, Hattori M, Aoki-Kinoshita KF, Itoh M, Kawashima S, et al. From genomics to chemical genomics: new developments in KEGG. Nucleic acids research. 2006;34(suppl_1):D354–D357. pmid:16381885
  44. 44. Schomburg I, Chang A, Ebeling C, Gremse M, Heldt C, Huhn G, et al. BRENDA, the enzyme database: updates and major new developments. Nucleic acids research. 2004;32(suppl_1):D431–D433. pmid:14681450
  45. 45. Hattori M, Tanaka N, Kanehisa M, Goto S. SIMCOMP/SUBCOMP: chemical structure search servers for network analyses. Nucleic acids research. 2010;38(suppl_2):W652–W656. pmid:20460463
  46. 46. AMoZ J. Identification of Common Molecular Subsequences.
  47. 47. Majumdar A, Ward RK. Some empirical advances in matrix completion. Signal Processing. 2011;91(5):1334–1338.
  48. 48. Chung FR. Spectral graph theory (CBMS regional conference series in mathematics, No. 92). 1996.
  49. 49. Combettes PL, Pesquet JC. Proximal splitting methods in signal processing. In: Fixed-point algorithms for inverse problems in science and engineering. Springer; 2011. p. 185–212.
  50. 50. Nishihara R, Lessard L, Recht B, Packard A, Jordan MI. A general analysis of the convergence of ADMM. arXiv preprint arXiv:150202009. 2015.
  51. 51. Boyd S. Alternating direction method of multipliers. In: Talk at NIPS workshop on optimization and machine learning; 2011.
  52. 52. Kirrinnis P. Fast algorithms for the Sylvester equation AX- XBT = C. Theoretical Computer Science. 2001;259(1-2):623–638.
  53. 53. Zheng X, Ding H, Mamitsuka H, Zhu S. Collaborative matrix factorization with multiple similarities for predicting drug-target interactions. In: Proceedings of the 19th ACM SIGKDD international conference on Knowledge discovery and data mining. ACM; 2013. p. 1025–1033.
  54. 54. Liu Y, Wu M, Miao C, Zhao P, Li XL. Neighborhood regularized logistic matrix factorization for drug-target interaction prediction. PLoS computational biology. 2016;12(2):e1004760. pmid:26872142
  55. 55. Shi JY, Zhang AQ, Zhang SW, Mao KT, Yiu SM. A unified solution for different scenarios of predicting drug-target interactions via triple matrix factorization. BMC systems biology. 2018;12(9):136. pmid:30598094
  56. 56. Kalofolias V, Bresson X, Bronstein M, Vandergheynst P. Matrix completion on graphs. arXiv preprint arXiv:14081717. 2014.
  57. 57. Belkin M, Niyogi P, Sindhwani V. Manifold regularization: A geometric framework for learning from labeled and unlabeled examples. Journal of machine learning research. 2006;7(Nov):2399–2434.
  58. 58. Pahikkala T, Airola A, Pietilä S, Shakyawar S, Szwajda A, Tang J, et al. Toward more realistic drug–target interaction predictions. Briefings in bioinformatics. 2014;16(2):325–337. pmid:24723570
  59. 59. Albert I, Albert R. Conserved network motifs allow protein–protein interaction prediction. Bioinformatics. 2004;20(18):3346–3352. pmid:15247093
  60. 60. Alkan C, Karakoc E, Nadeau JH, Sahinalp SC, Zhang K. RNA–RNA interaction prediction and antisense RNA target search. Journal of Computational Biology. 2006;13(2):267–282. pmid:16597239