Next Article in Journal
The Role of the Primary Cilium in Sensing Extracellular pH
Next Article in Special Issue
Ensemble of Deep Recurrent Neural Networks for Identifying Enhancers via Dinucleotide Physicochemical Properties
Previous Article in Journal
Proteomics in the World of Induced Pluripotent Stem Cells
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Convolutional Neural Network and Bidirectional Long Short-Term Memory-Based Method for Predicting Drug–Disease Associations

1
School of Computer Science and Technology, Heilongjiang University, Harbin 150080, China
2
School of Mathematical Science, Heilongjiang University, Harbin 150080, China
*
Authors to whom correspondence should be addressed.
Cells 2019, 8(7), 705; https://doi.org/10.3390/cells8070705
Submission received: 9 June 2019 / Revised: 8 July 2019 / Accepted: 9 July 2019 / Published: 11 July 2019
(This article belongs to the Special Issue Biocomputing and Synthetic Biology in Cells)

Abstract

:
Identifying novel indications for approved drugs can accelerate drug development and reduce research costs. Most previous studies used shallow models for prioritizing the potential drug-related diseases and failed to deeply integrate the paths between drugs and diseases which may contain additional association information. A deep-learning-based method for predicting drug–disease associations by integrating useful information is needed. We proposed a novel method based on a convolutional neural network (CNN) and bidirectional long short-term memory (BiLSTM)—CBPred—for predicting drug-related diseases. Our method deeply integrates similarities and associations between drugs and diseases, and paths among drug-disease pairs. The CNN-based framework focuses on learning the original representation of a drug-disease pair from their similarities and associations. As the drug-disease association possibility also depends on the multiple paths between them, the BiLSTM-based framework mainly learns the path representation of the drug-disease pair. In addition, considering that different paths have discriminate contributions to the association prediction, an attention mechanism at path level is constructed. Our method, CBPred, showed better performance and retrieved more real associations in the front of the results, which is more important for biologists. Case studies further confirmed that CBPred can discover potential drug-disease associations.

1. Introduction

The research and development (R&D) stage of producing a novel drug is a time-consuming, complex, and costly process that normally lasts for more than ten years and costs approximately 1 billion dollars [1,2,3,4]. Simultaneously, there is a large gap between the high investment in R&D and the number of new drugs finally approved [5,6,7]. Because approved drugs have undergone the necessary clinical trials, their safety has been evaluated, identifying new indications for these drugs, (i.e., drug repositioning), which can effectively reduce the time and costs for drug-related R&D [5,8,9].
Network-based approaches have been widely used to study biological and medical associations [10,11]. Computational prediction of the associations between drugs and diseases can identify candidates for further wet-lab validation [12,13]. Several methods are used to predict and prioritize drug-associated diseases, which can generally be divided into two categories. Methods in the first category capture network topology information using a diffusion algorithm and then provide association scores for candidate diseases [14,15,16,17]. Wang et al. [16] identified candidate diseases using an iterative update algorithm based on the guilt-by-association principle. Luo et al. [15] established a drug network and disease network and calculated association scores by random walk of the two networks. Liu et al. [14] integrated the two networks as a drug–disease network and applied a random walk method to the network. These methods inferred candidates with edges weighted by similarities and associations among nodes in the network. However, a major limitation to these approaches is that they only consider the topological information of the network while ignoring original information at the nodes.
Methods in the second category mainly integrate the heterogeneous similarities of drugs or diseases through matrix factorization and projection [1,18]. A method developed by Liang et al. [1] works by minimizing the loss of the prediction matrix from the original association matrix from various perspectives. Zhang et al. [18] considered the biological background using the similarities of drugs and diseases as a constraint for low-dimensional matrices during prediction. However, in these methods, low-frequency effective information may be missed during the projection process. Additionally, the final prediction matrix only fits the original association from the mathematical layer and does not learn the deep representation among nodes.
The above two types of shallow methods have limited representation for complex biological data and lack the ability to learn essential features from sparsely known drug–disease associations (ratio of known associations to unknown associations was approximately 1 to 169 in our study) [19]. Series literatures found that deep learning methods are well suited for modeling complex biological data to support drug discovery [20,21,22]. In this study, we present CBPred, a novel method for predicting the potential drug–disease associations. First, we constructed a drug–disease heterogeneous network based on the similarities and known associations between nodes. Next, we proposed a novel two-way deep learning structure, a convolutional neural network (CNN), and bidirectional long short-term memory (BiLSTM)—named CBPred—for predicting and prioritizing candidate diseases of drugs. The original information and topological information among nodes were integrated using the CNN and BiLSTM to obtain deep representations and provide candidate diseases. An attention mechanism was introduced to improve the performance of our model because the contribution of different types of information to the drug–disease associations are different.
This novel method can deeply explore the original and topological representation of similarities between nodes, i.e., drugs and diseases, and known associations among two nodes. When we applied this method to various well-characterized drugs, CBPred recommended candidate diseases for treatment with the drugs with high accuracy. Case studies of five drugs, ciprofloxacin, ceftriaxone, ofloxacin, ampicillin, and levofloxacin, also demonstrated the ability of our method to recognize potential associations between drugs and diseases.

2. Materials and Methods

Our primary aim was to predict and prioritize novel association scores between drugs and diseases. We first constructed a drug–disease heterogeneous network via various connections among nodes, i.e., similarities and associations. To comprehensively consider original information and topological information of the drug–disease pair, we designed a novel prediction model based on the CNN module and BiLSTM module. Finally, we obtained association score between a drug ri and disease dj. A higher score indicated a greater likelihood that ri was involved in the disease process of dj.

2.1. Dataset

Drug–disease associations were obtained from a previous study [23], consisting of 763 drugs and 681 diseases. The drug–disease association data were originally extracted from the Unified Medical Language System [24]. There were 3051 known drug–disease associations. The chemical fingerprints for drug similarity calculations were extracted from PubChem [25]. Additionally, we used the method developed by Wang et al. [26] to construct directed acyclic graphs of the diseases using standard Medical Subject Headings disease terms.

2.2. Construction of a Drug–Disease Network

A two-layer heterogeneous drug–disease network, DrDisNet, was constructed based on the similarities and associations of drugs and diseases, which consisted of a drug network (DrNet) and disease network (DisNet) as well as the edge (i.e., association between drugs and diseases) among the two networks.

2.2.1. Drug Network Construction

To measure the drug similarities for constructing the drug network (DrNet), we used the method developed by Liang et al. [1] to calculate the cosine similarity of the chemical substructure vector among the drugs. The chemical substructure vector of a drug is an 869-dimensional binary vector. The presence or absence of each chemical substructure of a drug is encoded as 1 or 0. When the drug similarity was greater than 0, we added an edge to connect the two drug nodes in DrNet; the weight of the edges reflected the similarity between the drugs (Figure 1). DrNet can be represented by matrix R = [ R i j ] R N r × N d where N r is the number of drugs and R i j is the similarity of drugs r i and r j in the range 0 to 1. An R i j closer to 1 indicates greater similarity between r i and r j . R i j is calculated as follows:
R i j   =   c i · c j || c i || || c j ||
where c i and c j are the chemical substructure vectors of r i and r j , respectively, and || · || indicates the magnitude of vector.

2.2.2. Disease Network Construction

Disease similarities play an important role in disease network construction. Wang et al. [26] used the MeSH disease term for each disease to calculate their respective semantic values. Next, semantic similarity was calculated from the semantic values of any two diseases. A larger number of common annotation terms among the two diseases indicated higher semantic similarity.
DisNet consisted of all pairs of diseases with similarity values greater than 0. The weight of any edge in the network was set to the similarity among the diseases to which the edge was connected. Matrix D R N d × N d denotes DisNet where D i j is the similarity between diseases d i and d j and N d is the number of diseases.

2.2.3. Edges between DrNet and DisNet

We considered the known associations between drugs and diseases as the edges that connected the corresponding nodes in DrNet and DisNet. The edge set was represented as A R N r × N d , where each row represented a drug and each column represented a disease. A i j is 1 when drug r i has a known association with d j , while it is 0 when an association is not observed between r i and d j .
Finally, the heterogeneous drug–disease network DrDisNet was constructed by connecting DrNet and DisNet via known drug–disease associations (Figure 1). To concisely illustrate the subsequent methods, we assumed that N r = 5 and N d = 4.

2.3. Prediction Model Based on CNN and BiLSTM Module

We propose a novel prediction model based on CNN and BiLSTM—named as CBPred—which is shown in Figure 2. The convolution module on the left part of CBPred was introduced to learn the association representation from the perspective of the original features of a node pair ( r i ,   d j ) . Additionally, because the path from r i to d j also responds to the associated tendency between r i and d j , a BiLSTM module on the right part was used to integrate topological information into the path representation.

2.3.1. Embedding Layer

Feature matrix of drug and disease for the CNN module. Normally, if the similarity of a drug is more consistent with the association of a disease, the more likely it is that they are associated and vice versa. Therefore, we spliced up and down the similarities between the drug nodes and associations between drug and disease nodes, as shown on the left side of the feature matrix.
We use drug r 1 and disease d 4 as an example to illustrate the integration process (Figure 3). The first row of the drug similarity matrix R indicates the similarity to other drugs with r 1 , and the fourth of the A T expresses the association drugs with d 4 . Because r 1 is similar to r 4 and r 5 , r 3 and r 5 are also both related to d 4 . Thus, r 1 is likely to be involved in the disease process of d 4 .
Similarly, if the relationship of r 1 and d 4 are more consistent with each disease, they will show a higher propensity for association. r 1 is associated with d 2     and   d 3 , while d 4 is similar to d 1   and   d 3 , and thus, r 1 may associate with d 4 . Based on this information, we integrated the first row of A and the fourth row of D , as shown in the right part of the feature matrix. The final integration result is represented by the feature matrix F R 2 × ( N r + N d ) . Furthermore, the first and second rows of F are feature embedding of the drug and disease, respectively.
Path sequence features for the BiLSTM module. It is well known that if two drugs are very similar, they are likely involved in a similar disease process. For example, for the path, r 1 r 5 d 4 , r 1 is similar to r 5 , and r 5 is associated with d 4 , indicating an association between r 1 and d 4 . Based on similar logic, we can obtain the following path: Because d 3 is similar to d 4 and r 1 is associated with d 3 , d 4 may be treated by r 1 . Thus, there is a second path, r 1 d 3 d 4 . Finally, we enumerate the path from the starting point r s to the end of d t in the network to obtain the path set P ( s , t ) R N path   × 1   ×   ( N r   +   N d ) , where N p a t h is the number of paths between nodes r s and d t , and the i-th path sequence in the P ( s , t ) defined as p i . P ( 1 , 4 ) is inputted into the bidirectional LSTM module as the path feature of the pair ( r 1 , d 4 ) to learn the representation at the path level.

2.3.2. Convolutional Module on the Left

The feature matrix   F is fed into the convolutional module to learn a latent original representation of node pair ( r 1 , d 4 ) (Figure 4). To capture the boundary information of F , we first pad F to obtain P conv R ( 2 × p c o n v + 2 ) × ( 2 × p c o n v + N r + N d ) , where p c o n v is the number of padding layers around F . For the first convolution layer, to apply the filter operators to the feature areas of w h × w w , we set the size of filter as ( w h , w w ) .
Next, we can obtain the feature map Z 1 R ( 2 × p c o n v w h + 3 ) × ( 2 × p c o n v + N r + N d w w + 1 ) × N c o n v in this layer, where N c o n v is the number of filters. We used the subscript of the first element in the filter in P c o n v as the filter position. For example, W c o n v ( i ,   j , k ) indicates that the kth filter starts at the feature area at ith row and jth column in P c o n v . The area and process of convolution are defined as follows:
P c o n v ( i ,   j )   =   P c o n v ( i : i + w h 1 ,   j : j +   w w   1 )
Z 1 i , j , k   = g ( P c o n v ( i ,   j )   ×   W c o n v ( i ,   j , k ) +   b c o n v ( k ) )
i [ 1 ,   2   +   2   ×   p c o n v     w h   +   1 ] ,   j [ 1 , N r + N d + 4   w w   +   1 ] ,   k [ 1 , N c o n v ]
Z 1 ( i , j , k ) is the first convolution output in which the kth filter is sliding to the ith row and jth column of P c o n v . g is a nonlinear activation function (rectified linear unit, ReLU), and bconv is a bias vector. To integrate features and reduce parameters, we use average pooling to compress the data in Z1 in the pooling layer. The size of the pooling window is set to a × b, from which we obtain Q 1 R 2 × p c o n v w h + 3 a × 2 × p c o n v + N r + N d w w + 1 b × N c o n v . We then use Q 1 as the input to the second convolution layer, and obtain a similar output q R 1 × 2 × p c o n v + N r + N d w w + 1 b × N c o n v through the second average pooling. q is then flattened to obtain an original representation of the node pair ( r 1 , d 4 ), denoted as v n :
v n   =   f l a t t e n ( q )

2.3.3. BiLSTM Module on the Right

The LSTM module controls the information flow through the gate mechanism, while the BiLSTM module learns the context representation of the input sequence from a forward LSTM and reverse LSTM [27,28]. The previously obtained path set P ( 1 , 4 ) was fed into the BiLSTM module on the right part to learn the path representation of r 1 and d 4 (Figure 5).
There are three gates, the forget gate f i j f , input gate i i j f , and output gate o i j f , in the forward LSTM unit which control how much information from path sequences should be forgotten, inputted, and outputted, respectively. The formulas for the three gates were defined as follows:
[ f i j f i i j f o i j f ]   =   [ σ σ σ ] ( W g f [ h i ( j 1 ) f x i j ] + b g f )
where σ is the sigmoid activation function and is the connection operator. The upper corner f indicates that this is a parameter of the forward LSTM unit; for example, W g f and b g f are the weight matrix and bias vector of the gate in the forward unit, respectively. x i j represents the embedding of the jth node of the ith path p i in the path set P ( 1 , 4 ) .
Forward LSTM linearly integrates the candidate state c ^ i ( j     1 ) f of x i ( j     1 ) with the candidate state c ^ i j f of x i j and determines how much information in the c ^ i ( j     1 ) f should be retained by f i j f and how much information in the c ^ i j f are accepted by i i j f . Thus, obtaining the state c i j f of the sequence consisting of the 1st to jth nodes in the p i :
c i j f   =   f i j f c ^ i ( j 1 ) f +   i i j f c ^ i j f
where ⨀ is the element-wise product operator. The candidate state c ^ i j f of x i j is obtained by comprehensively considering the information from the previous node and x i j , defined as follows:
c ^ i j f   = tanh ( W c f ( h i ( j 1 ) f x i j )   +   b c f )
where W c f and b c f are the weight matrix and bias vector of the candidate state, respectively. Finally, how much information in c i j f is adjusted by o i j f as the hidden state h i j f output is expressed as follows:
h i j f   =   tan h ( o i j f c i j f )
where h i j f is a forward path representation of the 1st to jth nodes in p i . We take the hidden state h i l f of the last node as the representation of p i , where l is the length of p i . The inverted sequence p i b of p i is then inputted into a structurally similar backward LSTM module to obtain a backward representation h i l b of p i b . The upper corner b indicates that this is a parameter of the backward LSTM module. Thus, the path representation of the ith path in the bidirectional LSTM module is given by the following formula:
h i   =   h i l f h i l b .

2.3.4. Attention Mechanism at Path Level

From the perspective of P ( 1 , 4 ) , not all paths equally contributed to the association prediction of r 1 and d 4 . An attention mechanism at the path level was introduced to extract paths important in the association between the drug and disease [29]. This yields:
u i   =   tanh ( W p h i + b p )
α i   =   e x p ( u i u p T ) j e x p ( u j u p T )
v p   =   i α i h i
where u i is a hidden representation of h i . The path level context vector u p attempts to generalize the path strongly contributing to the association between r1 and d4 from P ( 1 , 4 ) , while u p T is the transpose of u p . Next, we measured the importance of p i in P ( 1 , 4 ) by comparing the similarity between u i and u p , and obtained the attention weight α i through the softmax function. v p is a path vector, which is a weighted sum of all information from path set P ( 1 , 4 ) based on the attention weights and path representations.

2.3.5. Combined Strategy

The original representation v n and path representation v p are both high-level representations of r 1 and d 4 and can be used as features for association classification. Thus, we projected the two representations v n and v p into the association distribution of C classes via the SoftMax layer while choosing the cross-entropy loss to evaluate the error between the known association distribution and prediction distribution:
s n   =   s o f t m a x ( W n v n   +   b n )
l o s s n   =   t T c   =   0 C p c g ( t ) × log ( s n ( t ) )
s p   =   s o f t m a x ( W p v p + b p )
l o s s p   =     t T c   =   0 C p c g ( t ) × log ( s p ( t ) )
where t is the node pair in the training set T , p c g ( t ) is the one hot embedding of t , and s n ( t ) and s p ( t ) are the predicted scores of t from the CNN and BiLSTM modules, respectively. We designed a combined strategy for the model to make full use of the original representation v n and path representation v p . We used the Adam optimization algorithm to optimize the objective function [30]. Let λ be a hyperparameter to control the contribution of the original representations and path representations of the node pairs for the final predicted score.
s   =   λ s n + ( 1 λ ) s p

3. Experimental Evaluation and Discussion

3.1. Evaluation Metrics

We performed 5 fold cross-validation 20 times to evaluate the performance of our prediction method and the corresponding results were averaged [31,32]. First, known associated drug–disease pairs were divided randomly into five subsets and treated as positive samples. The remaining pairs were considered negative samples. Because the number of positive samples was much smaller than the number of negative samples in our dataset (approximately 1 to 169), we sampled a matching number of non-associating pairs randomly and divided them into five subsets to reduce the impact of class imbalance in predicting the results. Particularly, in each fold cross-validation, we used four positive and negative subsets as the training set for model training and the remaining positive samples as the testing set for performance evaluation. Finally, a higher rank for the positive samples indicated better the prediction performance of the method.
A disease with a score higher than the threshold θ indicates that it is identified as a positive sample and vice versa. Thus, the TPRs (true-positive rates) and FPRs (false-positive rates) under various θ can be calculated as follows:
T P R   = T P T P   +   F N ,   F P R   = F P T N   +   F P
where TP (true-positive) and TN (true-negative) are the number of positive and negative samples which were correctly identified, while FN (false-negative) and FP (false-positive) are the number of positive and negative samples which were misidentified [33]. The receiver operating characteristic (ROC) curve can be drawn according to the TPR and FPR under each θ [34].
A ROC curve was constructed for each drug, and the area under the ROC curve (AUC) was used to evaluate the predictive performance of the method for the specific drug [35,36]. The average AUC of all drugs is considered as the comprehensive performance of the prediction model.
However, in most cases of class imbalance, the precision–recall (P–R) curves are more informative than the ROC curve [37]. Precision is the proportion of true-positive samples in all identified positives and recall is the ratio of true-positives among the samples with known associations [38]. Therefore, we used the P–R curve as another measurement to evaluate the performance of each method. The area under the P–R curve (AUPR) is another evaluation metric that focuses on true-positive samples [39]. The precision rates and recall rates can be defined as follows:
P r e c i s i o n   = T P T P   +   F P ,   R e c a l l     = T P T P   +   F N .
Additionally, biologists typically select the top part of the predictive result for further validation in wet-lab experiments. Thus, the recall rates of the top k candidate drug-related diseases are more important because they reveal the number of successfully identified positive samples. We calculated the recall rates of the top k candidate to demonstrate the performance of each method on the top rankings of the predictive result.

3.2. Comparison with Other Methods

To evaluate the performance of CBPred, we compared this method with a series of state-of-the-art methods for predicting associations between drugs and diseases, including MBiRW [15], LRSSL [1], SCMFDD [18], and HGBI [16].
The hyperparameter of CBPred, λ, was selected from {0.1, 0.2, …, 0.9}. Since CBPred yielded better performances for both λ = 0.1 and 0.2, we chose 0.12 as the final value of λ after fine tuning. The learning rate was set as 0.001. For the first convolutional layer, we set the kernel size = (3, 5), out channel = 16, and pooling size = 2. For the second convolutional layer, kernel size = (3, 11), out channel = 32, and pooling size = 2. For fair comparison, the parameters in other methods were adjusted according to the authors’ suggestions (i.e., α = 0.3, c = 11, d = log(9999), l = r = 2 for MBiRW, μ = λ = 0.01, γ = 2, k = 10 for LRSSL, k = 45%, μ = 1, λ = 4 for SCMFDD, and α = 0.4 for HGBI).
As shown in Figure 6a, CBPred showed the best performance for 763 drugs (AUC = 0.955). Specifically, CBPred showed a 25.3% higher AUC than HGBI, 23.2% higher AUC than SCMFDD, 12.7% higher AUC than MBiRW, and 12.4% higher AUC than LRSSL. We also show the predictive results of 15 well-characterized drugs in Table 1; CBPred achieved the best performance for 12 drugs. Both CBPred and LRSSL not only consider the nodes’ attributes based on node similarities, but also extract topological information of drug–disease heterogeneous networks. Thus, compared to other methods, CBPred and LRSSL achieved the best and second-best performances. Luo et al. constructed a random walk with a restart-based model, MBiRW, for predicting associations between drugs and diseases. It focuses on the topological information of the networks, while node attributes are ignored. Additionally, because the restart probability is difficult to determine, which may result in insufficient global topological information or excessive noise, the performance of MBiRW was worse than the second method, LRSSL. Zhang et al. applied a matrix factorization-based model, SCMFDD, for predicting novel associations, which relies on the adjacency matrices of the heterogeneous network. However, reducing the dimension of the feature vectors may lead to loss of the potential information. Thus, the performance of SCMFDD was worse than that of MBiRW but better than that of HGBI. Comprehensively, HGBI showed lower performance than the other methods because it was too dependent on the similarity of drugs and diseases.
The precision–recall curves of each method are demonstrated in Figure 6b. The average AUPR of CBPred was greater than those of all the other methods (AUPR = 0.182). Our method, CBPred, achieved a 17.0%, 16.9%, 13.7%, and 7.5% higher AUPR than HGBI, SCMFDD, MBiRW, and LRSSL, respectively. As shown in Table 2, CBPred showed the best performance for 12 of the 15 well-characterized drugs.
A Wilcoxon test to evaluate the prediction results of 763 drugs revealed that CBPred significantly outperformed the other methods [40,41,42]. These results were observed using a p-value threshold of 0.05, with CBPred showing better performance in terms of both AUCs and AUPRs (Table 3).
Among the top k-ranked drugs, a higher recall rate indicated that drug-associated diseases were correctly identified. Our method, CBPred, consistently outperformed the other methods under different k values, as shown in Figure 7, and ranked 76.38% for the top 30 drugs, 85.78% for the top 60, and 92.54% for the top 120. Zhang’s method, SCMFDD, showed very similar results to Wang’s method, HGBI, for most of the recall rates, with the former ranked 27.97%, 41.75%, and 55.82% for the top 30, 60, and 120 drugs, respectively, while the latter ranked 25.70%, 37.39%, and 51.57%. The recall of LRSSL was higher than that of MBiRW before the top 120, after which it was surpassed. This may be because the k-nearest neighbors algorithm is utilized in the process of LRSSL, which may make the prediction effect too dependent on neighboring node information, causing difficulties in predicting isolated nodes. Luo’s method, MBiRW, captured the global information for the drug–disease network and local topology of the node through random walk with restart algorithm, which showed better results than LRSSL.
In addition, to confirm the performance of CBPred from another perspective, we constructed a new drug–disease network where the disease similarities are calculated using disease ontology and disease-related genes according to Cheng’s method [43]. The ROC and P–R curves of CBPred and other methods are shown in Supplementary Materials Figure S1. Our method, CBPred, still achieved the best performance under the new drug–disease network, which also illustrated that CBPred was effective when the disease ontology and disease-related genes were taken into account.

3.3. Case Studies of Five Drugs

To demonstrate the ability of CBPred to discover novel drug–disease associations, we conducted case studies of ciprofloxacin, ceftriaxone, ofloxacin, ampicillin, and levofloxacin and then analyzed their top ten candidate diseases (Table 4).
The impacts of chemicals (i.e., drugs) on human health are presented in the Comparative Toxicogenomics Database (CTD). This information was manually collected and verified from published works. DrugBank records various attributes of the drug itself, such as associations with diseases. As shown in Table 3, 12 candidates are supported by direct evidence in CTD, and 9 candidates are involved according to DrugBank. These records indicate that these candidate diseases are treated with the corresponding drugs.
Clinical Trials is a database of clinical trials conducted worldwide and provides access to various ongoing and completed experimental information, with detailed patient descriptions and experimental dosing regimens and treatment outcomes. We selected only records with a status of “Completed” as our support material. The clinical trial results showed that our drug has a therapeutic relationship with the candidate disease. PubChem is a public database containing information on chemicals and their biological activities and is supported by the National Institutes of Health. Fifteen candidates were included from Clinical Trials and 11 candidates were included by PubChem. This demonstrated that the candidates are supported by clinical trials.
In addition to the manually verified drug–disease associations, the CTD database also contains inferred associations from literature that are temporarily unconfirmed. Four candidates were included by the inferred part of CTD, which shows that they are likely to have associations. Direct or indirect descriptions of all disease candidates for five drugs were found, revealing that CBPred can identify drug–disease association candidates with high reliability and accuracy.

3.4. Prediction of Novel Drug–Disease Associations

After evaluating CBPred’s prediction performance through five-fold cross-validation, case studies, and Wilcoxon test, we applied CBPred to all drugs. All known drug–disease associations were considered as the training set to train CBPred’s prediction model. Many high-confidence candidate diseases of drugs were obtained via CBPred and are listed in Supplementary Materials Table S1.

4. Conclusions

A novel method based on a CNN and BiLSTM—CBPred—was developed for predicting potential disease indications for drugs. The CNN module of the CBPred captures complex and non-linear relationships among drug similarities, disease similarities, and drug–disease associations about a drug–disease pair. The path information was deeply integrated using the BiLSTM module of this method. We also established an attention mechanism at the path level to discriminate the different contributions of the path, which enhanced the prediction performance of CBPred. The experimental results revealed that CBPred outperformed other state-of-the-art methods in terms of both AUCs and AUPRs. Case studies of five drugs confirmed the ability of CBPred to discover potential disease indications for drugs. Our method, CBPred, is a prioritization tool that identifies reliable candidate drug–disease associations for subsequent biological validation in wet-lab experiments.

Supplementary Materials

The following are available online at https://www.mdpi.com/2073-4409/8/7/705/s1. Table S1: The top 10 potential candidates for 763 drugs. Figure S1: Two type of curves of CBPred and other methods under a new drug–disease network.

Author Contributions

P.X. and T.Z. conceived the prediction method, and Y.Y. wrote the paper. Y.Y. and L.Z. developed the computer programs. P.X. and C.S. analyzed the results and revised the paper.

Funding

The work was supported by the Natural Science Foundation of China (61702296, 61302139), the Natural Science Foundation of Heilongjiang Province (LH2019F049, LH2019A029), the China Postdoctoral Science Foundation (2019M650069), the Heilongjiang Postdoctoral Scientific Research Staring Foundation (BHL-Q18104), the Fundamental Research Foundation of Universities in Heilongjiang Province for Technology Innovation (KJCX201805), the Foundation of Graduate Innovative Research (YJSCX2019-070HLJU), and the Fundamental Research Foundation of Universities in Heilongjiang Province for Youth Innovation Team (RCYJTD201805).

Acknowledgments

We would like to thank Editage (www.editage.com) for English language editing.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Liang, X.; Zhang, P.; Yan, L.; Fu, Y.; Peng, F.; Qu, L.; Shao, M.; Chen, Y.; Chen, Z. LRSSL: Predict and interpret drug–disease associations based on data integration using sparse subspace learning. Bioinformatics 2017, 33, 1187–1196. [Google Scholar] [CrossRef] [PubMed]
  2. Neuberger, A.; Oraiopoulos, N.; Drakeman, D.L. Renovation as innovation: Is repurposing the future of drug discovery research? Drug Discov. Today 2019, 24, 1–3. [Google Scholar] [CrossRef] [PubMed]
  3. Sinha, S.; Vohora, D. Drug Discovery and Development: An Overview. In Pharmaceutical Medicine and Translational Clinical Research; Vohora, D., Singh, G., Eds.; Elsevier: Dutch, The Netherlands, 2018; pp. 19–32. [Google Scholar]
  4. Xuan, P.; Cao, Y.; Zhang, T.; Wang, X.; Pan, S.; Shen, T. Drug repositioning through integration of prior knowledge and projections of drugs and diseases. Bioinformatics 2019. [Google Scholar] [CrossRef] [PubMed]
  5. Ashburn, T.T.; Thor, K.B. Drug repositioning: Identifying and developing new uses for existing drugs. Nat. Rev. Drug Discov. 2004, 3, 673–683. [Google Scholar] [CrossRef] [PubMed]
  6. Mathieu, M.P. Parexel’s Pharmaceutical R&D Statistical Sourcebook; PAREXEL International Corporation: Waltham, MA, USA, 2007. [Google Scholar]
  7. Paul, S.M.; Mytelka, D.S.; Dunwiddie, C.T.; Persinger, C.C.; Munos, B.H.; Lindborg, S.R.; Schacht, A.L. How to improve R&D productivity: The pharmaceutical industry’s grand challenge. Nat. Rev. Drug Discov. 2010, 9, 203–214. [Google Scholar] [PubMed]
  8. von Richter, O.; Lemke, L.; Haliduola, H.; Fuhr, R.; Koernicke, T.; Schuck, E.; Velinova, M.; Skerjanec, A.; Poetzl, J.; Jauch-Lembach, J. GP2017, an adalimumab biosimilar: Pharmacokinetic similarity to its reference medicine and pharmacokinetics comparison of different administration methods. Expert Opin. Biol. Ther. 2019. [Google Scholar] [CrossRef]
  9. Xu, C.; Ai, D.; Suo, S.; Chen, X.; Yan, Y.; Cao, Y.; Sun, N.; Chen, W.; McDermott, J.; Zhang, S. Accurate Drug Repositioning through Non-tissue-Specific Core Signatures from Cancer Transcriptomes. Cell Rep. 2018, 25, 523–535. [Google Scholar] [CrossRef]
  10. Xu, Y.; Guo, M.; Liu, X.; Wang, C.; Liu, Y.; Liu, G. Identify bilayer modules via pseudo-3D clustering: Applications to miRNA-gene bilayer networks. Nucleic Acids Res. 2016, 44, e152. [Google Scholar] [CrossRef]
  11. Xu, Y.; Guo, M.; Liu, X.; Wang, C.; Liu, Y. Inferring the soybean (Glycine max) microRNA functional network based on target gene network. Bioinformatics 2013, 30, 94–103. [Google Scholar] [CrossRef] [Green Version]
  12. Karaman, B.; Sippl, W. Computational Drug Repurposing: Current Trends. In Current Medicinal Chemistry; Bentham Science Publishers: Sharjah, UAE, 2019. [Google Scholar]
  13. Shameer, K.; Readhead, B.; Dudley, J.T. Computational and experimental advances in drug repositioning for accelerated therapeutic stratification. Curr. Top. Med. Chem. 2015, 15, 5–20. [Google Scholar] [CrossRef]
  14. Liu, H.; Song, Y.; Guan, J.; Luo, L.; Zhuang, Z. Inferring new indications for approved drugs via random walk on drug-disease heterogenous networks. BMC bioinformatics 2016, 17, 539. [Google Scholar] [CrossRef] [PubMed]
  15. Luo, H.; Wang, J.; Li, M.; Luo, J.; Peng, X.; Wu, F.-X.; Pan, Y. Drug repositioning based on comprehensive similarity measures and Bi-Random walk algorithm. Bioinformatics 2016, 32, 2664–2671. [Google Scholar] [CrossRef] [PubMed]
  16. Wang, W.; Yang, S.; Zhang, X.; Li, J. Drug repositioning by integrating target information through a heterogeneous network model. Bioinformatics 2014, 30, 2923–2930. [Google Scholar] [CrossRef] [PubMed]
  17. Cho, H.; Berger, B.; Peng, J. Diffusion component analysis: Unraveling functional topology in biological networks. In Proceedings of the International Conference on Research in Computational Molecular Biology, Warsaw, Poland, 12–15 April 2015; pp. 62–64. [Google Scholar]
  18. Zhang, W.; Yue, X.; Lin, W.; Wu, W.; Liu, R.; Huang, F.; Liu, F. Predicting drug-disease associations by using similarity constrained matrix factorization. BMC bioinformatics 2018, 19, 233. [Google Scholar] [CrossRef] [PubMed]
  19. Bengio, Y.; LeCun, Y. Scaling learning algorithms towards AI. Large-scale Kernel Mach. 2007, 34, 1–41. [Google Scholar]
  20. Koutsoukas, A.; Monaghan, K.J.; Li, X.; Huan, J. Deep-learning: Investigating deep neural networks hyper-parameters and comparison of performance to shallow methods for modeling bioactivity data. J. Cheminformatics 2017, 9, 42. [Google Scholar] [CrossRef] [PubMed]
  21. Xu, Y.; Wang, Y.; Luo, J.; Zhao, W.; Zhou, X. Deep learning of the splicing (epi) genetic code reveals a novel candidate mechanism linking histone modifications to ESC fate decision. Nucleic Acids Res. 2017, 45, 12100–12112. [Google Scholar] [CrossRef]
  22. Zou, Q.; Mrozek, D.; Ma, Q.; Xu, Y. Scalable data mining algorithms in computational biology and biomedicine. BioMed Res. Int. 2017, 2017. [Google Scholar] [CrossRef]
  23. Wang, F.; Zhang, P.; Cao, N.; Hu, J.; Sorrentino, R. Exploring the associations between drug side-effects and therapeutic indications. J. Biomed. Inform. 2014, 51, 15–23. [Google Scholar] [CrossRef] [Green Version]
  24. Bodenreider, O. The unified medical language system (UMLS): Integrating biomedical terminology. Nucleic Acids Res. 2004, 32, D267–D270. [Google Scholar] [CrossRef]
  25. Wang, Y.; Xiao, J.; Suzek, T.O.; Zhang, J.; Wang, J.; Bryant, S.H. PubChem: A public information system for analyzing bioactivities of small molecules. Nucleic Acids Res. 2009, 37, W623–W633. [Google Scholar] [CrossRef] [PubMed]
  26. Wang, D.; Wang, J.; Lu, M.; Song, F.; Cui, Q. Inferring the human microRNA functional similarity and functional network based on microRNA-associated diseases. Bioinformatics 2010, 26, 1644–1650. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  27. Gers, F.A.; Schmidhuber, J.; Cummins, F. Learning to forget: Continual prediction with LSTM. In Proceedings of the 9th International Conference on Artificial Neural Networks: ICANN ’99, Edinburgh, UK, 7–10 September 1999; pp. 812–815. [Google Scholar]
  28. Ghaeini, R.; Hasan, S.A.; Datla, V.; Liu, J.; Lee, K.; Qadir, A.; Ling, Y.; Prakash, A.; Fern, X.Z.; Farri, O. Dr-bilstm: Dependent reading bidirectional lstm for natural language inference. arXiv 2018, arXiv:1802.05577. [Google Scholar]
  29. Firat, O.; Cho, K.; Bengio, Y. Multi-way, multilingual neural machine translation with a shared attention mechanism. arXiv 2016, arXiv:1601.01073. [Google Scholar]
  30. Kingma, D.P.; Ba, J. Adam: A method for stochastic optimization. arXiv 2014, arXiv:1412.6980. [Google Scholar]
  31. Zhang, P. Model selection via multifold cross validation. Ann. Stat. 1993, 299–313. [Google Scholar] [CrossRef]
  32. Xuan, P.; Sun, C.; Zhang, T.; Ye, Y.; Shen, T.; Dong, Y. A Gradient Boosting Decision Tree-based Method for Predicting Interactions between Target Genes and Drugs. Front. Genet. 2019, 10, 459. [Google Scholar] [CrossRef] [PubMed]
  33. Glas, A.S.; Lijmer, J.G.; Prins, M.H.; Bonsel, G.J.; Bossuyt, P.M. The diagnostic odds ratio: A single indicator of test performance. J. Clin. Epidemiol. 2003, 56, 1129–1135. [Google Scholar] [CrossRef]
  34. Hanley, J.A.; McNeil, B.J. The meaning and use of the area under a receiver operating characteristic (ROC) curve. Radiology 1982, 143, 29–36. [Google Scholar] [CrossRef]
  35. Bradley, A.P. The use of the area under the ROC curve in the evaluation of machine learning algorithms. Pattern Recognit. 1997, 30, 1145–1159. [Google Scholar] [CrossRef] [Green Version]
  36. Pencina, M.J.; D’Agostino, R.B.; Vasan, R.S. Evaluating the added predictive ability of a new marker: From area under the ROC curve to reclassification and beyond. Stat. Med. 2008, 27, 157–172. [Google Scholar] [CrossRef]
  37. Davis, J.; Goadrich, M. The relationship between Precision-Recall and ROC curves. In Proceedings of the 23rd international conference on Machine learning, Pittsburgh, PA, USA, 25–29 June 2006; pp. 233–240. [Google Scholar]
  38. Flach, P.; Kull, M. Precision-recall-gain curves: PR analysis done right. In Proceedings of the Advances in Neural Information Processing Systems 28 (NIPS 2015), Montreal, QC, Canada, 7–12 December 2015; pp. 838–846. [Google Scholar]
  39. van Laarhoven, T.; Nabuurs, S.B.; Marchiori, E. Gaussian interaction profile kernels for predicting drug-target interaction. Bioinformatics 2011, 27, 3036–3043. [Google Scholar] [CrossRef] [PubMed]
  40. Gehan, E.A. A generalized Wilcoxon test for comparing arbitrarily singly-censored samples. Biometrika 1965, 52, 203–224. [Google Scholar] [CrossRef] [PubMed]
  41. Fix, E.; Hodges, J., Jr. Significance probabilities of the Wilcoxon test. Annals Math. Statistics 1955, 26, 301–312. [Google Scholar] [CrossRef]
  42. Vexler, A.; Yu, J.; Zhao, Y.; Hutson, A.D.; Gurevich, G. Expected p-values in light of an ROC curve analysis applied to optimal multiple testing procedures. Stat. Methods Med. Res. 2018, 27, 3560–3576. [Google Scholar] [CrossRef] [PubMed]
  43. Cheng, L.; Li, J.; Ju, P.; Peng, J.; Wang, Y. SemFunSim: A new method for measuring disease similarity by integrating semantic and gene functional association. PLoS ONE 2014, 9, e99415. [Google Scholar] [CrossRef] [PubMed]
Figure 1. Construction of drug-disease heterogeneous network DrDisNet. R and D are the similarity matrix of drugs and diseases, respectively. A is the association matrix between drugs and diseases, while AT is the transpose of A.
Figure 1. Construction of drug-disease heterogeneous network DrDisNet. R and D are the similarity matrix of drugs and diseases, respectively. A is the association matrix between drugs and diseases, while AT is the transpose of A.
Cells 08 00705 g001
Figure 2. Construction of the framework based on the convolutional neural network and bidirectional long short-term memory for learning the original and path representations.
Figure 2. Construction of the framework based on the convolutional neural network and bidirectional long short-term memory for learning the original and path representations.
Cells 08 00705 g002
Figure 3. Integration process of drug and disease nodes to construct the feature matrix in the CNN module of our model and path set in the BiLSTM module of our model.
Figure 3. Integration process of drug and disease nodes to construct the feature matrix in the CNN module of our model and path set in the BiLSTM module of our model.
Cells 08 00705 g003
Figure 4. Learning process of the original representation of drug–disease pair by convolution and pooling on the left part.
Figure 4. Learning process of the original representation of drug–disease pair by convolution and pooling on the left part.
Cells 08 00705 g004
Figure 5. Learning process of the path representation in the BiLSTM module.
Figure 5. Learning process of the path representation in the BiLSTM module.
Cells 08 00705 g005
Figure 6. Two type of curves of CBPred and other methods for predicting performance evaluation. (a) Receiver operating feature characteristic (ROC) curves; (b) precision–recall (P–R) curves.
Figure 6. Two type of curves of CBPred and other methods for predicting performance evaluation. (a) Receiver operating feature characteristic (ROC) curves; (b) precision–recall (P–R) curves.
Cells 08 00705 g006
Figure 7. Top k recall rate of CBPred and other methods.
Figure 7. Top k recall rate of CBPred and other methods.
Cells 08 00705 g007
Table 1. Prediction results of CBPred and four other methods for 15 drugs in terms of the area under the receiver operating characteristic curve (AUC).
Table 1. Prediction results of CBPred and four other methods for 15 drugs in terms of the area under the receiver operating characteristic curve (AUC).
Disease NameAUC
CBPredLRSSLSCMFDDHGBIMBiRW
Ave AUC on 763 drugs0.9550.8310.7230.7020.828
ampicillin0.9090.8850.8610.7860.906
cefepime0.9530.9320.8980.9100.872
cefotaxime0.9060.9020.9110.8700.967
cefotetan0.8890.8920.8970.9080.866
cefoxitin0.9130.9110.8990.9090.907
ceftazidime0.9400.9250.9390.9240.916
ceftizoxime0.9020.8940.8410.8230.854
ceftriaxone0.8630.9250.8080.7790.851
ciprofloxacin0.9170.8930.8100.7900.844
doxorubicin0.9210.7490.3610.4860.918
erythromycin0.8590.8170.7690.7340.857
itraconazole0.9420.5430.7010.5600.897
levofloxacin0.9100.8520.8240.8190.867
moxifloxacin0.9090.7920.8410.8490.826
ofloxacin0.8990.8840.8510.8450.896
The bold values indicate the higher AUCs.
Table 2. Prediction results of CBPred and four other contrast methods for 15 drugs in terms of the area under the precision–recall curve (AUPR).
Table 2. Prediction results of CBPred and four other contrast methods for 15 drugs in terms of the area under the precision–recall curve (AUPR).
Disease NameAUPR
CBPredLRSSLSCMFDDHGBIMBiRW
Ave AUPR on 763 drugs0.1820.1070.0130.0120.045
ampicillin0.2490.2200.0590.0890.058
cefepime0.2580.5620.1010.1370.279
cefotaxime0.2760.2730.0720.0980.266
cefotetan0.1770.7240.0930.1310.152
cefoxitin0.2270.1360.0510.0810.186
ceftazidime0.2010.1870.1320.1640.119
ceftizoxime0.3280.1680.1250.1740.153
ceftriaxone0.2690.1380.0810.1010.123
ciprofloxacin0.4710.2560.0610.0740.071
doxorubicin0.1640.1590.0060.0070.075
erythromycin0.1940.0340.0130.0130.052
itraconazole0.3340.0570.0080.0060.097
levofloxacin0.2630.5120.0860.1110.177
moxifloxacin0.3010.1580.0950.1260.098
ofloxacin0.2210.2140.1140.1580.095
The bold values indicate the higher AUPRs.
Table 3. Results of Wilcoxon test on CBPred and four other contrast methods for 763 drugs.
Table 3. Results of Wilcoxon test on CBPred and four other contrast methods for 763 drugs.
p-Value between CBPred and Another MethodLRSSLSCMFDDHGBIMBiRW
p-value of ROC curve3.577 × 10−131.218 × 10−751.460 × 10−803.724 × 10−32
p-value of P–R curve2.591 × 10−151.122 × 10−766.075 × 10−804.577 × 10−38
Table 4. The top 10 candidates of 5 popular drugs supported by databases. The associations involved in the table are all inferred by the literature in the comparative toxicogenomic database or included by databases.
Table 4. The top 10 candidates of 5 popular drugs supported by databases. The associations involved in the table are all inferred by the literature in the comparative toxicogenomic database or included by databases.
RankDisease NameDescriptionRankDisease NameDescription
Ciprofloxacin1Conjunctivitis, BacterialClinicalTrials6Campylobacter InfectionsDrugbank
2Chlamydia InfectionsCTD7NeurocysticercosisDrugbank
3Thrombocytopenic, IdiopathicDrugbank8Respiration DisordersClinicalTrials
4Acanthamoeba KeratitisDrugbank9AnthraxCTD
5Scalp DermatosesPubChem10Skin DiseasesCTD
Ceftriaxone1Panic DisorderDrugbank6Bacteroides InfectionsPubChem
2Respiration DisordersClinicalTrials7Bone Diseases, InfectiousClinicalTrials
3Respiratory Distress Syndrome, AdultClinicalTrials8Multiple MyelomaDrugbank
4Rickettsia InfectionsPubChem9Rectal Neoplasmsinferred candidate by 2 literature
5Respiratory Distress Syndrome, NewbornClinicalTrials10Maxillary SinusitisDrugbank
Ofloxacin1Trichuriasisinferred candidate by 1 study6Pulmonary Valve StenosisPubChem
2Corneal UlcerPubChem7SchizophreniaCTD
3NauseaCTD8PeritonitisCTD
4Rectal NeoplasmsClinicalTrials9Mouth DiseasesCTD
5EpididymitisDrugbank10Proteus InfectionsCTD
Ampicillin1Keratosisinferred candidate by 1 literature6Pneumonia, BacterialCTD, ClinicalTrials
2Bacterial InfectionsCTD7ToothacheClinicalTrials
3Respiratory Syncytial Virus Infectionsinferred candidate by 1 study8Respiratory Tract FistulaPubChem
4Respiratory Tract DiseasesClinicalTrials9Mouth DiseasesClinicalTrials
5BurnsCTD10Sarcoma, EwingsPubChem
Levofloxacin1Pneumonia, MycoplasmaClinicalTrials6Respiratory Syncytial Virus InfectionsCTD
2RhinitisPubChem7Soft Tissue InfectionsDrugbank
3Bacteroides InfectionsPubChem8Respiratory Tract FistulaPubChem
4Tuberculosis, PulmonaryClinicalTrials9ListeriosisPubChem
5Respiratory Tract DiseasesClinicalTrials10Mouth DiseasesClinicalTrials

Share and Cite

MDPI and ACS Style

Xuan, P.; Ye, Y.; Zhang, T.; Zhao, L.; Sun, C. Convolutional Neural Network and Bidirectional Long Short-Term Memory-Based Method for Predicting Drug–Disease Associations. Cells 2019, 8, 705. https://doi.org/10.3390/cells8070705

AMA Style

Xuan P, Ye Y, Zhang T, Zhao L, Sun C. Convolutional Neural Network and Bidirectional Long Short-Term Memory-Based Method for Predicting Drug–Disease Associations. Cells. 2019; 8(7):705. https://doi.org/10.3390/cells8070705

Chicago/Turabian Style

Xuan, Ping, Yilin Ye, Tiangang Zhang, Lianfeng Zhao, and Chang Sun. 2019. "Convolutional Neural Network and Bidirectional Long Short-Term Memory-Based Method for Predicting Drug–Disease Associations" Cells 8, no. 7: 705. https://doi.org/10.3390/cells8070705

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop