Skip to main content

MOKPE: drug–target interaction prediction via manifold optimization based kernel preserving embedding

Abstract

Background

In many applications of bioinformatics, data stem from distinct heterogeneous sources. One of the well-known examples is the identification of drug–target interactions (DTIs), which is of significant importance in drug discovery. In this paper, we propose a novel framework, manifold optimization based kernel preserving embedding (MOKPE), to efficiently solve the problem of modeling heterogeneous data. Our model projects heterogeneous drug and target data into a unified embedding space by preserving drug–target interactions and drug–drug, target–target similarities simultaneously.

Results

We performed ten replications of ten-fold cross validation on four different drug–target interaction network data sets for predicting DTIs for previously unseen drugs. The classification evaluation metrics showed better or comparable performance compared to previous similarity-based state-of-the-art methods. We also evaluated MOKPE on predicting unknown DTIs of a given network. Our implementation of the proposed algorithm in R together with the scripts that replicate the reported experiments is publicly available at https://github.com/ocbinatli/mokpe.

Peer Review reports

Background

Many applications and problems in bioinformatics require data originated from heterogeneous sources. One of the well-studied examples is the in silico identification of interactions between drugs and target proteins, which is a key area in genomic drug discovery and drug repurposing [1]. High financial costs of conducting wet lab experiments to discover new interactions leads to a strong incentive to develop computational methods capable of detecting these potential drug-target interactions (DTIs) efficiently. In DTI prediction problem, we have heterogeneous data from two domains, drugs and targets. The cross-domain interactions correspond to the given data of experimentally validated drug–target interactions. The within-domain similarity scores correspond to the chemical similarities for drug–drug networks, and genomic similarities for target–target networks. We want to approximate drug–target interactions, drug–drug and target–target similarities with Gaussian kernels to transfer local neighborhood information of the heterogeneous data to the projected subspace. Figure 1 shows the problem of predicting unknown DTIs using known DTIs and drug–drug, target–target similarities, as a conceptual illustration.

Fig. 1
figure 1

The conceptual schema of predicting DTI problem

Recently, many machine learning based methods, which transform knowledge about drugs, targets and known interactions into features that are pipelined to train predictive models, have been developed. These machine learning models have been used to predict DTIs for drug repurposing or drug discovery, therefore, developing explainable and accurate novel models has gained attraction in the past decades with the advance of computational power and data analysis techniques. Recent global research effort on emerging infectious diseases (e.g., COVID-19) also shows the importance of the predictive models when the need of developing effective treatments is urgent [2, 3]. For recent comprehensive surveys on DTI prediction models, we refer the reader to [4,5,6,7,8].

Section “Material and methods” introduces the proposed embedding method, called manifold optimization based kernel preserving embedding (MOKPE), the data sets, and the experimental setup. Section “Experiments and results” explains comparison procedure against the state-of-the-art similarity-based algorithms and evaluates MOKPE over four different data sets on the task of (i) predicting DTIs for unseen drugs and (ii) predicting unknown DTIs of a given network.

Material and methods

In this work, we follow the general framework of multiple kernel preserving embedding (MKPE) method, developed by Gönen [9], and propose preserving cross-domain interactions and within-domain similarities of heterogeneous data simultaneously by approximating them with kernels. Projecting the heterogeneous data into a unified embedding space is the central idea of our model formulation. To model both drug–target interactions and drug–drug, target–target similarities, we assume that these are given as scoring functions and we want to approximate these values in the projected space with kernel function values calculated in low-dimensional representations. We employ the limited-memory Riemannian BFGS method-based algorithm (LRBFGS) of [10] to solve the corresponding optimization sub-problems, which are non-convex quadratic problems with orthogonality constraints. Our framework can also be used with other cross-domain information retrieval tasks after defining scoring functions for cross-domain interactions and within-domain similarities. Figure 2 illustrates the overview of our proposed optimization framework. It should be noted that our algorithmic framework can be extended for problems with more than two domains (e.g., modeling drug–target–disease interactions) (see S1, Additional file 1 for a detailed description of MOKPE).

Fig. 2
figure 2

The workflow of predicting drug target interactions from the drug chemical structures and the target (protein) sequences

To evaluate the performance of our algorithm, we tested it on the task of modeling four different biological interaction networks and we compare it against the state-of-the-art algorithms based on different type of techniques. We used gold standard drug–target interaction data sets provided by [11]. We implement our algorithm in R programming language (version 4.0.2 [12]), and the source codes are publicly available at https://github.com/ocbinatli/mokpe/. The source codes for the other algorithms that we compared our method to are from [5, 13, 14].

All of the four data sets we used, Nuclear receptors (NR), G-protein-coupled receptors (GPCR), Ion channel (IC), and Enzyme (E), are important target families and publicly available at http://web.kuicr.kyoto-u.ac.jp/supp/yoshi/drugtarget/ [11]. The drug–drug and target–target similarity matrices are composed of KEGG LIGAND and KEGG GENES databases, respectively [15]. The adjacency matrices are composed of the interaction information provided by KEGG BRITE [15], BRENDA [16], SuperTarget [17], and DrugBank [18] databases [11]. Table 1 provides important information for the data sets in terms of numbers of drugs, targets, and experimentally validated interactions. Sparsity levels show the imbalance between known and unknown or non-existing DTIs, which reveal the importance of extracting intrinsic information from the drug and target spaces.

Table 1 The drug–target interaction data sets provided by [11]

We formulate the problem of modeling drug–target interaction networks as follows: \(\mathcal {D}\) and \(\mathcal {T}\) correspond to sets of drugs and targets, respectively. The cross-domain interactions, namely, the set of experimentally validated drug–target interactions, are usually represented in the form of a binary matrix (i.e., 1 for the interacting pairs and 0 for the non-interacting (unknown) pairs). We construct our cross-domain interaction score from this binary interaction matrix as follows:

$$\begin{aligned} s_{\texttt {c},j}^{i} = {\left\{ \begin{array}{ll} 0.9 & \text {if }\varvec{d}_{i}\text { and }\varvec{t}_{j}\text { are interacting,} \\ \texttt {NA} & \text {otherwise.} \end{array}\right. } \end{aligned}$$

We set the interaction score to 0.9 for the interacting pairs. We leave the interaction score empty for the non-interacting pairs.

The chemical similarity score between two drug compounds is found by representing them as graphs and the Jaccard similarity coefficient is calculated over the substructures of these two graphs [19]. Given two drugs \(\varvec{d}_{i}\) and \(\varvec{d}_{j}\), chemical similarity score between them can be found as follows:

$$\begin{aligned} s_{\texttt {d},j}^{i} = \dfrac{|\varvec{d}_{i} \cap \varvec{d}_{j}|}{|\varvec{d}_{i} \cup \varvec{d}_{j}|}. \end{aligned}$$

The sequence similarity score between targets is found using a normalized version of Smith-Waterman score [20]. Given two targets \(\varvec{t}_{i}\) and \(\varvec{t}_{j}\), genomic similarity score between them can be found as follows:

$$\begin{aligned} s_{\texttt {t},j}^{i} = \dfrac{\texttt {SW}(\varvec{t}_{i}, \varvec{t}_{j})}{\sqrt{\texttt {SW}(\varvec{t}_{i}, \varvec{t}_{i}) \texttt {SW}(\varvec{t}_{j}, \varvec{t}_{j})}}, \end{aligned}$$

where \(\texttt {SW}(\cdot , \cdot )\) gives the canonical Smith-Waterman score between two proteins. We use Gaussian kernels to approximate both similarity scores.

Our algorithm requires solving many non-convex quadratic optimization sub-problems with orthogonality constraints. Broyden-Fletcher-Goldfarb-Shanno algorithm (BFGS) is a commonly used iterative method for solving non-convex unconstrained optimization problems. It is a quasi-newton method that require only the gradient of the objective function to be supplied at each iteration, and measures the gradient vector differences to approximate the inverse of the Hessian [21]. Limited-memory BFGS (L-BFGS) is a computationally more efficient variant of BFGS, which stores and uses only the most recent solutions and gradient vectors to approximate the inverse Hessian [22, Chapter 9]. L-BFGS is widely used in non-convex unconstrained optimization and is known to perform well against the competitors (e.g., stochastic gradient descent, conjugate gradient), especially for low dimensional problems [21, 23]. Both BFGS and L-BFGS have extensions to Riemannian manifolds [10, 24, 25] which are suitable for our problem on optimization over the Stiefel manifold. We use limited-memory Riemannian BFGS (LRBFGS) of [10] which performed best in our preliminary experiments whereas Riemannian BFGS (RBFGS) of [10] follows closely. Other benchmarks demonstrate similar results [10, 26, 27]. In the preliminary experiments, we also employed conjugate gradient, or stochastic gradient based manifold optimization algorithms [28, 29], and they yielded only slightly better or similar results compared to our baseline algorithm, MKPE, steepest descent with Armijo-type line search (see S2, Additional file 1 for a detailed comparison of MOKPE and MKPE).

Experiments and results

Main computational bottleneck in solving our proposed model is the complexity of optimization on the Stiefel manifold. In [9], a steepest descent method with Armijo’s rule based line search procedure was used. However, the batch steepest descent method may have slow rate of convergence [21, Chapter 3]. Therefore, we propose to use the algorithms specifically tailored to solve the optimization problems on Stiefel manifold. Throughout the last decade, many manifold optimization libraries have been released for use in different programming languages and machine learning frameworks (e.g., C++ [26], Julia [30, 31], Matlab [32], Python [33, 34], PyTorch [35, 36], R [37, 38], Tensorflow [39]). Since the manifold optimization libraries and accompanying Riemannian optimization algorithms are still-evolving, promising lines of research [40, 41], using a manifold optimization library for our problem will provide a flexible framework which is easy to modify for novel algorithms, and will result with possible future improvements in terms of both evaluation metrics and computation times.

We show the performance of our out-of-sample embedding in predicting interactions for unseen drugs. For all four data sets, we conduct ten replications of ten-fold cross-validation to test our model over previously unseen drugs. Drugs of training set are not included in the testing set. In this work, we employ ManifoldOptim  (version 1.0.1 [38]), which is an R wrapper to C++ manifold optimization library ROPTLIB [26], for employing the algorithm LRBFGS in R. We use the default stopping criterion with default values to solve the sub-problems for NR, GPCR, and IC data sets. Due to the large size of the Enzyme data set, high computational time is needed, and we set the value of the stopping criteria tolerance to \(10^{-4}\) when solving the sub-problems over the manifolds of drugs and targets. We use the default values for all other input parameters. We perform 25 iterations for all data sets since the training process usually converges between 15-25 iterations before the model starts overfitting in terms of AUROC values. For relatively smaller data sets NR and GPCR, the subspace dimensionality parameter, R, is set to 25, which is taken from \(\{5,10,15,20,25\}\). For IC and Enzyme data sets, R is set to be 10, and 15, respectively, which is taken from \(\{5,10,15\}\). In general, we see an increasing trend in performance measures for predicting DTIs with increasing subspace dimensionality, which is theoretically expected. It is possible to improve the results for all data sets (except NR, due to its small size) by adding more dimensions to the common subspace. MOKPE starts from randomly chosen points on both Stiefel manifolds and we use QR decomposition when randomly projecting matrices onto these manifolds during the initialization step [42].

We compare our method with some baseline and state-of-the-art algorithms, that utilize different types of techniques (e.g., neighborhood methods, matrix factorization, graph-based, bipartite local models) and that are among the highest performing methods in their respective categories. In nearest profile method (NP), the interaction profile of an unseen drug is calculated via its chemically most similar nearest neighbor’s interaction profile [11]. The weighted profile method (WP) is a generalized version of NP, instead of the nearest compound, a weighted average of the unseen drug’s similarities and their interaction profiles are used [11]. Laplacian Regularized Least Squares (LapRLS) is a semi-supervised learning framework that uses both labeled and unlabeled DTIs, and obtains predictions from both drug and target sides and combines them [43]. Its objective function contains the minimization of prediction error and also includes a manifold regularization term that extends regularized least squares (RLS) with a Laplacian operator. While LapRLS estimates the drug and target spaces separately, Dual Laplacian Regularized Least Squares (DLapRLS) [13] approximates the interaction matrix of DTIs with interdependence of two spaces, by employing alternating least squares algorithm to solve the model, and the dual Laplacian regularization is used to smooth the weights. RLS-WNN is another RLS-based method that incorporates products of Gaussian kernels (GIP) constructed from DTI profiles [44]. A pre-processing algorithm is used to approximate the drug interaction score profile for unseen drugs using the weighted nearest neighbors (WNN), and it is combined with GIP. Kernelized Bayesian matrix factorization with twin kernels (KBMF2K)[45], collaborative matrix factorization (CMF) [46], weighted graph regularized matrix factorization (WGRMF) [47], and graph regularized generalized matrix factorization (GRGMF) [14] are the methods that approximate the DTI matrix by matrix decomposition. KBMF2K employs a Bayesian formulation and uses variational approximation to project drugs and proteins into a unified subspace. CMF uses collaborative filtering, jointly approximating DTI matrix via two low-rank matrices that share the same subspace and approximate drug–drug and target–target similarity matrices. WGRMF is similar to CMF, but it preprocesses the interaction matrix to transform the binary values into interaction values with weighted nearest neighbor algorithm, and uses graph regularization for manifold learning to approximate the similarity matrices. GRGMF presents a model for predicting links in bipartite networks. The model is based on the assumption that the latent factor of each node, which is learned adaptively by its neighborhood information, of drugs and targets are correlated with each other and that the correlation can be represented by a bipartite graph. Heterogeneous graph based inference (HGBI) [48] is an extended version of network-based inference method [49] that uses drug-target bipartite graph network similarity. Instead of a bipartite network, HGBI uses a network diffusion with incorporating drug–drug and target–target similarities on a heterogeneous network. For both MOKPE and compared methods, same testing and training drug sets are used in the experiments. Drugs in the test set are not present in the training set. In MOKPE, they are excluded both from the interaction matrix and the similarity matrices. Reported best hyper-parameters taken from [5, 13, 14] are used when running the compared methods (see S3, Additional file 1 for a detailed description of parameters for all methods).

Table 2 Average AUROC results (and standard deviations)
Table 3 Average AUPRC results (and standard deviations)
Fig. 3
figure 3

Boxplots to illustrate the prediction performance of MOKPE and compared algorithms on the NR, GPCR, IC and E data sets. Each point shows the evaluation of a test set in terms of AUROC value

Fig. 4
figure 4

Boxplots to illustrate the prediction performance of MOKPE and compared algorithms on the NR, GPCR, IC and E data sets. Each point shows the evaluation of a test set in terms of AUPRC value

Fig. 5
figure 5

The classification performance of MOKPE with increasing number of iterations in terms of average AUROC values

Fig. 6
figure 6

The classification performance of MOKPE with increasing number of iterations in terms of average AUPRC values

Tables 2 and 3 give the average AUROC (area under the receiver operating characteristic curve) and AUPRC (area under the precision-recall curve) values for MOKPE and compared algorithms. Best and the second best results in each column are bolded and underlined, respectively. In Figs. 3 and 4, we see the AUROC and AUPRC values for MOKPE and compared algorithms for each test set in the boxplots. Figs. 5 and 6 give the average AUROC and AUPRC values for MOKPE with changing number of iterations. For MOKPE, we want to emphasize that there is an increasing trend for results with increasing subspace dimensionality for all data sets. It is anticipated that the prediction performances in terms of AUPRC values might be improved on IC and Enzyme data sets by increasing the number of iterations, increasing the subspace dimensionality and by fully exploiting the hyper-parameter space, especially for the stopping criteria of the sub-problems. Our experiments show that the results on the NR data set are unstable likely due to its small size, as aligned with previous research [5, 47, 50]. For the IC data set, all methods perform poorly compared to other data sets. Although the IC data set has more targets and more known interactions compared to the GPCR data set, the lesser ratio of the number of drugs to the number of targets may explain the phenomena [6]. Moreover, since the information for drugs is more valuable for the IC data set, this may give a disadvantage for methods (e.g., MOKPE) that have empty profiles for drug–drug similarities for unseen drugs, and may explain the better results for methods that use the drug–drug similarity information for tested drugs (e.g., RLS-WNN with its preprocessing for constructing temporary interaction profiles for unseen drugs). We note that many methods (e.g., DLapRLS, WGRMF, GRGMF) utilize preprocessed known interactions via WKNKN (weighted k-nearest known neighbors) algorithm to estimate the associations for the unseen drugs using drug–drug similarity matrix and improve their performance. We also note that RLS-WNN is a faster algorithm among the best performing algorithms. Matrix factorization methods are slower, although they are relatively better in predicting DTIs. MOKPE is slower against its competitors, however, the implementation of the objective and gradient functions in C++ would yield with a faster performance as the ManifoldOptim developers noted [38]. The possible effects of newer algorithm developments, performance and quality improvements in manifold optimization algorithms will also be seen easily in our framework.

Validation of newly predicted drug–target interactions

To show the effectiveness of our method, we also look for the prediction of new DTIs that are unknown in the original data sets. The data sets we used [11] were developed over a decade ago, and many novel DTIs were discovered after the compilation of original data sets. In these second set of experiments, we use the entire data set as a training set, and project drugs and proteins into a two-dimensional embedding space (i.e. subspace dimensionality R is equal to 2) for the data sets NR and GPCR, ten-dimensional and fifty-dimensional embedding spaces for the data sets IC and Enzyme, respectively. The algorithm is terminated when the improvement over the objective function value of the training loss is smaller than \(10^{-6}\) for two consecutive outer iterations. For the inner iterations, the default parameter values are used for all data sets when calling the manifold optimization library. We rank the novel predictions according to their Euclidean distances in the embedding space and list the top twenty-five ranked interactions for the above mentioned data sets. We check the novel interactions using updated curated databases KEGG [15, 51, 52], DrugBank [53], Comparative Toxicogenomics Database (CTD) [54], Guide to Pharmacology (GtP) [55], the Drug-Gene Interaction Database (DGIdb) [56], and Drug Target Commons (DTC) [57] to validate our results. Tables 4, 5, 6 and 7 lists the top twenty-five interactions for NR, GPCR, IC, and Enzyme data sets, and it can be seen that 27 out of 100 novel DTIs are validated by the sources. It should be noted that the invalidations for DTIs are rarely reported [58], and the absence of a validation does not necessarily mean a false positive. We also illustrate and publish two-dimensional embeddings for all four data sets (e.g., Fig. 7), along with the corresponding embedding coordinates and the top twenty-five ranked predictions, which can be seen and downloaded at https://ocbinatli.shinyapps.io/embedding_networks.

Table 4 Top-25 ranked novel DTIs predicted on the NR data set by MOKPE
Table 5 Top-25 ranked novel DTIs predicted on the GPCR data set by MOKPE
Table 6 Top-25 ranked novel DTIs predicted on the IC data set by MOKPE
Table 7 Top-25 ranked novel DTIs predicted on the Enzyme data set by MOKPE
Fig. 7
figure 7

The two-dimensional embeddings on the GPCR data set. Orange and purple points denote drugs and targets, respectively

Conclusions

Identifying drug–target interactions is crucial for drug development and repurposing. Therefore, predicting drug–target interactions with in silico applications have received extensive interest due to its importance in human biology. We have introduced a drug–target interaction prediction framework, called manifold optimization based kernel preserving embedding, which can also be used for modeling other types of biological interaction networks or cross-domain information retrieval tasks. Our method maps objects from different domains (i.e., drugs and targets) into a unified embedding space by preserving both cross-domain interactions and within-domain similarities, which are approximated with Gaussian kernels. Our framework is able to transfer local neighborhood information from the provided interactions and similarities, and to conduct out-of-sample embedding via using the non-linear kernels in the embedding space. Experimental results against state-of-the-art methods using AUROC and AUPRC evaluation metrics, and predicting novel DTIs that are validated with newer databases, show the success of our method.

The future direction of DTI prediction is expected to focus on improving the accuracy of predictions by incorporating more data sources (e.g., side-effects, biological functions, etc.) and developing more combined machine learning methods [59]. Our method can be extended to integrate multiple related data sources. Although most targets are proteins, recent studies show that it is also important to consider the interactions between drugs and small molecules (e.g., microRNAs, non-coding RNAs), and exploring the potential associations between these small molecules and diseases is crucial in the drug development process to improve the treatment of complex diseases [60]. Our method can also be used in this line of research (e.g., [61, 62]) for the predictions within this new class of drug-targets.

Employing a manifold optimization library for the optimization steps provides a flexible, easy-to-update framework. Another advantage of MOKPE is, it does not require complex hyper-parameter selection, therefore, it is simple to use and valuable in many real-life applications. Although our method demonstrates a significant performance for the gold standard data sets, further investigations of drug–target networks with larger sizes, or other large-size heterogeneous networks that are tangential to the DTI prediction evaluation (i.e., drug–disease networks) will be possible with further improvements in terms of computational cost.

Availability of data and materials

Our implementation of proposed MOKPE algorithm in R programming language is publicly available at https://github.com/ocbinatli/mokpe. The data sets analyzed during this study are publicly available at http://web.kuicr.kyoto-u.ac.jp/supp/yoshi/drugtarget/.

References

  1. Lesk A. Introduction to bioinformatics. Oxford: Oxford University Press; 2019.

    Google Scholar 

  2. Abdel-Basset M, Hawash H, Elhoseny M, Chakrabortty RK, Ryan M. DeepH-DTA: deep learning for predicting drug-target interactions: a case study of COVID-19 drug repurposing. IEEE Access. 2020;8:170433–51.

    Article  PubMed  Google Scholar 

  3. Zhang L, Wang CC, Chen X. Predicting drug-target binding affinity through molecule representation block based on multi-head attention and skip connection. Brief Bioinform. 2022;23(6):bbac468.

    Article  PubMed  Google Scholar 

  4. Bagherian M, Sabeti E, Wang K, Sartor MA, Nikolovska-Coleska Z, Najarian K. Machine learning approaches and databases for prediction of drug-target interaction: a survey paper. Brief Bioinform. 2021;22(1):247–69.

    Article  PubMed  Google Scholar 

  5. Ezzat A, Wu M, Li XL, Kwoh CK. Computational prediction of drug-target interactions using chemogenomic approaches: an empirical survey. Brief Bioinform. 2019;20(4):1337–57.

    Article  CAS  PubMed  Google Scholar 

  6. Hao M, Bryant SH, Wang Y. Open-source chemogenomic data-driven algorithms for predicting drug-target interactions. Brief Bioinform. 2019;20(4):1465–74.

    Article  CAS  PubMed  Google Scholar 

  7. Rifaioglu AS, Atas H, Martin MJ, Cetin-Atalay R, Atalay V, Doğan T. Recent applications of deep learning and machine intelligence on in silico drug discovery: methods, tools and databases. Brief Bioinform. 2019;20(5):1878–912.

    Article  CAS  PubMed  Google Scholar 

  8. Wang C, Kurgan L. Review and comparative assessment of similarity-based methods for prediction of drug-protein interactions in the druggable human proteome. Brief Bioinform. 2019;20(6):2066–87.

    Article  CAS  PubMed  Google Scholar 

  9. Gönen M. Embedding heterogeneous data by preserving multiple kernels. In: 21st European Conference on Artificial Intelligence, ECAI 2014. IOS Press; 2014. p. 381–386.

  10. Huang W, Gallivan KA, Absil PA. A Broyden class of quasi-Newton methods for Riemannian optimization. SIAM J Optim. 2015;25(3):1660–85.

    Article  Google Scholar 

  11. 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–40.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  12. R Core Team. R: A Language and Environment for Statistical Computing. Vienna, Austria; 2021. Available from: https://www.R-project.org/.

  13. Ding Y, Tang J, Guo F. Identification of drug-target interactions via dual Laplacian regularized least squares with multiple kernel fusion. Knowl-Based Syst. 2020;204: 106254.

    Article  Google Scholar 

  14. Zhang ZC, Zhang XF, Wu M, Ou-Yang L, Zhao XM, Li XL. A graph regularized generalized matrix factorization model for predicting links in biomedical bipartite networks. Bioinformatics. 2020;36(11):3474–81.

    Article  CAS  PubMed  Google Scholar 

  15. 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 Res. 2006;34(suppl-1):D354–7.

    Article  CAS  PubMed  Google Scholar 

  16. 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 Res. 2004;32(suppl-1):D431–3.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  17. 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 Res. 2007;36(suppl_1):D919–22.

  18. 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 Res. 2008;36(suppl_1):D901–6.

  19. Hattori M, Okuno Y, Goto S, Kanehisa M. Development of a chemical structure comparison method for integrated analysis of chemical and genomic information in the metabolic pathways. J Am Chem Soc. 2003;125(39):11853–65.

    Article  CAS  PubMed  Google Scholar 

  20. Smith TF, Waterman MS, et al. Identification of common molecular subsequences. J Mol Biol. 1981;147(1):195–7.

    Article  CAS  PubMed  Google Scholar 

  21. Nocedal J, Wright SJ. Numerical optimization. Berlin: Springer; 2006.

    Google Scholar 

  22. Kroese DP, Botev ZI, Taimre T, Vaisman R. Data science and machine learning: mathematical and statistical methods. Boca Raton: Chapman and Hall/CRC; 2019.

    Book  Google Scholar 

  23. Le QV, Ngiam J, Coates A, Lahiri A, Prochnow B, Ng AY. On optimization methods for deep learning. In: ICML; 2011.

  24. Godaz R, Ghojogh B, Hosseini R, Monsefi R, Karray F, Crowley M. Vector transport free Riemannian LBFGS for optimization on symmetric positive definite matrix manifolds. In: Asian conference on machine learning. PMLR; 2021. p. 1–16.

  25. Ring W, Wirth B. Optimization methods on Riemannian manifolds and their application to shape space. SIAM J Optim. 2012;22(2):596–627.

    Article  Google Scholar 

  26. Huang W, Absil PA, Gallivan KA, Hand P. ROPTLIB: an object-oriented C++ library for optimization on Riemannian manifolds. ACM Trans Math Softw (TOMS). 2018;44(4):1–21.

    Article  Google Scholar 

  27. Zhu R, Zhang J, Zhao R, Xu P, Zhou W, Zhang X. orthoDr: semiparametric dimension reduction via orthogonality constrained optimization. R J. 2019;11(2):24–37.

    Article  Google Scholar 

  28. Absil PA, Mahony R, Sepulchre R. Optimization algorithms on matrix manifolds. In: Optimization algorithms on matrix manifolds. Princeton: Princeton University Press; 2009.

  29. Liu H, So AMC, Wu W. Quadratic optimization with orthogonality constraint: explicit Łojasiewicz exponent and linear convergence of retraction-based line-search and stochastic variance-reduced gradient methods. Math Program. 2019;178(1):215–62.

    Article  Google Scholar 

  30. Axen SD, Baran M, Bergmann R, Rzecki K. Manifolds. jl: an extensible Julia framework for data analysis on manifolds. arXiv preprint arXiv:2106.08777. 2021;.

  31. Bergmann R. Manopt jl: optimization on manifolds in Julia. J Open Source Softw. 2022;7(70):3866.

    Article  Google Scholar 

  32. Boumal N, Mishra B, Absil PA, Sepulchre R. Manopt, a Matlab toolbox for optimization on manifolds. J Mach Learn Res. 2014;15(1):1455–9.

    Google Scholar 

  33. Koep N, Weichwald S. Pymanopt: a python toolbox for optimization on manifolds using automatic differentiation. J Mach Learn Res. 2016;17:1–5.

    Google Scholar 

  34. Miolane N, Guigui N, Le Brigant A, Mathe J, Hou B, Thanwerdas Y, et al. Geomstats: a Python package for Riemannian geometry in machine learning. J Mach Learn Res. 2020;21(223):1–9.

    Google Scholar 

  35. Kochurov M, Karimov R, Kozlukov S. Geoopt: Riemannian optimization in pytorch. arXiv preprint arXiv:2005.02819. 2020.

  36. Meghwanshi M, Jawanpuria P, Kunchukuttan A, Kasai H, Mishra B. Mctorch, a manifold optimization library for deep learning. arXiv preprint arXiv:1810.01811. 2018.

  37. Adragni KP, Cook RD, Wu S. Grassmannoptim: an R package for Grassmann manifold optimization. J Stat Softw. 2012;50:1–18.

    Article  Google Scholar 

  38. Martin S, Raim AM, Huang W, Adragni KP. ManifoldOptim: an R interface to the ROPTLIB library for Riemannian manifold optimization. J Stat Softw. 2020;93:1–32.

    Article  Google Scholar 

  39. Smirnov O. TensorFlow RiemOpt: a library for optimization on Riemannian manifolds. arXiv preprint arXiv:2105.13921. 2021.

  40. Manton JH. Geometry, manifolds, and nonconvex optimization: how geometry can help optimization. IEEE Signal Process Mag. 2020;37(5):109–19.

    Article  Google Scholar 

  41. Sato H. Riemannian optimization and its applications. Berlin: Springer; 2021.

    Book  Google Scholar 

  42. Manton JH. Optimization algorithms exploiting unitary constraints. IEEE Trans Signal Process. 2002;50(3):635–50.

    Article  Google Scholar 

  43. Xia Z, Wu LY, Zhou X, Wong ST. Semi-supervised drug-protein interaction prediction from heterogeneous biological spaces. In: BMC systems biology. vol. 4. BioMed Central; 2010. p. 1–16.

  44. 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.

    Article  PubMed  PubMed Central  Google Scholar 

  45. Gönen M. Predicting drug-target interactions from chemical and genomic kernels using Bayesian matrix factorization. Bioinformatics. 2012;28(18):2304–10.

    Article  PubMed  Google Scholar 

  46. 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; 2013. p. 1025–1033.

  47. Ezzat A, Zhao P, Wu M, Li XL, Kwoh CK. Drug-target interaction prediction with graph regularized matrix factorization. IEEE/ACM Trans Comput Biol Bioinform. 2016;14(3):646–56.

    Article  PubMed  Google Scholar 

  48. Wang W, Yang S, Li J. Drug target predictions based on heterogeneous graph inference. In: Biocomputing 2013. World Scientific; 2013. p. 53–64.

  49. 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 Comput Biol. 2012;8(5):e1002503.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  50. Pahikkala T, Airola A, Pietilä S, Shakyawar S, Szwajda A, Tang J, et al. Toward more realistic drug-target interaction predictions. Briefi Bioinform. 2015;16(2):325–37.

    Article  CAS  Google Scholar 

  51. Kanehisa M, Goto S. KEGG: kyoto encyclopedia of genes and genomes. Nucleic Acids Res. 2000;28(1):27–30.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  52. Kanehisa M. Toward understanding the origin and evolution of cellular organisms. Protein Sci. 2019;28(11):1947–51.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  53. Wishart DS, Feunang YD, Guo AC, Lo EJ, Marcu A, Grant JR, et al. DrugBank 5.0: a major update to the DrugBank database for 2018. Nucleic Acids Res. 2018;46(D1):D1074–82.

    Article  CAS  PubMed  Google Scholar 

  54. Davis AP, Wiegers TC, Johnson RJ, Sciaky D, Wiegers J, Mattingly C. Comparative Toxicogenomics Database (CTD): update 2023. Nucleic acids research. 2022 09;Available from: https://doi.org/10.1093/nar/gkac833.

  55. Harding SD, Armstrong JF, Faccenda E, Southan C, Alexander SP, Davenport AP, et al. The IUPHAR/BPS guide to PHARMACOLOGY in 2022: curating pharmacology for COVID-19, malaria and antibacterials. Nucleic Acids Res. 2022;50(D1):D1282–94.

    Article  CAS  PubMed  Google Scholar 

  56. Freshour SL, Kiwala S, Cotto KC, Coffman AC, McMichael JF, Song JJ, et al. Integration of the drug-gene interaction database (DGIdb 4.0) with open crowdsource efforts. Nucleic Acids Res. 2021;D49(1):D1144–51.

    Article  Google Scholar 

  57. Tang J, Ravikumar B, Alam Z, Rebane A, Vähä-Koskela M, Peddinti G, et al. Drug target commons: a community effort to build a consensus knowledge base for drug-target interactions. Cell Chem Biol. 2018;25(2):224–9.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  58. Chen X, Yan CC, Zhang X, Zhang X, Dai F, Yin J, et al. Drug-target interaction prediction: databases, web servers and computational models. Brief Bioinform. 2016;17(4):696–712.

    Article  CAS  PubMed  Google Scholar 

  59. Ru X, Ye X, Sakurai T, Zou Q, Xu L, Lin C. Current status and future prospects of drug-target interaction prediction. Brief Funct Genomics. 2021;20(5):312–22.

    Article  CAS  PubMed  Google Scholar 

  60. Chen X, Guan NN, Sun YZ, Li JQ, Qu J. MicroRNA-small molecule association identification: from experimental results to computational models. Brief Bioinform. 2020;21(1):47–61.

    CAS  PubMed  Google Scholar 

  61. Chen X, Zhou C, Wang CC, Zhao Y. Predicting potential small molecule-miRNA associations based on bounded nuclear norm regularization. Brief Bioinform. 2021;22(6):bbab328.

    Article  PubMed  Google Scholar 

  62. Peng L, Tu Y, Huang L, Li Y, Fu X, Chen X. DAESTB: inferring associations of small molecule-miRNA via a scalable tree boosting model based on deep autoencoder. Brief Bioinform. 2022;23(6):bbac478.

    Article  PubMed  Google Scholar 

Download references

Acknowledgements

The authors thank the anonymous reviewers for their valuable suggestions. The computational experiments reported in this paper were performed at TÜBİTAK ULAKBİM, High Performance and Grid Computing Center (TRUBA resources).

Funding

Oğuz C. Binatlı was supported by the Ph.D. Scholarship (2211) from TÜBİTAK. Mehmet Gönen was supported by the Turkish Academy of Sciences (TÜBA-GEBİP; The Young Scientist Award Program) and the Science Academy of Turkey (BAGEP; The Young Scientist Award Program).

Author information

Authors and Affiliations

Authors

Contributions

OCB contributed to the conception and design of the study, developed the tool, performed the experiments, and drafted the manuscript. MG initiated and supervised the study, reviewed and edited the manuscript. All authors read and approved the final manuscript.

Corresponding author

Correspondence to Mehmet Gönen.

Ethics declarations

Ethics approval and consent to participate

Not applicable.

Consent for publication

Not applicable.

Competing interests

The authors declare that they have no competing interests.

Supplementary Information

Additional file 1.

Chap. S1. The detailed mathematical modeling and pseudo-code of MOKPE. Chap. S2. A comparison of MOKPE against the Steepest Descent Method. Chap. S3. The hyper-parameter settings that are used in the compared methods.

Rights and permissions

Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article's Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article's Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated in a credit line to the data.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Binatlı, O.C., Gönen, M. MOKPE: drug–target interaction prediction via manifold optimization based kernel preserving embedding. BMC Bioinformatics 24, 276 (2023). https://doi.org/10.1186/s12859-023-05401-1

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12859-023-05401-1

Keywords