Next Article in Journal
Expressing OsMPK4 Impairs Plant Growth but Enhances the Resistance of Rice to the Striped Stem Borer Chilo suppressalis
Previous Article in Journal
Establishing a Split Luciferase Assay for Proteinkinase G (PKG) Interaction Studies
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

An Efficient ABC_DE_Based Hybrid Algorithm for Protein–Ligand Docking

School of Computer Science and Engineering, Northeastern University, Shenyang 110819, China
*
Author to whom correspondence should be addressed.
Int. J. Mol. Sci. 2018, 19(4), 1181; https://doi.org/10.3390/ijms19041181
Submission received: 14 March 2018 / Revised: 7 April 2018 / Accepted: 10 April 2018 / Published: 13 April 2018
(This article belongs to the Section Molecular Biophysics)

Abstract

:
Protein–ligand docking is a process of searching for the optimal binding conformation between the receptor and the ligand. Automated docking plays an important role in drug design, and an efficient search algorithm is needed to tackle the docking problem. To tackle the protein–ligand docking problem more efficiently, An ABC_DE_based hybrid algorithm (ADHDOCK), integrating artificial bee colony (ABC) algorithm and differential evolution (DE) algorithm, is proposed in the article. ADHDOCK applies an adaptive population partition (APP) mechanism to reasonably allocate the computational resources of the population in each iteration process, which helps the novel method make better use of the advantages of ABC and DE. The experiment tested fifty protein–ligand docking problems to compare the performance of ADHDOCK, ABC, DE, Lamarckian genetic algorithm (LGA), running history information guided genetic algorithm (HIGA), and swarm optimization for highly flexible protein–ligand docking (SODOCK). The results clearly exhibit the capability of ADHDOCK toward finding the lowest energy and the smallest root-mean-square deviation (RMSD) on most of the protein–ligand docking problems with respect to the other five algorithms.

Graphical Abstract

1. Introduction

The development of new drugs is costly and inefficient, so it is urgent to apply new theoretical methods and new technologies to improve it. Computer aided drug design (CADD) is developed gradually under the strong impetus of this social demand [1,2]. CADD takes advantage of advanced multidisciplinary technology, methods, and achievements, and has been a necessary basic tool for drug design. Its application shortens the process of drug research and reduces the cost of drug discovery. Protein–ligand docking, as an important part of CADD, is a computer simulation to predict the binding pose when the three-dimensional structures of protein receptors and ligands are known [3,4,5,6]. The purpose of protein–ligand docking is to find the conformation with the lowest energy when a ligand binds the active region of a receptor. Protein–ligand docking has been widely used in understanding molecular biological functions, predicting drug toxicity, screening virtual drugs and so on [7,8,9,10]. For the main process of protein–ligand docking, all possible active sites of the receptor are first detected. Then, the active site that binds to the ligand is determined, the position of the ligand is constantly adjusted, and different conformations are obtained according to the complementary principle of docking. The results are sorted by a specific scoring function, and the binding pose with the lowest energy score is finally found.
A scoring function [11,12,13,14,15,16] and a search algorithm [17,18,19] are the necessary tools of a docking method for solving the two goals above. The scoring function is used to evaluate the affinity between the receptor and the ligand for each conformation [20]. Scoring functions express the geometric complementarity and the energy strength of the interaction based on the physicochemical characteristics of the amino acids in contact with each other [21]. In the docking process, it is necessary to obtain the binding affinity accurately as the basis for optimization. Furthermore, the scoring function can also effectively help the docking to explore the binding space of the ligand. The scoring function can be directly used as the fitness function of the search algorithm.
The purpose of the search algorithm is to identify the optimal binding pose between the receptor and the ligand. The performance of the search algorithm directly affects the efficiency of molecular docking. The ideal search algorithm should be able to enumerate all possible binding poses between ligands and receptors, but this is difficult to achieve because the search space involved in molecular docking is huge. Many evolutionary computation methods have been presented for solving protein–ligand docking problems [22,23,24,25,26,27,28]: for example, simulated annealing (SA) [29], genetic algorithm (GA) [30], Lamarckian genetic algorithm (LGA) [31], running history information guided genetic algorithm (HIGA) [32], and swarm optimization for highly flexible protein–ligand docking (SODOCK) [33]. These methods have been applied to solve docking problems, but they have some drawbacks. As two standard evolutionary algorithms, SA and GA are not combined with local searches, so they can no longer search better solutions in the neighborhood of the current solution and the diversity of solutions cannot be maintained. LGA is a hybrid of GA and local search, HIGA is an improved algorithm based on running history information, and SODOCK is a hybrid of particle swarm optimization (PSO) and local search. Although LGA, HIGA, and SODOCK have local searches, their main disadvantage is the high probability of becoming trapped by local optima because of their single search strategy. Therefore, developing a more efficient and reliable search algorithm is necessary.
To solve the protein–ligand docking problem more efficiently, an efficient ABC_DE_based hybrid algorithm for protein–ligand docking (ADHDOCK) is proposed in the article. The novel method is a hybrid of artificial bee colony algorithm [34] and differential evolution algorithm [35]. Artificial bee colony (ABC) and differential evolution (DE) are two practical evolutionary computation methods, and they have been widely used in various applications. In ADHDOCK, these two algorithms share the same population and execute in parallel. An adaptive population partition (APP) mechanism incorporated into ADHDOCK is applied to automatically partition the population into two subpopulations and allocate them to ABC and DE. The reasonable allocation of computing resources makes the novel method make better use of the advantages of ABC and DE and prevents the single use of one algorithm from falling into the local optima.
The environment and the scoring function of AutoDock 4.2.6 are used as the experimental platform in the article [36]. AutoDock, as a free and open source molecular docking program, is one of the most commonly used docking software, and it provides great convenience for researchers to develop new algorithms on the existing program. AutoDock first forms a box by using the amino acid residues around the active site of the receptor. Subsequently, the program scans with different types of atoms as probes, calculates the energy of the grid, and searches for the ligand within the range of the box. Finally, every complex is scored according to the different conformation, orientation, and position of the ligand. To test the power of ADHDOCK, we performed an experiment on a set of protein–ligand complexes from PDBbind 2017 [37]. The performance of ADHDOCK, ABC, DE, LGA, HIGA, and SODOCK is compared in these datasets. Computer simulation results reveal that ADHDOCK is superior to the other methods regarding obtained energy and root-mean-square deviation (RMSD), success rate, convergence performance, data distribution, and hypothesis test.

2. Results

2.1. Data Preparation and Parameter Setting

Fifty X-ray crystallographic complexes are randomly chosen from PDBbind 2017 [37] to compare the capability of the different docking methods. One rigid protein receptor and one flexible ligand are prepared before docking. Through AutoDock’s file format, input files of both protein and ligand are preserved. The preparation process of proteins is as below: (1) get rid of ligands, the water molecule and metal ion not being included in binding sites; (2) restore the residues of missing atoms; (3) mix hydrogen with all atoms, integrate nonpolar hydrogen atoms, and allot partial charges; and (4) assign the parameter of solvent. The input files of the ligand are gained by the following process: (1) acquire the ligand atom coordinates from PDB files; (2) mix hydrogen with all atoms, integrate nonpolar hydrogen atoms, and allot the partial charge; and (3) define the torsions and a rigid root of the ligand. The file preparation stage of a molecule is carried out through AutoDock Tools. The degrees of freedom include three parameters denote the translation of the ligand relative to a specified center, a quaternion represents the orientation of the ligand with four parameters, and T torsion parameters where T is the number of rotatable bonds.
The semi-empirical free energy force field [13] is used as the scoring function in the experiment. The force field includes six pair-wise evaluations (V) and an estimate of the conformational entropy lost upon binding (ΔSconf):
Δ G = ( V b o u n d L L V u n b o u n d L L ) + ( V b o u n d P P V u n b o u n d P P ) + ( V b o u n d P L V u n b o u n d P L + Δ S c o n f )
where L represents the ligand and P represents the protein. Each of the pair-wise energetic terms is expressed as the sum of dispersion/repulsion in which the parameters are based on the Amber force field, hydrogen bonding, electrostatics, and desolvation.
V = W v d w i , j ( A i j r i j 12 B i j r i j 6 ) + W h b o n d i , j E ( t ) ( C i j r i j 12 D i j r i j 10 ) + W e l e c i , j q i q j e ( r i j ) r i j + W s o l i , j ( S i V j + S j V i ) e ( r i j 2 / 2 σ 2 )
The docking power of six algorithms (ADHDOCK, ABC, DE, LGA, HIGA and SODOCK) is compared. For each tested algorithm, the number of iterations was 27,000 and the number of individuals was 100. The other parameters were set in accordance with previous studies [31,32,33,34,35], and the details are shown in Table 1.

2.2. Comparison of Energy and Root-Mean-Square Deviation (RMSD)

The main purpose of our experiment is to find the lowest energy because the docked energy values are the most important criterion to evaluate the performance of the tested algorithms. RMSD is an important index to evaluate the protein–ligand re-docking algorithms, and it is obtained by comparing the re-docking result with the real crystallographic structure of the complex. The smaller RMSD of a docked conformation is considered to be the more accurate solution to the docking problem and the stronger search capability of the used algorithm. A docking can be considered successful if the RMSD is smaller than a given threshold 2.0 Å after docking. Each method is run thirty times independently for each protein–ligand complex. The conformation obtained from the first run is called the first predicted conformation. The best conformation with the lowest energy value obtained during all thirty runs under the condition of RMSD < 2.0 Å is called the best predicted conformation, and the docking results of RMSD ≥ 2.0 Å are not counted. The success cases, the average RMSD (all cases) and the average RMSD (RMSD < 2.0 Å) of the first predicted conformations are calculated and recorded in Table 2. The lowest energy and RMSD of the best predicted conformation are recorded, and the results are shown in Table 3. The bold fonts are used to highlight which algorithm wins in each complex. The rate of the lowest energy and the smallest RMSD found by different tested algorithms is clearly shown in Figure 1.

2.3. Convergence Analysis

Convergence means that, after iterating for several times, the convergence curve of the target solution is likely to be steady. Figure 2 shows the convergence diagrams of the six tested algorithms for solving some representative complexes. The number of iterations is 3000, 6000, 9000, 12,000, 15,000, 18,000, 21,000, 24,000, 27,000 and 30,000, respectively, and the values are utilized as the horizontal axis of the convergence diagrams. Under different times of iteration, the energy value of each algorithm is referred to as the vertical axis. With the increase of the number of iterations, the power grows at the early stage of each algorithm. However, the power of certain algorithms is likely to be fixed in the later stage due to the loss of evolutionary ability and the reduction of population diversity. This phenomenon is referred to as premature convergence.

2.4. Data Distribution Analysis

The data distribution can reflect the algorithm stability and the data concentration. We calculate the median, the first quartile, the third quartile, the minimum, and the maximum of the energy values of each complex, and then we apply the five statistical quantities to obtain the box plots (Figure 3). The median is suitable as a centralized trend value and not impacted by the extreme data. The median is an important measure of whether the distribution of data is dispersed or concentrated. Moreover, the first quartile is the upper boundary of the box and the third quartile is the lower boundary and the size of the box also reflects the concentration of the data. The dots outside the minimum value and maximum value are called outliers, and these outliers have a negative result on data distribution.

2.5. Hypothesis Test

To demonstrate whether the algorithm is more applicable to solve the protein–ligand problem, we adopt the hypothesis test with the confidence level of 0.05 in the section. Comparing Algorithm 1 with Algorithm 2, when the p-value between them is less than 0.05, it shows that Algorithm 1 is significantly better than Algorithm 2. For every complex, ten best values solved by each tested algorithm are taken out as experimental data. The results of the comparison of ADHDOCK with ABC, DE, LGA, HIGA and SODOCK are shown in Table 4.

3. Discussion

In this study, we demonstrated the superiority of ADHDOCK by many experiments. The number of success cases and the average RMSDs are recorded in Table 1. ADHDOCK finds forty-four success cases in the fifty complexes for the first predicted conformation, and the success rate of the algorithm is higher than that of ABC, DE, LGA, HIGA and SODOCK. In addition, the average RMSD (all cases) and the average RMSD (RMSD < 2.0 Å) with their respective standard deviations of ADHDOCK are the smallest compared with the other tested algorithms. It can be seen in Table 2 that ADHDOCK is well capable of finding the lowest energy values on forty-four out of fifty complexes. HIGA searches for the lowest values on six out of fifty complexes. For the smallest RMSD of the fifty complexes, ADHDOCK finds thirty-five smallest values, HIGA finds eight smallest values, LGA finds three smallest values, SODOCK finds two smallest values, and ABC and DE find one smallest value each. The experimental results indicate that ADHDOCK can solve protein–ligand docking problems more effectively and accurately than the five other comparative algorithms.
For the convergence analysis, ABC is prematurely convergent after iterating 18,000 times in 3tpb. DE is prematurely convergent after iterating 21,000 times in 1aha. The figure shows that, when compared with other algorithms on preventing premature convergence and enhancing solution quality, ADHDOCK is better. Moreover, for this case, as shown in 1aha and 1stp, it is obvious that the convergent trajectory of ADHDOCK is far away from others. For 3ptb and 4dfr, the convergent trajectories of ADHDOCK and HIGA are similar, but ADHDOCK is better than HIGA with the iteration of the optimization process. For 1hri, 4hmg, 1htf and 1tmn, ADHDOCK does not show the advantage in the early iteration, but the method gets better solutions than the other algorithms in the late iteration. From the above analyses, we can arrive at a conclusion that ADHDOCK significantly outperforms the other five comparative algorithms.
It is apparent in the box plots shown in Figure 3 that the median energy of ADHDOCK is lower than that of the other tested algorithms. The size of the boxes of ADHDOCK is the shortest in most complexes. It is evident that ADHDOCK has the most concentrated data distribution among the six test algorithms. For the outliers, ADHDOCK has no outliers, which indicates that the algorithm can reduce the randomness of the evolutionary process. It can be concluded from the above analysis that ADHDOCK is stable for protein–ligand docking.
As shown in Table 3, ADHDOCK is significantly better than other tested algorithms in thirty-nine out of fifty complexes. In 1mrg, 3hvt, 1cdg, and 1rds, ADHDOCK is significantly better than four tested algorithms. In 1phg, 1eap, and 1lic, ADHDOCK is significantly better than three tested algorithms. In 6rnt and 1hri, ADHDOCK is significantly better than two tested algorithms. In 1nco and 1hpv, ADHDOCK is significantly better than one tested algorithm. We can conclude from the results of the hypothesis tests that the performance of ADHDOCK is the best.

4. Materials and Methods

4.1. Framework of ADHDOCK

ADHDOCK is a hybrid search algorithm based on ABC [34] and DE [35], and it is designed for protein–ligand docking. The block diagram of ADHDOCK is shown in Figure 4. ADHDOCK consists of three main modules. (1) ABC module: The population in the module is evolved according to ABC algorithm. (2) DE module: The population in the module is evolved by using DE algorithm. (3) Adaptive population partition (APP) module: The population is partitioned based on the partition rate. In the following sections, the three main parts are described in detail.

4.2. ABC Module

ABC [34] is an optimization method that simulates the foraging behavior of the bee colony. The method consists of three kinds of bees: employed bees, onlooker bees and scout bees. The solution to the problem to be optimized is considered the food source, and the richer the food, the better the quality of the solution. The employed bees correspond to the food source they collect, and they store the information about the food source and share it with other bees at a certain probability. The number of employed bees is equal to the number of food sources, as one employed bee is related to only one food source. The onlooker bees observe the dance of the employed bees in the hive to determine which food source to choose. The scout bees randomly search for new food sources near the hive. The basic structure of the ABC algorithm can be split into employed bee stage, onlooker bee stage and scout stage.
At the employed bee stage, each employed bee hunts for a new food source near the existing food source xi by
v i ( t + 1 ) = x i ( t ) + φ ( x i ( t ) x k ( t ) )
where xk is a randomly selected food source; t is the iteration number; and φ is a random real number. The fitness between the new food source and the existing food source is compared, and the one with greater fitness is retained. The selection can be defined as
x i ( t + 1 ) = { v i ( t + 1 ) i f f i t ( v i ( t + 1 ) ) f i t ( x i ( t ) ) x i ( t ) o t h e r w i s e
where fit() is the fitness function.
At the onlooker bee stage, each onlooker bee makes a selection according to the information of the food source. The probability that an onlooker bee chooses a food source can be calculated by
p i = f i t ( x i ( t ) ) i = 1 M f i t ( x i ( t ) )
It is clear from Equation (5) that the solution with a greater fitness has a higher probability of being chosen by an onlooker bee. If the onlooker bee has selected a food source, it generates a new solution by Equation (3) and evaluates the fitness by Equation (4).
At the scout bee stage, if the employed bee fails to improve the quality of the solution after a given number of attempts limit are achieved, the employed bee becomes a scout bee and the solution it owns is abandoned. The number of employed bees and the number of onlooker bees each account for half of the population size, and the number of scout bees is selected as one.
Subsequently, the evolutionary rate of ABC module is calculated, and the equation is given below:
v = i = 1 N f i t ( x i ( t ) ) f i t ( x i ( t 1 ) ) f i t ( x i ( t ) )
where fit(xi) is the fitness of an individual xi at iteration t. fit(xi(t))-fit((t-1)) represents the difference between the fitness of the current iteration and that of the previous iteration, and the difference is called evolution velocity. An iteration with a higher evolutionary rate is considered to be more accurate in the search direction of the algorithm. The accuracy of the search direction affects the possibility of finding a better solution in subsequent iterations. Figure 5 gives the pseudocode of ABC module.

4.3. DE Module

DE [35] is an efficient global optimization algorithm that simulates biological evolution. Each individual in a population corresponds to a possible solution, and the swarm intelligence generated by mutual cooperation and competition between individuals guides the direction of optimization search. The algorithm starts with a random initial population and gets the optimal solution by iterative mutation, crossover and selection.
A mutated individual is generated by
v i ( t + 1 ) = x r 1 ( t ) + F ( x r 2 ( t ) x r 3 ( t ) )
where xr1, xr2, and xr3 are three individuals randomly selected from the previous generation; t denotes the iteration number; and F is the scalar number. The vector difference between xr1 and xr2 is calculated, and then the vector difference is multiplied by F and added to the individual xr3 to be mutated.
A test individual is obtained by crossing the mutant individual and the predetermined target individual. The crossover operation is described as
u i ( t + 1 ) = { v i ( t + 1 ) i f r a n d ( 0 , 1 ) < C R x i ( t ) o t h e r w i s e
where rand(0,1) generates a random number from 0 to 1; and CR is the probability of crossover, and it is a constant between 0 and 1.
The next generation of individuals is selected by
x i ( t + 1 ) = { u i ( t + 1 ) i f f i t ( u i ( t + 1 ) )   f i t ( x i ( t ) ) x i ( t ) o t h e r w i s e
where fit() is the fitness function, which generally takes the objective function to be optimized as the fitness function. If the fitness of the test individual is better than that of the current individual, the old individual is replaced by the new individual in the next iteration, otherwise the old individual is still preserved. After executing the three basic operations of DE, the evolution rate is calculated according to Equation (6). The pseudocode of DE module is shown in Figure 6.

4.4. APP Module

The population is randomly divided into two different subpopulations. The number of individuals in Subpopulation 1 P1 and Subpopulation 2 P2 is M1 = M × PR and M2 = MM1, where M is the total number of the population; and PR is the proportion of individuals in Subpopulation 1 called partition rate, which is set to 0.5 as the initial value. After the partition, the individuals of Subpopulation 1 evolve according to ABC module and the individuals of Subpopulation 2 evolve according to DE module.
When an evolution is completed, the emergence probability of new elite individuals in each subpopulation is called elite probability, and the elite probability is expressed according to Equation (10).
O Z = j = 1 E Z e j ( t ) i = 1 M Z x i ( t )
where Mz is the size of a subpopulation; xi is an individual belongs to the subpopulation at iteration t; Ez is the number of elite individuals in the subpopulation; and ej is an elite individual belonging to the subpopulation at current iteration. z is 1 or 2 and represents Subpopulation 1 and Subpopulation 2, respectively. The total size of the population M = M1 + M2. The total size of the elite individuals E = E1 + E2. The E elite individuals are found at the same time as fitness evaluation, and E is typically set to 20% of M. The elite probability can reflect the search capability of ABC module and DE module. The more elite individuals there are in this iteration, the greater the probability of continuing to reproduce elite individuals in the next iteration.
Then, the subpopulations are combined and the partition rate PR is calculated by Equation (11).
P R = o 1 × v 1 o 1 × v 1 + o 2 × v 2
The above partition strategy is called APP. APP adaptively partitions the population and allocates ABC module and DE module in each iteration according to the search situations of these two modules. If the elite probability is simply taken as the basis of the population partition, there will be a situation in which one module accounts for the majority or all of the population and the other module evolves slowly or ceases to evolve because of the lack of individual resources. This is because elite individuals are more likely to reproduce elite individuals. The introduction of the evolutionary rate is a good solution to the situation. The evolutionary rate determines the evolutionary direction of the entire population rather than elite individuals. The evolutionary rate of a module is reduced if the individuals of the module have little impact on the entire population, which can prevent unreasonable partition. The process of partitioning the population is continuously carried out with the iteration of the algorithm until the algorithm reaches a specific terminating condition. Figure 7 gives the pseudocode of APP module.

4.5. Hybrid Search of ADHDOCK

ADHDOCK is a hybrid algorithm consisting of ABC module, DE module, and APP module for solving protein–ligand docking problems. In ABC module, the population in the module is evolved according to ABC algorithm. ABC is a specific application of swarm intelligence, and it has a faster convergence rate. Through the local optimization behavior of each artificial bee, the global optimal solution is eventually revealed in the population. In DE module, the population in the module is evolved according to DE algorithm. DE simulates the process of biological evolution, and the individuals who adapt to the environment are preserved after repeated iterations. Compared with GA, the global search strategy based on population is the same, but the complexity of genetic operation of DE is reduced by the simple mutation operation based on difference and the survival strategy of one-to-one competition. ABC and DE have applications in the fields of function optimization, data mining, pattern recognition and so on. The main drawback of these two algorithms is the high probability of falling into local optima, which leads to premature convergence of the algorithms and the high energy values obtained for protein–ligand docking. The reason for the shortcoming is that each algorithm uses a single search strategy.
ADHDOCK applies APP module to combine ABC module and DE module effectively. APP module can reasonably allocate the computational resources of the population in each iteration process. In the initialization of ADHDOCK, the population is partitioned into two subpopulations with the same number of individuals, and the two subpopulations are allocated to ABC module and DE module. After an iterative process of ABC and DE, the two subpopulations are combined. The combined population is repartitioned and then reallocated according to APP module. If one module performs well in this iteration, the module will get more individuals than the other module. The specific usage of APP module is described in the previous chapters. The above process is repeated until a predefined termination condition is reached. If the number of individuals in one module is increasing with the iteration of the algorithm, it can be considered that the module does not fall into local optima. ADHDOCK adopts the search strategies of ABC and DE, and the double search strategy of the novel algorithm can reduce the probability of falling into local optima.

5. Conclusions

Protein–ligand docking method has a pivotal part in the field of drug research and provides an effective tool for the discovery and optimization of leading compounds. Studying the interaction between small molecules and protein macromolecules and identifying the target of small molecules in the organisms can help to find a new breakthrough for the development of new drugs. The article presents ADHDOCK, which combines ABC module, ED module, and APP module to solve the protein–ligand docking problem. APP module is responsible for partitioning the population so that computer resources can be used more reasonably. ABC module and ED module execute in parallel under the guidance of APP module, their search capability is maximized. To demonstrate the advantages of ADHDOCK, we also compared the performance of the novel algorithm with that of ABC, DE, LGA, HIGA and SODOCK. Our results indicate that ADHDOCK is superior to the other tested algorithms for the docking problem, in terms of docked energy and RMSD, success rate, convergence performance, data distribution, and hypothesis test.

Acknowledgments

This work was supported by the National Natural Science Foundation Program of China (61772124), the State Key Program of National Natural Science of China (61332014), the Fundamental Research Funds for the Central Universities under Grant 150402002 and Grant 150404008, and the Peak Discipline Construction of Computer Science and Technology under Grant 02190021821001.

Author Contributions

Boxin Guan and Changsheng Zhang conceived and designed the experiments; Boxin Guan, Changsheng Zhang, and Yuhai Zhao performed the experiments; Boxin Guan and Changsheng Zhang analyzed the data; Boxin Guan and Yuhai Zhao wrote the manuscript; and Boxin Guan revised the manuscript.

Conflicts of Interest

The authors declare no conflict of interest.

Abbreviations

ADHDOCKan efficient ABC_DE_based hybrid algorithm for protein–ligand docking
ABCartificial bee colony
DEdifferential evolution
HIGArunning history information guided genetic algorithm
PSOparticle swarm optimization
SODOCKswarm optimization for highly flexible protein–ligand docking
APPadaptive population partition
CADDcomputer aided drug design
SAsimulated annealing
GAgenetic algorithm
LGALamarckian genetic algorithm
RMSDRoot-mean-square deviation

References

  1. Bohlooli, F.; Sepehri, S.; Razzaghi-AsI, N. Response surface methodology in drug design: A case study on docking analysis of a potent antifungal fluconazole. Comput. Biol. Chem. 2017, 67, 158–173. [Google Scholar] [CrossRef] [PubMed]
  2. Antón, P.R.L.; Francisco, C.; Alejandro, P.; Belén, P.P.A. Deep Artificial Neural Networks and Neuromorphic Chips for Big Data Analysis: Pharmaceutical and Bioinformatics Applications. Int. J. Mol. Sci. 2016, 17, 1313–1338. [Google Scholar]
  3. Allen, S.E.; Dokholyan, N.V.; Bowers, A.A. Dynamic docking of conformationally constrained macrocycles: Methods and applications. ACS Chem. Biol. 2016, 11, 10–24. [Google Scholar] [CrossRef] [PubMed]
  4. Zou, Q.; Li, J.J.; Song, L.; Zeng, X.X.; Wang, G.H. Similarity computation strategies in the microRNA-disease network: A Survey. Brief. Funct. Genom. 2016, 15, 55–64. [Google Scholar] [CrossRef] [PubMed]
  5. Bjerrum, E.J. Machine learning optimization of cross docking accuracy. Comput. Biol. Chem. 2016, 62, 133–144. [Google Scholar] [CrossRef] [PubMed]
  6. Guedes, I.A.; de Magalhães, C.S.; Dardenne, L.E. Receptor-ligand molecular docking. Biophys. Rev. 2014, 6, 75–87. [Google Scholar] [CrossRef] [PubMed]
  7. Atkovska, K.; Samsonov, S.A.; Paszkowskirogacz, M.; Pisabarro, M.T. Multipose Binding in Molecular Docking. Int. J. Mol. Sci. 2014, 15, 2622–2645. [Google Scholar] [CrossRef] [PubMed]
  8. Feinstein, W.P.; Brylinski, M. Calculating an optimal box size for ligand docking and virtual screening against experimental and predicted binding pockets. J. Cheminform. 2015, 7, 18. [Google Scholar] [CrossRef] [PubMed]
  9. Zeng, X.X.; Liao, Y.L.; Liu, Y.S.; Zou, Q. Prediction and validation of disease genes using HeteSim Scores. IEEE ACM Trans. Comput. Biol. Bioinform. 2017, 14, 687–695. [Google Scholar] [CrossRef] [PubMed]
  10. Zhao, Y.H.; Wang, G.R.; Zhang, X.; Yu, J.X.; Wang, Z.H. Learning Phenotype Structure Using Sequence Model. IEEE Trans. Knowl. Data Eng. 2014, 26, 667–681. [Google Scholar] [CrossRef]
  11. Moitessier, N.; Englebienne, P.; Lee, D.; Lawandi, J.; Gorbeil, C.R. Towards the development of universal, fast and highly accurate docking/scoring methods: A long way to go. Br. J. Pharmacol. 2008, 153, 7–26. [Google Scholar] [CrossRef] [PubMed]
  12. Hu, X.; Balaz, S.; Shelver, W.H. A practical approach to docking of zinc metalloproteinase inhibitors. J. Mol. Graph. Model. 2004, 22, 293–307. [Google Scholar] [CrossRef] [PubMed]
  13. Huey, R.; Morris, G.M.; Olson, A.J.; Goodsell, D.S. Software news and update a semiempirical free energy force field with charge−based desolvation. J. Comput. Chem. 2006, 10, 1145–1152. [Google Scholar]
  14. Jain, A.N. Scoring functions for protein−ligand docking. Curr. Protein Pept. Sci. 2006, 7, 407–420. [Google Scholar] [PubMed]
  15. Muryshev, A.E.; Tarasov, D.N.; Butygin, A.V.; Butygina, O.V.; Aleksandrov, A.B.; Nikitin, S.M. A novel scoring function for molecular docking. J. Comput. Aided Mol. Des. 2003, 17, 597–605. [Google Scholar] [CrossRef] [PubMed]
  16. Ain, Q.U.; Aleksandrova, A.; Roessler, F.D.; Ballester, P.J. Machine−learning scoring functions to improve structure-based binding affinity prediction and virtual screening. Wiley. Interdiscip. Rev. Comput. Mol. Sci. 2015, 5, 405–424. [Google Scholar] [CrossRef] [PubMed]
  17. Jug, G.; Anderluh, M.; Tomašič, T. Comparative evaluation of several docking tools for docking small molecule ligands to DC-SIGN. J. Mol. Model. 2015, 21, 164–178. [Google Scholar] [CrossRef] [PubMed]
  18. Castro-Alvarez, A.; Costa, A.M.; Vilarrasa, J. The Performance of Several Docking Programs at Reproducing Protein-Macrolide-Like Crystal Structures. Molecules 2017, 22, 136. [Google Scholar] [CrossRef] [PubMed]
  19. Guo, L.Y.; Yan, Z.Q.; Zheng, X.L.; Hu, L.; Yang, Y.L.; Wang, J. A comparison of various optimization algorithms of protein-ligand docking programs by fitness accuracy. J. Mol. Model. 2014, 20. [Google Scholar] [CrossRef] [PubMed]
  20. Bharatham, N.; Bharatham, K.; Shelat, A.A.; Bashford, D. Ligand binding more prediction by docking: mdm2/mdmx inhibitors as a case study. J. Chem. Inf. Model. 2014, 54, 648–659. [Google Scholar] [CrossRef] [PubMed]
  21. Bernauer, J.; Azé, J.; Janin, J.; Poupon, A. A new protein–protein docking scoring function based on interface residue properties. Bioinformatics 2007, 23, 555–562. [Google Scholar] [CrossRef] [PubMed]
  22. Li, Z.F.; Gu, J.F.; Zhuan, H.Y.; Kang, L.; Zhao, X.Y.; Guo, Q. Adaptive molecular docking method baesd on information entropy genetic algorithm. Appl. Soft Comput. 2015, 26, 299–302. [Google Scholar] [CrossRef]
  23. Zhao, Y.H.; Yu, J.X.; Wang, G.R.; Chen, L.; Wang, B.; Yu, G. Maximal Subspace Coregulated Gene Clustering. IEEE Trans. Knowl. Data Eng. 2008, 20, 83–98. [Google Scholar] [CrossRef]
  24. Blum, C.; Puchinger, J.; Raidl, G.R.; Roli, A. Hybrid mataheuristics in combinatorial optimization: A survey. Appl. Soft Comput. 2011, 11, 4135–4151. [Google Scholar] [CrossRef]
  25. Lόpez-Camacho, E.; Godoy, M.J.; Garcỉa-Nieto, J.; Nebro, A.J.; Aldana-Montes, J.F. Solving molecular flexible docking problems with mataheuristics: A comparative study. Appl. Soft Comput. 2015, 28, 379–393. [Google Scholar] [CrossRef]
  26. Thomsen, R. Flexible ligand docking using evolutionary algorithms: Investigating the effects of variation operators and local search hybrids. Biosystems 2003, 72, 57–73. [Google Scholar] [CrossRef]
  27. Ng, M.C.; Fong, S.; Siu, S.W. PSOVina: The hybrid particle swarm optimization algorithm for protein–ligand docking. J. Bioinform. Comput. Biol. 2015, 13. [Google Scholar] [CrossRef] [PubMed]
  28. Uehara, S.; Fujimoto, K.J.; Tanaka, S. Protein-ligand docking using fitness learning-based artificial bee colony with proximity stimuli. Phys. Chem. Chem. Phys. 2015, 17, 16412–16417. [Google Scholar] [CrossRef] [PubMed]
  29. Goodsell, D.S.; Olson, A.J. Automated docking of substrates to proteins by simulated annealing. Proteins Struct. Funct. Genet. 1990, 8, 195–202. [Google Scholar] [CrossRef] [PubMed]
  30. Jones, G.; Willett, P.; Glen, R.C.; Leach, A.R.; Taylor, R. Development and validation of a genetic algorithm for flexible docking. J. Mol. Biol. 1997, 267, 727–748. [Google Scholar] [CrossRef] [PubMed]
  31. Fuhrmann, J.; Rurainsk, A.; Lenhof, H.P.; Neumann, D. A new Lamarckian genetic algorithm for flexible ligang-receptor docking. J. Comput. Chem. 2010, 31, 1911–1918. [Google Scholar] [PubMed]
  32. Guan, B.; Zhang, C.; Zhao, Y. HIGA: A Running History Information Guided Genetic Algorithm for Protein–Ligand Docking. Molecules 2017, 22, 2233. [Google Scholar] [CrossRef] [PubMed]
  33. Chen, H.M.; Liu, B.F.; Huang, H.L.; Hwang, S.F.; Ho, S.Y. SODOCK: Swarm optimization for highly flexible protein–ligand docking. J. Comput. Chem. 2007, 28, 612–623. [Google Scholar] [CrossRef] [PubMed]
  34. KKaraboga, D.; Basturk, B. A powerful and efficient algorithm for numerical function optimization: Artificial bee colony (ABC) algorithm. J. Glob. Optim. 2007, 39, 459–471. [Google Scholar] [CrossRef]
  35. Storn, R.; Price, K. Differential Evolution—A Simple and Efficient Heuristic for global Optimization over Continuous Spaces. J. Glob. Optim. 1997, 11, 341–359. [Google Scholar] [CrossRef]
  36. Morris, G.M.; Huey, R.; Lindstrom, W.; Sanner, M.F.; Belew, R.K.; Goodsell, D.S.; Olson, A.J. AutoDock4 and AutoDockTools4: Automated docking with selective receptor flexibility. J. Comput. Chem. 2009, 30, 2785–2791. [Google Scholar] [CrossRef] [PubMed]
  37. Wang, R.X.; Fang, X.L.; Lu, Y.P.; Yang, C.Y.; Wang, S.M. The PDBbind database: Methodologies and updates. J. Med. Chem. 2005, 48, 4111–4119. [Google Scholar] [CrossRef] [PubMed]
Figure 1. Rate of the lowest energy and the smallest root-mean-square deviation (RMSD).
Figure 1. Rate of the lowest energy and the smallest root-mean-square deviation (RMSD).
Ijms 19 01181 g001
Figure 2. Convergence diagrams of six tested algorithms.
Figure 2. Convergence diagrams of six tested algorithms.
Ijms 19 01181 g002
Figure 3. Box plots of six tested algorithms.
Figure 3. Box plots of six tested algorithms.
Ijms 19 01181 g003
Figure 4. Block diagram of ADHDOCK.
Figure 4. Block diagram of ADHDOCK.
Ijms 19 01181 g004
Figure 5. Pseudocode of ABC module.
Figure 5. Pseudocode of ABC module.
Ijms 19 01181 g005
Figure 6. Pseudocode of DE module.
Figure 6. Pseudocode of DE module.
Ijms 19 01181 g006
Figure 7. Pseudocode of APP module.
Figure 7. Pseudocode of APP module.
Ijms 19 01181 g007
Table 1. Parameters of six tested algorithms.
Table 1. Parameters of six tested algorithms.
ADHDOCK
Number of food sources50
Number of limitation100
Crossover rate 0.80
Scalar number 0.90
Initial partition rate0.50
ABC
Number of food sources50
Number of limitation100
DE
Crossover rate 0.80
Scalar number 0.90
LGA
Mutation rate0.02
Crossover rate 0.80
Maximal iterations of local search300
HIGA
Mutation rate0.02
Crossover rate 0.80
Maximal iterations of local search300
Number of elitists 5
equilibrium factor0.60
SODOCK
Number of immediate neighbors4
Cognitive weight2.00
Social weight2.00
Maximal iterations of local search300
Table 2. root-mean-square deviation (RMSD) results of the first predicted conformations.
Table 2. root-mean-square deviation (RMSD) results of the first predicted conformations.
AlgorithmSuccess CaseAverage RMSD (All Cases)Average RMSD (RMSD < 2.0 Å)
ABC323.28 ± 1.321.84 ± 0.42
DE353.21 ± 1.371.82 ± 0.42
LGA342.55 ± 1.281.68 ± 0.40
HIGA421.87 ± 0.991.36 ± 0.51
SODOCK372.92 ± 1.081.77 ± 0.39
ADHDOCK461.68 ± 0.891.19 ± 0.33
Table 3. The lowest energy and the smallest RMSD of the best predicted conformations.
Table 3. The lowest energy and the smallest RMSD of the best predicted conformations.
PDBTorADHDOCKABCDELGAHIGASODOCK
EnergyRMSDEnergyRMSDEnergyRMSDEnergyRMSDEnergyRMSDEnergyRMSD
3ptb0−13.251.65−10.951.97−11.231.80−11.531.92−12.221.95−11.572.00
1hdy0−10.400.80−8.801.47−8.241.05−8.701.78−9.170.98−9.221.49
1aha1−18.200.82−13.951.85−15.241.22−16.100.45−16.150.90−14.951.44
1dbb1−12.380.35−11.880.88−11.290.55−11.000.72−11.170.80−11.760.88
1mrg1−8.550.30−7.850.85−7.481.25−6.160.40−7.520.33−8.141.20
1ulb1−7.500.72−5.360.80−5.200.40−6.280.74−7.070.35−6.750.50
1tnl2−9.490.36−5.800.68−6.280.52−6.830.73−8.080.62−6.780.88
2phh2−9.210.54−6.981.30−6.951.15−7.540.55−8.200.65−8.160.34
3hvt2−17.590.55−15.950.68−15.290.47−17.220.33−18.190.45−16.780.58
1phg3−10.280.38−7.951.67−7.901.33−8.560.80−9.580.60−9.151.34
2cht3−10.371.55−7.871.24−8.161.16−8.890.95−9.101.34−8.771.33
2ctc3−9.250.78−6.401.66−6.701.67−7.700.89−8.900.80−8.521.21
4cts3−9.980.55−6.940.95−6.790.68−7.610.75−8.640.48−9.101.20
1abe4−10.100.39−7.990.95−8.151.03−8.750.60−9.440.75−8.730.80
1hsl4−15.150.56−11.251.36−11.971.60−12.100.56−13.170.66−12.901.23
2mcp4−10.351.05−7.851.64−8.101.10−8.221.33−9.351.15−7.721.42
1stp5−16.100.35−13.201.58−13.130.92−13.371.65−13.900.85−13.521.00
1tni5−9.120.74−6.821.25−6.790.67−8.021.65−8.610.90−7.561.34
2lgs5−9.230.71−7.251.10−7.110.76−7.300.77−7.831.22−7.181.50
1acm6−11.610.30−9.950.33−9.280.40−10.100.37−10.870.33−10.110.45
2cgr6−18.800.70−14.250.97−14.140.80−16.000.76−17.800.75−15.740.77
6rnt6−9.320.55−8.951.45−8.901.65−9.130.70−9.620.50−9.121.95
1lst7−16.130.36−12.220.96−12.430.95−13.750.55−15.220.46−14.720.66
2cmd7−15.140.42−12.700.65−12.420.62−12.260.78−14.050.82−13.280.80
4dfr7−13.121.04−10.211.97−10.151.20−11.441.23−12.821.56−11.741.67
1ett8−14.901.20−12.751.65−12.401.70−13.891.38−13.941.40−12.081.54
1tka8−14.020.88−10.331.17−9.891.20−10.230.98−11.601.02−10.251.15
8gch8−14.550.70−10.850.82−11.301.15−11.881.72−12.551.66−11.290.98
1hri9−12.031.13−10.131.67−9.981.56−10.211.87−11.021.18−10.311.68
1trk9−14.500.80−11.250.65−11.350.62−11.440.65−13.050.50−11.490.60
2sim9−18.250.90−15.931.10−15.501.06−15.610.95−16.241.08−15.051.06
1eap10−14.051.25−12.851.21−12.181.30−13.081.27−14.550.98−13.771.10
1fkg10−17.511.13−15.151.20−15.361.22−15.471.36−16.261.35−15.081.38
1hvr10−33.400.55−28.650.85−29.380.78−30.850.62−31.500.80−29.290.68
1lna10−15.621.10−13.851.82−13.281.67−13.501.75−15.191.29−13.821.22
1nco11−21.700.93−20.540.77−20.850.82−21.200.65−22.750.55−20.600.92
4hmg11−10.511.13−9.951.60−10.001.28−10.091.70−10.211.65−10.081.36
1bbp12−26.900.45−24.480.65−23.380.78−23.560.52−25.100.67−24.150.72
1cdg12−8.951.05−7.131.12−7.721.17−8.221.94−8.901.65−8.451.80
1rds12−18.110.75−16.340.92−15.930.86−16.240.80−17.950.77−16.030.67
1htf13−22.771.02−19.801.80−20.121.48−20.691.33−21.171.20−21.791.42
1glq14−9.831.15−9.231.58−8.531.29−9.271.87−9.651.25−8.831.90
1hpv14−16.721.96−15.671.91−15.111.92−15.481.88−17.291.60−15.681.75
1qbt14−26.750.80−22.691.29−22.931.27−24.201.09−25.200.88−24.631.04
1lic15−12.770.85−10.011.36−9.801.54−12.171.80−13.030.96−12.551.08
1tmn15−11.130.90−9.580.65−9.971.18−10.111.20−10.710.95−10.621.95
4phv15−22.441.38−15.621.44−16.081.53−19.181.26−19.890.45−21.780.90
1epo17−20.330.80−16.071.77−17.181.62−16.801.67−19.131.23−17.650.93
1aaq20−23.101.10−15.551.20−16.601.75−17.441.70−20.661.05−19.801.34
1hiv23−25.600.55−15.451.06−16.200.73−17.951.73−21.251.21−19.741.55
Table 4. The lowest energy and the smallest RMSD of the best predicted conformations.
Table 4. The lowest energy and the smallest RMSD of the best predicted conformations.
PDBABCDELGAHIGASODOCK
3ptb4.49 × 10−83.17 × 10−42.15 × 10−37.12 × 10−33.32 × 10−4
1hdy1.18 × 10−42.39 × 10−93.04 × 10−62.50 × 10−31.02 × 10−3
1aha6.41 × 10−114.13 × 10−75.14 × 10−53.76 × 10−44.31 × 10−10
1dbb2.27 × 10−31.03 × 10−34.15 × 10−43.25 × 10−41.43 × 10−3
1mrg2.19 × 10−46.37 × 10−52.43 × 10−84.57 × 10−41.42 × 10−1
1ulb3.91 × 10−72.31 × 10−88.15 × 10−44.35 × 10−32.82 × 10−4
1tnl4.93 × 10−103.86 × 10−92.62 × 10−82.14 × 10−55.90 × 10−8
2phh1.76 × 10−52.59 × 10−53.98 × 10−41.45 × 10−32.08 × 10−3
3hvt8.99 × 10−67.34 × 10−74.12 × 10−29.98 × 10−13.06 × 10−8
1phg3.77 × 10−66.33 × 10−63.37 × 10−41.51 × 10−19.12 × 10−2
2cht1.74 × 10−82.78 × 10−74.09 × 10−52.74 × 10−46.32 × 10−5
2ctc4.86 × 10−83.96 × 10−89.25 × 10−47.46 × 10−33.74 × 10−4
4cts3.14 × 10−81.19 × 10−93.82 × 10−62.39 × 10−47.22 × 10−3
1abe3.38 × 10−124.31 × 10−102.35 × 10−63.55 × 10−32.04 × 10−6
1hsl1.19 × 10−103.08 × 10−81.05 × 10−65.32 × 10−43.91 × 10−5
2mcp4.15 × 10−99.30 × 10−63.21 × 10−62.86 × 10−48.82 × 10−9
1stp2.42 × 10−71.11 × 10−78.25 × 10−63.32 × 10−53.45 × 10−6
1tni3.14 × 10−81.43 × 10−83.71 × 10−58.46 × 10−31.58 × 10−5
2lgs2.37 × 10−51.33 × 10−92.54 × 10−84.52 × 10−52.28 × 10−4
1acm1.42 × 10−82.12 × 10−95.18 × 10−43.15 × 10−24.12 × 10−4
2cgr3.39 × 10−71.07 × 10−93.95 × 10−42.14 × 10−27.38 × 10−4
6rnt3.51 × 10−44.52 × 10−42.49 × 10−19.82 × 10−11.01 × 10−1
1lst1.78 × 10−102.91 × 10−83.53 × 10−55.54 × 10−32.32 × 10−4
2cmd4.58 × 10−79.12 × 10−72.38 × 10−81.13 × 10−33.35 × 10−5
4dfr1.26 × 10−81.09 × 10−97.74 × 10−42.52 × 10−31.34 × 10−4
1ett2.29 × 10−68.17 × 10−71.16 × 10−47.70 × 10−31.02 × 10−8
1tka4.75 × 10−83.92 × 10−102.97 × 10−73.63 × 10−52.18 × 10−7
8gch2.48 × 10−68.19 × 10−54.08 × 10−51.40 × 10−49.03 × 10−5
1hri4.12 × 10−43.88 × 10−56.11 × 10−22.54 × 10−18.42 × 10−2
1trk1.61 × 10−85.30 × 10−73.76 × 10−72.96 × 10−31.18 × 10−7
2sim3.29 × 10−53.97 × 10−51.05 × 10−64.52 × 10−27.12 × 10−6
1eap1.54 × 10−42.98 × 10−63.67 × 10−38.56 × 10−11.52 × 10−1
1fkg4.92 × 10−53.73 × 10−59.13 × 10−41.19 × 10−49.62 × 10−6
1hvr1.01 × 10−72.92 × 10−51.93 × 10−48.52 × 10−38.32 × 10−5
1lna2.29 × 10−55.37 × 10−69.10 × 10−56.13 × 10−33.40 × 10−5
1nco1.02 × 10−26.13 × 10−22.24 × 10−18.12 × 10−15.46 × 10−2
4hmg6.15 × 10−62.23 × 10−58.75 × 10−41.40 × 10−41.07 × 10−5
1bbp1.07 × 10−58.13 × 10−72.82 × 10−74.94 × 10−32.85 × 10−5
1cdg8.32 × 10−61.02 × 10−67.21 × 10−47.16 × 10−21.14 × 10−4
1rds3.91 × 10−44.27 × 10−76.15 × 10−46.26 × 10−21.08 × 10−5
1htf2.24 × 10−76.27 × 10−61.80 × 10−63.42 × 10−41.17 × 10−4
1glq7.59 × 10−58.18 × 10−82.60 × 10−51.51 × 10−43.58 × 10−7
1hpv7.12 × 10−23.92 × 10−46.15 × 10−28.15 × 10−19.33 × 10−2
1qbt8.04 × 10−92.71 × 10−91.16 × 10−62.12 × 10−45.72 × 10−4
1lic2.43 × 10−76.39 × 10−78.18 × 10−36.88 × 10−15.89 × 10−2
1tmn2.06 × 10−76.18 × 10−72.93 × 10−63.52 × 10−49.86 × 10−4
4phv1.35 × 10−115.13 × 10−94.75 × 10−66.56 × 10−61.12 × 10−4
1epo7.87 × 10−101.03 × 10−63.42 × 10−81.04 × 10−32.77 × 10−6
1aaq1.02 × 10−105.52 × 10−81.24 × 10−73.18 × 10−56.19 × 10−7
1hiv8.91 × 10−94.43 × 10−86.88 × 10−72.86 × 10−41.58 × 10−6

Share and Cite

MDPI and ACS Style

Guan, B.; Zhang, C.; Zhao, Y. An Efficient ABC_DE_Based Hybrid Algorithm for Protein–Ligand Docking. Int. J. Mol. Sci. 2018, 19, 1181. https://doi.org/10.3390/ijms19041181

AMA Style

Guan B, Zhang C, Zhao Y. An Efficient ABC_DE_Based Hybrid Algorithm for Protein–Ligand Docking. International Journal of Molecular Sciences. 2018; 19(4):1181. https://doi.org/10.3390/ijms19041181

Chicago/Turabian Style

Guan, Boxin, Changsheng Zhang, and Yuhai Zhao. 2018. "An Efficient ABC_DE_Based Hybrid Algorithm for Protein–Ligand Docking" International Journal of Molecular Sciences 19, no. 4: 1181. https://doi.org/10.3390/ijms19041181

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