Abstract
Proteins, composed of amino acids, are crucial for a wide range of biological functions. Proteins have various interaction sites, one of which is the protein-ligand binding site, essential for molecular interactions and biochemical reactions. These sites enable proteins to bind with other molecules, facilitating key biological functions. Accurate prediction of these binding sites is pivotal in computational drug discovery, helping to identify therapeutic targets and facilitate treatment development. Machine learning has made significant contributions to this field by improving the prediction of protein-ligand interactions. This paper reviews studies that use machine learning to predict protein-ligand binding sites from sequence data, focusing on recent advancements. The review examines various embedding methods and machine learning architectures, addressing current challenges and the ongoing debates in the field. Additionally, research gaps in the existing literature are highlighted, and potential future directions for advancing the field are discussed. This study provides a thorough overview of sequence-based approaches for predicting protein-ligand binding sites, offering insights into the current state of research and future possibilities.
1 Introduction
Protein-ligand binding sites are specific regions on proteins where various ligands—including small organic molecules, peptides, nucleotides, and proteins—can attach or bind (Zhao et al., 2020). Although experimental laboratory methods identify these regions with the highest accuracy, they are generally costly and time-consuming (). Therefore, computational approaches to drug discovery have become increasingly important. These computational methods offer distinct advantages by reducing costs and speeding up identifying and optimizing potential drug candidates (). Predicting protein-ligand binding sites is a critical component of computational drug discovery, essential for pinpointing viable drug targets and advancing the development of new therapeutics (Stank et al., 2016). Recent advancements in machine learning have significantly improved this field by introducing sophisticated computational techniques to analyze the complex interactions between proteins and ligands (Xia et al., 2024). While traditional methods based on geometry, energy, or templates have been successful, deep learning has recently achieved much better results (). Deep learning models can learn complex patterns directly from raw data and generalize better across diverse datasets. Protein ligand binding sites prediction in computational models is divided into two main categories, based on input type: structure-based and sequence-based (; ).
Structure-based methods in computational drug discovery (SBDD) utilize detailed knowledge of the spatial information of proteins and integrate chemical properties using methods such as voxel-grid techniques (Sunseri and Koes, 2020). Figure 1 presents a 3D view of the 6Y3C protein and its associated ligands (). The number of protein-ligand binding sites on a protein can vary widely, depending on the specific protein and its function. In Figure 1A, the regions highlighted in yellow, blue, and purple represent protein-ligand binding sites. Figure 1B focuses on one of the binding sites shown in Figure 1A, offering a closer view of how the ligand interacts with the binding pocket. Figure 1C highlights the specific interactions between the ligand and the surrounding amino acid residues. In recent years, deep learning techniques used to identify these regions have often approached the problem as either image segmentation or object detection within structure-based frameworks. For instance, studies like RefinePocket (), Kalasanty (Stepniewska-Dziubinska et al., 2020), PointSite (Yan et al., 2022), and DeepPocket () use image segmentation techniques for binding site prediction, while RecurPocket () and FRSite () employ object detection techniques. Structure-based approaches depend on high-resolution 3D protein structures from X-ray crystallography or NMR spectroscopy (). These methods face challenges such as reliance on accurate structures, static views of dynamic proteins, and high time and cost demands. AlphaFold () has revolutionized the determination of 3D protein structures, significantly reducing reliance on experimental methods. However, drug discovery still primarily depends on 1D amino acid sequence data for critical tasks. Advancing approaches like AlphaFold requires a deeper understanding of the 1D sequence data used as input. This topic is further explored in the Discussion and Analysis section.
FIGURE 1
Sequence-based methods utilize one-dimensional (1D) amino acid sequence data as input. The 1D sequence is a direct representation of the protein’s genetic blueprint and is experimentally measurable with high reliability (
In this paper, we focus on sequence-based protein-ligand binding site prediction studies that employ machine learning techniques. As seen in Table 1, we have summarized these studies by focusing on their feature extraction techniques, and machine learning models. The Analysis and Discussion section provides a detailed evaluation of the machine learning models listed in Table 1, highlighting the strengths, limitations, and research gaps of sequence-based approaches. Additionally, potential future directions are outlined in the Future Directions section.
TABLE 1
| Model | Feature extraction methods | Machine learning modela | Dataset | Evaluation metric | Accuracyb | Year |
|---|---|---|---|---|---|---|
| SCRIBER (Zhang and Kurgan, 2019) | ASAquick, HHblits, ANCHOR, PSIPRED, AAindex | Logistic Regression | BioLip, UniProt, Pfam | MCC | 0.230 | 2019 |
| DeepCSeqSite ( | PSSpred, Anglor, Jensen-Shannon divergence (JSD), Relative entropy | Deep Convolutional Neural Network | BioLip | MCC | 0.496 | 2019 |
| DELIA (Xia et al., 2020) | PSI-BLAST, HHblits, SCRATCH-1D, S-SITE | ResNet + BiLSTM | BioLip, ATPBind | MCC | 0.469 | 2020 |
| HoTs ( | 1D-CNN, hierarchical recurrent neural network | CNN + Transformers | scPDB, PDBbind, COACH420, HOLO4k | Top-n success rate (%) | 66.3 ± 0.9 | 2022 |
| Birds ( | DeepMSA, PSIPRED, SOLVPRED | ResNet | scPDB | MCC | 0.568 | 2022 |
| T5 GAT Ensemble ( | ProtT5 | Graph Neural Network + Attention | BioLip, RCSB | MCC | 0.592 | 2023 |
| LaMPSite (Zhang and Xie, 2023) | ESM-2, RDKit | Pooling + Clustering | scPDB, COACH420 | Top-n success rate | 66.02 | 2023 |
| Pseq2Sites (Seo et al., 2024) | ProtTrans | CNN + Attention | COACH420, HOLO4k, CSAR | Top-n success rate | 96.8 | 2024 |
| Seq-InSite ( | ProtT5, MSA | MLP + LSTM | PiSite | MCC | 0.462 | 2024 |
Sequence-based machine learning models for predicting protein-ligand binding sites.
The Machine Learning Model column catalogs foundational models that constitute the core framework of the research presented, although the architecture of these studies may incorporate additional models.
The reported results are sourced from their own publications. Please note that direct comparisons between these values may not be valid due to differences in methodologies, preprocessing steps, and testing datasets. If separate results were provided for each ligand type, their average was calculated.
2 Sequence-based computational methods
Proteins are composed of a set of amino acids, each represented by a unique symbol (e.g., “A” for Alanine, “G” for Glycine). Similar to human language, which consists of sequences of words that convey meaning, protein sequences are structured in specific patterns that hold significant biological information. To analyze these sequences, feature engineering techniques are employed to derive meaningful attributes from the data. Machine learning models are then trained on these features to predict protein-ligand interactions or other relevant biological properties.
2.1 Feature engineering
Sequence-based methods leverage sequence data to capture biochemical and biophysical properties without direct 3D structural information. Multiple review papers provide a detailed overview of embedding approaches for protein sequence-based structures (
Transformer-based models (Vaswani et al., 2017) have gained popularity for applying linguistic analogies to protein sequences. For example, ProtTrans (
In addition to these protein language models, various other methods can be employed to create feature maps from protein sequences. These techniques include 1D-CNN, calculating relative solvent accessibility (RSA), position-specific score matrix (PSSM), secondary structure (SS), token embeddings, segment embeddings, one-hot encoding, conservation scores (CS), amino acid composition (AAC), physiochemical properties, and more (
2.2 Methodological approaches
Table 1 lists studies that focus on sequence-based protein binding site prediction. In this section, we provide an overview of each model included in Table 1, highlighting the feature extraction techniques employed, the specific machine learning algorithms applied.
SCRIBER (Zhang and Kurgan, 2019) converts input protein sequences into profiles representing structural, evolutionary, and physicochemical properties. These profiles include relative solvent accessibility (RSA) values predicted by ASAquick (
DeepCSeqSite (
DELIA (Xia et al., 2020) predicts protein–ligand binding residues using a hybrid model of convolutional neural networks (CNNs) (
HoTS (
Birds (
T5 GAT Ensemble (
LaMPSite (Zhang and Xie, 2023) predicts ligand binding sites using protein sequences and ligand molecular graphs. This approach incorporates residue-level embeddings from the ESM-2 protein language model (
Pseq2Sites (Seo et al., 2024) uses ProtTrans, a transformer-based model, to extract amino acid-level embeddings for protein sequence analysis. Subsequently, 1D-CNNs were utilized to extract local features from the resulting embedding sequence, followed by the application of methods employing position-based attention mechanisms to capture long-distance contextual information.
Seq-InSite (
Overall, accurate prediction of protein-ligand binding sites is a crucial step in the drug discovery pipeline. Beyond theoretical predictions, these methods provide actionable insights that support drug target identification, lead optimization, and ligand design. Once protein binding sites are identified, these predictions lead to a variety of applications, including virtual screening (
3 Analysis and discussion
This section discusses four main topics: advancements in extracting features from protein sequences, the limitations of sequence-based methods with an analysis of the approaches listed in Table 1, the advantages of hybrid methods that combine sequence- and structure-based techniques, and a review of the datasets used for testing, as well as tools like AlphaFold that are employed for protein folding predictions. Each topic highlights critical aspects of the methodologies and their contributions to improving protein-ligand binding site predictions.
The models in Table 1 demonstrate a broad range of feature extraction techniques, spanning traditional evolution- and structure-based encodings to advanced protein language models (pLMs). 1D-CNNs are effective at extracting local motifs from protein sequences but may lose global context when motifs are spread across non-consecutive regions (
One key advantage of sequence-based methods is their computational efficiency. For instance, on the well-known COACH420 dataset, sequence-based protein-ligand binding site prediction methods achieved significantly faster execution times: Pseq2Sites completed predictions in 1.07 s, Birds in 3.97 s, DeepCSeqSite in 11.13 s, and HoTs in 51.84 s. In contrast, structure-based methods were considerably slower, with DeepPocket taking 894.28 s, DeepSurf 2436.76 s, and P2Rank 914.61 s (Seo et al., 2024). Although sequence-based methods are computationally efficient, they lack the spatial context needed to identify complex binding interactions, such as those involving residues across multiple protein chains. By analyzing each chain individually and then combining the results, traditional sequence-based methods often miss critical relationships, limiting their accuracy in predicting binding sites. The studies in Table 1 highlight distinct characteristics of various models. For instance, SCRIBER incorporates over 1,000 input features and relies on feature elimination techniques to manage complexity, though it remains susceptible to overfitting. SCRIBER reported a Matthews correlation coefficient (MCC) (
Hybrid approaches, which integrate both sequence-based and structural features, have emerged as powerful strategies to enhance the accuracy of protein function prediction tasks. The T5-GAT Ensemble, a hybrid model, combines sequence and structural features of proteins. While the sequence-based MLP model achieves an MCC of 0.54, the hybrid model improves this to 0.59 by incorporating structural features. Similarly, DELIA, tested on five ligand types, demonstrated that the hybrid architecture outperformed sequence-based models in MCC scores for all ligand types. Another method, LaMPSite, predicts ligand binding sites by utilizing both protein sequences and ligand molecular graphs. The ablation study for LaMPSite indicates a decrease in accuracy when the interaction module, which combines the benefits of both methods, is omitted. For this study, the reported success rate in terms of DCA (Distance Cutoff Accuracy) is 66.02%.
The choice of datasets in protein-ligand binding site prediction plays a crucial role in developing and evaluating computational models. To ensure fair testing, addressing data leakage is essential, especially the similarity between training and test datasets. For instance, LaMPSite excludes scPDB structures with more than 50% sequence identity or 0.9 ligand similarity and removes proteins from COACH420. Pseq2Sites takes additional steps by using unseen test datasets and filtering proteins with ≤40% structural similarity for unbiased evaluation. Studies like HoTS further promote fair analysis by reporting results at various similarity thresholds.
Protein folding software such as AlphaFold can facilitate hybrid approaches, certain limitations persist. AlphaFold2 (AF2) relies on patterns extracted from known protein folds rather than understanding the physical and chemical basis of proteins (
Overall, the paper highlights the strengths and limitations of both 3D and 1D approaches, concluding in the discussion section that hybrid methodologies represent a promising direction for future research.
4 Future directions
Future advancements in protein binding site prediction are likely to focus on integrating sequence-based and structure-based data to improve model accuracy, particularly for complex binding sites that depend on 3D spatial context. Hybrid models that combine these two types of data show promise in addressing limitations of sequence-only methods, such as identifying distant allosteric sites or inter-chain interactions. Another promising direction involves the development of transformer-based models specifically tailored for protein-ligand interactions, utilizing advanced embeddings to capture intricate sequence patterns and dependencies. Recently, GPT-based (
5 Conclusion
The prediction of protein-ligand binding sites is crucial for advancing drug discovery and development, as it enables the identification of potential drug targets and the design of more effective therapeutics. Accurate prediction methods can significantly streamline the drug discovery process, reducing the time and cost associated with experimental validation. Our study reviews various sequence-based approaches for predicting protein-ligand binding sites using machine learning techniques in computational drug discovery. Our examination explores the models, focusing on their embedding methods and deep learning architectures, and discusses the challenges and future directions associated with sequence-based methods. Our study aims to serve as a comprehensive guide for sequence-based prediction of protein-ligand binding sites, providing a thorough understanding of the existing literature within a single paper.
Statements
Author contributions
OV: Conceptualization, Data curation, Formal Analysis, Investigation, Resources, Writing–original draft, Writing–review and editing. LJ: Project administration, Supervision, Validation, Writing–original draft, Writing–review and editing.
Funding
The author(s) declare that no financial support was received for the research, authorship, and/or publication of this article.
Acknowledgments
The authors would like to sincerely thank Dr. Lurong Pan for her valuable guidance and support throughout this study. We also extend our gratitude to Recep Tayyip Erdogan University.
Conflict of interest
The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.
Generative AI statement
The authors declare that no Generative AI was used in the creation of this manuscript.
Publisher’s note
All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article, or claim that may be made by its manufacturer, is not guaranteed or endorsed by the publisher.
References
1
AbramsonJ.AdlerJ.DungerJ.EvansR.GreenT.PritzelA.et al (2024). Accurate structure prediction of biomolecular interactions with AlphaFold 3. Nature630, 493–500. 10.1038/s41586-024-07487-w
2
AgarwalV.McShanA. C. (2024). The power and pitfalls of AlphaFold2 for structure prediction beyond rigid globular proteins. Nat. Chem. Biol.20 (8), 950–959. 10.1038/s41589-024-01638-w
3
AggarwalR.GuptaA.ChelurV.JawaharC.PriyakumarU. D. (2021). DeepPocket: ligand binding site detection and segmentation using 3D convolutional neural networks. J. Chem. Inf. Model.62 (21), 5069–5079. 10.1021/acs.jcim.1c00799
4
AlfaroJ. A.BohländerP.DaiM.FiliusM.HowardC. J.Van KootenX. F.et al (2021). The emerging landscape of single-molecule protein sequencing technologies. Nat. methods18 (6), 604–617. 10.1038/s41592-021-01143-1
5
AlleyE. C.KhimulyaG.BiswasS.AlQuraishiM.ChurchG. M. (2019). Unified rational protein engineering with sequence-based deep representation learning. Nat. methods16 (12), 1315–1322. 10.1038/s41592-019-0598-1
6
AsgariE.MofradM. R. (2015). Continuous distributed representation of biological sequences for deep proteomics and genomics. PloS one10 (11), e0141287. 10.1371/journal.pone.0141287
7
BoutetE.LieberherrD.TognolliM.SchneiderM.BairochA. (2007). “UniProtKB/Swiss-Prot: the manually annotated section of the UniProt KnowledgeBase,” in Plant bioinformatics: methods and protocols (Springer), 89–112.
8
BrownT.MannB.RyderN.SubbiahM.KaplanJ. D.DhariwalP.et al (2020). Language models are few-shot learners. Adv. neural Inf. Process. Syst.33, 1877–1901. 10.48550/arXiv.2005.14165
9
BuchanD. W.MinneciF.NugentT. C.BrysonK.JonesD. T. (2013). Scalable web services for the PSIPRED protein analysis workbench. Nucleic acids Res.41 (W1), W349–W357. 10.1093/nar/gkt381
10
BuelG. R.WaltersK. J. (2022). Can AlphaFold2 predict the impact of missense mutations on structure?Nat. Struct. and Mol. Biol.29 (1), 1–2. 10.1038/s41594-021-00714-2
11
CarugoO. (2023). pLDDT values in AlphaFold2 protein models are unrelated to globular protein local flexibility. Crystals13 (11), 1560. 10.3390/cryst13111560
12
ChelurV. R.PriyakumarU. D. (2022). Birds-binding residue detection from protein sequences using deep resnets. J. Chem. Inf. Model.62 (8), 1809–1818. 10.1021/acs.jcim.1c00972
13
ChengJ.RandallA. Z.SweredoskiM. J.BaldiP. (2005). SCRATCH: a protein structure and structural feature prediction server. Nucleic acids Res.33 (Suppl. l_2), W72–W76. 10.1093/nar/gki396
14
ChiccoD.JurmanG. (2020). The advantages of the Matthews correlation coefficient (MCC) over F1 score and accuracy in binary classification evaluation. BMC genomics21, 6–13. 10.1186/s12864-019-6413-7
15
CramerJ. S. (2002). The origins of logistic regression, tinbergen Institute working paper, no. 2002-119/4. 10.2139/ssrn.360300
16
CuiY.DongQ.HongD.WangX. (2019). Predicting protein-ligand binding residues with deep convolutional neural networks. BMC Bioinforma.20, 93–12. 10.1186/s12859-019-2672-1
17
DesaphyJ.BretG.RognanD.KellenbergerE. (2015). sc-PDB: a 3D-database of ligandable binding sites—10 years on. Nucleic acids Res.43 (D1), D399–D404. 10.1093/nar/gku928
18
DosztányiZ.MészárosB.SimonI. (2009). ANCHOR: web server for predicting protein binding regions in disordered proteins. Bioinformatics25 (20), 2745–2746. 10.1093/bioinformatics/btp518
19
DunbarJ. B.JrSmithR. D.Damm-GanametK. L.AhmedA.EspositoE. X.DelpropostoJ.et al (2013). CSAR data set release 2012: ligands, affinities, complexes, and docking decoys. J. Chem. Inf. Model.53 (8), 1842–1852. 10.1021/ci4000486
20
ElnaggarA.HeinzingerM.DallagoC.RehawiG.WangY.JonesL.et al (2021). Prottrans: toward understanding the language of life through self-supervised learning. IEEE Trans. pattern analysis Mach. Intell.44 (10), 7112–7127. 10.1109/tpami.2021.3095381
21
FaraggiE.ZhouY.KloczkowskiA. (2014). Accurate single‐sequence prediction of solvent accessible surface area using local and global features. Proteins Struct. Funct. Bioinforma.82 (11), 3170–3176. 10.1002/prot.24682
22
FinnR. D.BatemanA.ClementsJ.CoggillP.EberhardtR. Y.EddyS. R.et al (2014). Pfam: the protein families database. Nucleic acids Res.42 (D1), D222–D230. 10.1093/nar/gkt1223
23
GagliardiL.RaffoA.FugacciU.BiasottiS.RocchiaW.HuangH.et al (2022). SHREC 2022: protein–ligand binding site recognition. Comput. and Graph.107, 20–31. 10.1016/j.cag.2022.07.005
24
GamouhH.HokszaD.NovotnyM. (2023). Hybrid protein-ligand binding residue prediction with protein language models: does the structure matter?bioRxiv. 2023.08. 11.553028.
25
GuoY.WuJ.MaH.WangS.HuangJ. (2021). Comprehensive study on enhancing low-quality position-specific scoring matrix with deep learning for accurate protein structure property prediction: using bagging multiple sequence alignment learning. J. Comput. Biol.28 (4), 346–361. 10.1089/cmb.2020.0416
26
GuptaR.SrivastavaD.SahuM.TiwariS.AmbastaR. K.KumarP. (2021). Artificial intelligence to deep learning: machine intelligence approach for drug discovery. Mol. Divers.25, 1315–1360. 10.1007/s11030-021-10217-3
27
HeK.ZhangX.RenS.SunJ. (2016). “Deep residual learning for image recognition,” in Proceedings of the IEEE conference on computer vision and pattern recognition, Las Vegas, NV, USA, June 27 2016–June 30 2016, 770–778.
28
HeXh.LiJ. R.ShenS. Y.XuH. E. (2024). AlphaFold3 versus experimental structures: assessment of the accuracy in ligand-bound G protein-coupled receptors. Acta Pharmacol. Sin. 10.1038/s41401-024-01429-y
29
HeinzingerM.ElnaggarA.WangY.DallagoC.NechaevD.MatthesF.et al (2019). Modeling aspects of the language of life through transfer-learning protein sequences. BMC Bioinforma.20, 723. 10.1186/s12859-019-3220-8
30
HigurashiM.IshidaT.KinoshitaK. (2009). PiSite: a database of protein interaction sites using multiple binding states in the PDB. Nucleic acids Res.37 (Suppl. l_1), D360–D364. 10.1093/nar/gkn659
31
HochreiterS.SchmidhuberJ. (1997). Long short-term memory. Neural Comput. MIT-Press9, 1735–1780. 10.1162/neco.1997.9.8.1735
32
HokszaD.GamouhH. (2022). “Exploration of protein sequence embeddings for protein-ligand binding site detection,” in 2022 IEEE International Conference on Bioinformatics and Biomedicine (BIBM), Las Vegas, NV, USA, 06-08 December 2022 (IEEE), 3356–3361.
33
HosseiniS.GoldingG. B.IlieL. (2024). Seq-InSite: sequence supersedes structure for protein interaction site prediction. Bioinformatics40 (1), btad738. 10.1093/bioinformatics/btad738
34
IbtehazN.KiharaD. (2023). “Application of sequence embedding in protein sequence-based predictions,” in Machine learning in bioinformatics of protein sequences: algorithms, databases and resources for modern protein bioinformatics (World Scientific), 31–55.
35
JiangM.WeiZ.ZhangS.WangS.WangX.LiZ. (2019). Frsite: protein drug binding site prediction based on faster r–cnn. J. Mol. Graph. Model.93, 107454. 10.1016/j.jmgm.2019.107454
36
JingX.DongQ.HongD.LuR. (2019). Amino acid encoding methods for protein sequences: a comprehensive review and assessment. IEEE/ACM Trans. Comput. Biol. Bioinforma.17 (6), 1918–1931. 10.1109/tcbb.2019.2911677
37
JonesD. T.SinghT.KosciolekT.TetchnerS. (2015). MetaPSICOV: combining coevolution methods for accurate prediction of contacts and long range hydrogen bonding in proteins. Bioinformatics31 (7), 999–1006. 10.1093/bioinformatics/btu791
38
JooK.LeeS. J.LeeJ. (2012). Sann: solvent accessibility prediction of proteins by nearest neighbor method. Proteins Struct. Funct. Bioinforma.80 (7), 1791–1797. 10.1002/prot.24074
39
KawashimaS.PokarowskiP.PokarowskaM.KolinskiA.KatayamaT.KanehisaM. (2007). AAindex: amino acid index database, progress report 2008. Nucleic Acids Res.36 (Suppl. l_1), D202–D205. 10.1093/nar/gkm998
40
KimberT. B.ChenY.VolkamerA. (2021). Deep learning in virtual screening: recent applications and developments. Int. J. Mol. Sci.22 (9), 4435. 10.3390/ijms22094435
41
KipfT. N.WellingM. (2016). Semi-supervised classification with graph convolutional networks. arXiv preprint arXiv:1609.02907.
42
KondoH. X.TakanoY. (2024). Structure comparison of heme-binding sites in heme protein predicted by AlphaFold3 and AlphaFold2. Chem. Lett.53 (8), upae148. 10.1093/chemle/upae148
43
KrauseB.LuL.MurrayI.RenalsS. (2016). Multiplicative LSTM for sequence modelling. arXiv preprint arXiv:1609.07959.
44
KrivákR.HokszaD. (2018). P2Rank: machine learning based tool for rapid and accurate prediction of ligand binding sites from protein structure. J. cheminformatics10, 39–12. 10.1186/s13321-018-0285-8
45
KulmanovM.HoehndorfR. (2020). DeepGOPlus: improved protein function prediction from sequence. Bioinformatics36 (2), 422–429. 10.1093/bioinformatics/btz595
46
LaineE.EismannS.ElofssonA.GrudininS. (2021). Protein sequence‐to‐structure learning: is this the end (‐to‐end revolution)?Proteins Struct. Funct. Bioinforma.89 (12), 1770–1786. 10.1002/prot.26235
47
LeCunY.BengioY. (1995). Convolutional networks for images, speech, and time series. Handb. brain theory neural Netw.3361 (10), 1995.
48
LeeI.NamH. (2022). Sequence-based prediction of protein binding regions and drug–target interactions. J. cheminformatics14 (1), 5. 10.1186/s13321-022-00584-w
49
LiP.CaoB.TuS.XuL. (2022). “Recurpocket: recurrent lmser network with gating mechanism for protein binding site detection,” in 2022 IEEE International Conference on Bioinformatics and Biomedicine (BIBM), Las Vegas, NV, USA, 06-08 December 2022 (IEEE), 334–339.
50
LinZ.AkinH.RaoR.HieB.ZhuZ.LuW.et al (2023). Evolutionary-scale prediction of atomic-level protein structure with a language model. Science379 (6637), 1123–1130. 10.1126/science.ade2574
51
LiuY.LiP.TuS.XuL. (2023). Refinepocket: an attention-enhanced and mask-guided deep learning approach for protein binding site prediction. IEEE/ACM Trans. Comput. Biol. Bioinforma.20, 3314–3321. 10.1109/tcbb.2023.3265640
52
LiuZ.LiY.HanL.LiJ.LiuJ.ZhaoZ.et al (2015). PDB-wide collection of binding data: current status of the PDBbind database. Bioinformatics31 (3), 405–412. 10.1093/bioinformatics/btu626
53
MaveyraudL.MoureyL. (2020). Protein X-ray crystallography and drug discovery. Molecules25 (5), 1030. 10.3390/molecules25051030
54
MiciacciaM.BelvisoB. D.IaselliM.CingolaniG.FerorelliS.CappellariM.et al (2021). Three-dimensional structure of human cyclooxygenase (h COX)-1. Sci. Rep.11 (1), 4312. 10.1038/s41598-021-83438-z
55
MikolovT.ChenK.CorradoG.DeanJ. (2013). Efficient estimation of word representations in vector space. arXiv preprint arXiv:1301.3781.
56
PakM. A.MarkhievaK. A.NovikovaM. S.PetrovD. S.VorobyevI. S.MaksimovaE. S.et al (2023). Using AlphaFold to predict the impact of single mutations on protein stability and function. Plos one18 (3), e0282689. 10.1371/journal.pone.0282689
57
RaiesA.TulodzieckaE.StainerJ.MiddletonL.DhindsaR. S.HillP.et al (2022). DrugnomeAI is an ensemble machine-learning framework for predicting druggability of candidate drug targets. Commun. Biol.5 (1), 1291. 10.1038/s42003-022-04245-4
58
RajS. S.ChandraS. V. (2024). Significance of sequence features in classification of protein–protein interactions using machine learning. Protein J.43 (1), 72–83. 10.1007/s10930-023-10168-8
59
RaoM.McDuffieE.SachsC. (2023). Artificial intelligence/machine learning-driven small molecule repurposing via off-target prediction and transcriptomics. Toxics11 (10), 875. 10.3390/toxics11100875
60
RaoR. M.LiuJ.VerkuilR.MeierJ.CannyJ. F.AbbeelP.et al (2021). “MSA transformer,” in International conference on machine learning (PMLR), 8844–8856. https://proceedings.mlr.press/v139/rao21a.html.
61
RemmertM.BiegertA.HauserA.SödingJ. (2012). HHblits: lightning-fast iterative protein sequence searching by HMM-HMM alignment. Nat. methods9 (2), 173–175. 10.1038/nmeth.1818
62
RivesA.MeierJ.SercuT.GoyalS.LinZ.LiuJ.et al (2021). Biological structure and function emerge from scaling unsupervised learning to 250 million protein sequences. Proc. Natl. Acad. Sci.118 (15), e2016239118. 10.1073/pnas.2016239118
63
SadybekovA. V.KatritchV. (2023). Computational approaches streamlining drug discovery. Nature616 (7958), 673–685. 10.1038/s41586-023-05905-z
64
Sarzynska-WawerJ.WawerA.PawlakA.SzymanowskaJ.StefaniakI.JarkiewiczM.et al (2021). Detecting formal thought disorder by deep contextualized word representations. Psychiatry Res.304, 114135. 10.1016/j.psychres.2021.114135
65
ScarselliF.GoriM.TsoiA. C.HagenbuchnerM.MonfardiniG. (2008). The graph neural network model. IEEE Trans. neural Netw.20 (1), 61–80. 10.1109/TNN.2008.2005605
66
SchrodingerL. (2015). The PyMOL molecular graphics system, 8. Version 1.
67
SchusterM.PaliwalK. K. (1997). Bidirectional recurrent neural networks. IEEE Trans. Signal Process.45 (11), 2673–2681. 10.1109/78.650093
68
SeoS.ChoiJ.ChoiS.LeeJ.ParkC.ParkS. (2024). Pseq2Sites: enhancing protein sequence-based ligand binding-site prediction accuracy via the deep convolutional network and attention mechanism. Eng. Appl. Artif. Intell.127, 107257. 10.1016/j.engappai.2023.107257
69
StankA.KokhD. B.FullerJ. C.WadeR. C. (2016). Protein binding pocket dynamics. Accounts Chem. Res.49 (5), 809–815. 10.1021/acs.accounts.5b00516
70
Stepniewska-DziubinskaM. M.ZielenkiewiczP.SiedleckiP. (2020). Improving detection of protein-ligand binding sites with 3D segmentation. Sci. Rep.10 (1), 5035. 10.1038/s41598-020-61860-z
71
SunT.ChenY.WenY.ZhuZ.LiM. (2021). PremPLI: a machine learning model for predicting the effects of missense mutations on protein-ligand interactions. Commun. Biol.4 (1), 1311. 10.1038/s42003-021-02826-3
72
SunseriJ.KoesD. R. (2020). Libmolgrid: graphics processing unit accelerated molecular gridding for deep learning applications. J. Chem. Inf. Model.60 (3), 1079–1084. 10.1021/acs.jcim.9b01145
73
SuzekB. E.HuangH.McGarveyP.MazumderR.WuC. H. (2007). UniRef: comprehensive and non-redundant UniProt reference clusters. Bioinformatics23 (10), 1282–1288. 10.1093/bioinformatics/btm098
74
TranC.KhadkikarS.PorolloA. (2023). Survey of protein sequence embedding models. Int. J. Mol. Sci.24 (4), 3775. 10.3390/ijms24043775
75
UniProt Consortium (2015). UniProt: a hub for protein information. Nucleic acids Res.43 (D1), D204–D212. 10.1093/nar/gku989
76
VaswaniA.ShazeerN.ParmarN.UszkoreitJ.JonesL.AidanN.et al (2017). Attention is all you need. Adv. neural Inf. Process. Syst.30. 10.48550/arXiv.1706.03762
77
Veliˇckovi´cP.CucurullG.CasanovaA.RomeroA.LioP.BengioY. (2017). Graph attention networks. arXiv preprint arXiv:1710.10903.
78
Villegas-MorcilloA.GomezA. M.SanchezV. (2022). An analysis of protein language model embeddings for fold prediction. Briefings Bioinforma.23 (3), bbac142. 10.1093/bib/bbac142
79
WangC.ChenY.ZhangY.LiK.LinM.PanF.et al (2022). A reinforcement learning approach for protein–ligand binding pose prediction. BMC Bioinforma.23 (1), 368. 10.1186/s12859-022-04912-7
80
WangM.ZhengD.YeZ.GanQ.LiM.SongX.et al (2019). Deep graph library: a graph-centric, highly-performant package for graph neural networks. arXiv preprint arXiv:1909.01315.
81
WuS.ZhangY. (2008). ANGLOR: a composite machine-learning algorithm for protein backbone torsion angle prediction. PloS one3 (10), e3400. 10.1371/journal.pone.0003400
82
XiaC. Q.PanX.ShenH.-B. (2020). Protein–ligand binding residue prediction enhancement through hybrid deep heterogeneous learning of sequence and structure data. Bioinformatics36 (10), 3018–3027. 10.1093/bioinformatics/btaa110
83
XiaY.PanX.ShenH.-B. (2024). A comprehensive survey on protein-ligand binding site prediction. Curr. Opin. Struct. Biol.86, 102793. 10.1016/j.sbi.2024.102793
84
YanR.XuD.YangJ.WalkerS.ZhangY. (2013). A comparative assessment and analysis of 20 representative sequence alignment methods for protein structure prediction. Sci. Rep.3 (1), 2619. 10.1038/srep02619
85
YanX.LuY.LiZ.WeiQ.GaoX.WangS.et al (2022). PointSite: a point cloud segmentation tool for identification of protein ligand binding atoms. J. Chem. Inf. Model.62 (11), 2835–2845. 10.1021/acs.jcim.1c01512
86
YangJ.RoyA.ZhangY. (2013a). Protein–ligand binding site recognition using complementary binding-specific substructure comparison and sequence profile alignment. Bioinformatics29 (20), 2588–2595. 10.1093/bioinformatics/btt447
87
YangJ.RoyA.ZhangY. (2013b). Protein–ligand binding site recognition using complementary binding-specific substructure comparison and sequence profile alignment. Bioinformatics29 (20), 2588–2595. 10.1093/bioinformatics/btt447
88
ZhangC.ZhangX.FreddolinoP. L.ZhangY. (2024). BioLiP2: an updated structure database for biologically relevant ligand–protein interactions. Nucleic Acids Res.52 (D1), D404–D412. 10.1093/nar/gkad630
89
ZhangC.ZhengW.MortuzaS.LiY.ZhangY. (2020). DeepMSA: constructing deep multiple sequence alignment to improve contact prediction and fold-recognition for distant-homology proteins. Bioinformatics36 (7), 2105–2112. 10.1093/bioinformatics/btz863
90
ZhangJ.KurganL. (2019). SCRIBER: accurate and partner type-specific prediction of protein-binding residues from proteins sequences. Bioinformatics35 (14), i343–i353. 10.1093/bioinformatics/btz324
91
ZhangJ.LiuB. (2019). A review on the recent developments of sequence-based protein feature extraction methods. Curr. Bioinforma.14 (3), 190–199. 10.2174/1574893614666181212102749
92
ZhangS.XieL. (2023). Protein Language model-powered 3D ligand binding site prediction from protein sequence. arXiv preprint arXiv:2312.03016.
93
ZhaoJ.CaoY.ZhangL. (2020). Exploring the computational methods for protein-ligand binding site prediction. Comput. Struct. Biotechnol. J.18, 417–426. 10.1016/j.csbj.2020.02.008
Summary
Keywords
protein-ligand binding sites, computational drug discovery, sequence-based methods, deep learning, binding prediction
Citation
Vural O and Jololian L (2025) Machine learning approaches for predicting protein-ligand binding sites from sequence data. Front. Bioinform. 5:1520382. doi: 10.3389/fbinf.2025.1520382
Received
31 October 2024
Accepted
10 January 2025
Published
03 February 2025
Volume
5 - 2025
Edited by
Wen Wei, Arizona State University, United States
Reviewed by
Kumar Yugandhar, Cornell University, United States
Minh Nguyen, Bioinformatics Institute (A∗STAR), Singapore
Updates

Check for updates
Copyright
© 2025 Vural and Jololian.
This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.
*Correspondence: Orhun Vural, orhun@uab.edu
Disclaimer
All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.