Pith. sign in

REVIEW 2 major objections 7 minor 89 references

GLProtein: Global-and-Local Structure Aware Protein Representation Learning

T0 review · 2 major / 7 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read GLProtein claims that pre-training on global structure similarity plus local amino-acid geometry improves protein contact and interaction prediction.

desk verdict A promising integration of global structural similarity and local substructure signals into a protein LM, but the triplet loss as written is undefined for variable-length proteins and needs a pooling specification plus corrected objectives before the empirical claims can be trusted. read the letter →

arxiv 2506.06294 v2 pith:2OJZN7T3 submitted 2025-05-17 cs.LG cs.AIcs.CLq-bio.BM

classification cs.LGcs.AIcs.CLq-bio.BM
keywords proteinrepresentationlearninglanguagemodelstructure-awarepre-trainingtripletcontrastiveTM-score3Ddistanceencodingaminoacidsubstructureprotein-proteininteractionprediction
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

GLProtein sets out to show that protein language models improve when pre-training uses structure at two scales: the global similarity between whole proteins and the local geometry of amino acids. It combines masked amino-acid reconstruction with a triplet contrastive loss that pulls a protein's representation toward structurally similar proteins and pushes it away from structurally dissimilar ones, using TM-score to define similarity. Locally, its decoder attends to molecular substructure embeddings of amino acids and injects 3D distance information as attention bias. The paper reports that this combined objective outperforms prior sequence-only and structure-aware models on amino acid contact prediction and protein-protein interaction prediction after fine-tuning. If the claim holds, structure-aware pre-training can transfer functional knowledge that sequence alone hides, such as similarity between proteins with no detectable sequence identity.

What carries the argument

The load-bearing mechanism is the joint objective $L = L_{MLM} + \alpha L_{PTL}$, coupling three components: masked protein language modelling, global triplet structure modelling, and local decoder injection. The triplet loss $L_{PTL}$ is the carrier of global information: positives and negatives are chosen by TM-Vec using TM-score, a standard measure of whole-structure similarity, and the loss aligns representations of structurally similar proteins while repelling dissimilar ones. Local information enters through the decoder, where Gaussian-basis 3D distance encoding $\Phi^{distance}$ biases attention and mol2vec-generated amino acid substructure embeddings $E_a$ act as keys and values. Ablations in the paper show that removing either the triplet component, the distance encoding, or the molecule embeddings lowers contact and interaction performance, which identifies these three pieces as the machinery carrying the claimed gains.

What would settle it

Compute the triplet loss exactly as written in Eq. (3) for a protein pair of different lengths, e.g. 100 and 200 residues, and observe that the subtraction is undefined; then re-run pre-training with a specified pooling (mean pooling, a learned pooler, or a CLS token) and check whether the reported contact and PPI gains persist. If the gains disappear for some pooling choices, the claimed advantage depends on the hidden alignment rather than on structure similarity.

Watch

Extended reading notes

Core claim

The central claim is that protein structure information should be encoded at both global and local scales during pre-training, and that a model trained this way transfers better to downstream prediction than sequence-only or single-scale structure models. Globally, the framework samples a triplet $(P, P^{pos}, P^{neg})$ using TM-Vec's predicted structure similarity, then optimizes a triplet loss $$L_{PTL}(P,$P^{{pos}}$,$P^{{neg}}$) = \max\big(\|E_p - $E_p^{{pos}}$\|_2 - \|E_p - $E_p^{{neg}}$\|_2 + \epsilon,\,0\big)$$ so that a protein's representation approaches its structural neighbors and moves away from decoys with TM-score below $0.2$. Locally, the decoder computes Gaussian-basis 3D distance encoding $\Phi^{distance}$ from $\alpha$-carbon coordinates and uses it as attention bias, while mol2vec substructure embeddings $E_a$ serve as keys and values, so masked amino-acid reconstruction is conditioned on atomic and geometric detail. The full objective is $L = L_{MLM} + \alpha L_{PTL}$, and on contact prediction and protein-protein interaction benchmarks the paper reports the best results among the compared baselines.

Load-bearing premise

The contrastive loss subtracts the representation of one whole protein from another as though they were equal-sized vectors, but protein sequences differ in length and the paper never states how they are pooled to a common size; the global structural signal therefore rests on an unspecified length-reduction step.

Editorial extensions

If this is right

  • Pre-training on global structure similarity should let sequence-only fine-tuning inherit functional relationships that sequence identity misses, such as the similar beta-helical fold of FfIBP and CaTrailin_4.
  • Contact prediction and protein-protein interaction models initialized from GLProtein can be fine-tuned without structural input and still beat structure-aware baselines on the reported benchmarks.
  • The ablations imply that each of the three components — triplet similarity, 3D distance encoding, and amino-acid substructure encoding — contributes an independent performance gain, so strengthening any one of them should yield further improvement.
  • The same representation also transfers to stability prediction, where GLProtein reports the highest Spearman correlation among compared models on the TAPE benchmark, pointing to use in protein engineering.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Our inference: if the global triplet signal drives the gains, scaling the structure database used for sampling should improve remote-homology and fold-classification performance even with the encoder held fixed; this is directly testable.
  • Our inference: because the triplet loss as written subtracts whole-sequence representations of different lengths, the empirical implementation must rely on an unstated pooling or alignment; making that choice explicit and varying it would reveal how much of the gain comes from structural similarity versus the length reduction itself.
  • Our inference: the same global-plus-local recipe could transfer to RNA structures, protein-ligand complexes, or protein-nucleic acid interfaces, where whole-molecule similarity and local chemical detail play analogous roles.
  • Our inference: the paper's own limitation on binding-affinity prediction suggests that mutation or MSA-style variation, not additional geometric structure, is the missing signal for that task.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

2 major / 7 minor

Summary. The paper proposes GLProtein, a protein representation learning framework that combines a ProtBert-style masked language model with two structure-aware modules. Global structure information is injected through a triplet loss on protein representations, with positive and negative proteins selected by TM-Vec based on TM-score structure similarity; local structure information is injected through AlphaFoldDB-derived 3D distance encodings and mol2vec substructure encodings in the decoder. The model is pre-trained on Swiss-Prot and evaluated on contact prediction, PPI, TAPE, function prediction, binding affinity and stability, reporting strong results on contact and PPI and mixed results on other tasks, which the limitations section acknowledges.

Significance. If the objective definitions are corrected, the paper's contribution is a plausible and potentially useful integration of global structural similarity and local molecular detail into a single protein pre-training pipeline. The evaluation is broad, includes ablations and parameter sensitivity studies, and the authors are transparent about tasks where GLProtein does not improve over baselines. The use of TM-Vec as an external structural similarity oracle is a legitimate design choice and not circular. However, the two mathematical errors in the objectives are load-bearing and currently prevent the method from being executed or reproduced as written.

major comments (2)
  1. [Section 3.1, Eq. (1)] The masked language modeling loss is written as L_MLM = -log sum_{i in M} P(x_i | x_sim i; theta_E, theta_D). Standard masked LM uses the sum of per-token cross-entropy terms, i.e., -sum_i log P(...), because each masked position has its own softmax distribution; the negative log of the sum of these probabilities has no probabilistic interpretation and would lead to a different and incorrect training signal. Since this term is half of the joint objective in Eq. (5), the training objective as written is mathematically incorrect and must be corrected.
  2. [Section 3.2, Eq. (3)] The triplet loss compares E_p, E_pos_p and E_neg_p, each stated to be in R^{L_p x D}. Positive and negative proteins are sampled independently in Section 3.2, so their lengths generally differ from the anchor length L_p; the matrix differences in Eq. (3) are therefore undefined unless a length-alignment step such as pooling, padding with masking, or residue-level alignment is applied. No such step is described in Section 3.2, in the implementation details, or in the appendix, and the complexity analysis in Section A.9 implicitly assumes a single length L by reporting O(3Ld). This is not a cosmetic issue, because L_PTL is the only global-structure term in Eq. (5) and its gradient is the mechanism that injects global structural similarity into the representation. The authors should specify the exact pooling/alignment procedure and revise the complexity analysis accordingly.
minor comments (7)
  1. [References] The citation for ESM-2 points to Beal (2015), which is a paper about experience sampling methods in organizational research, not the protein language model ESM-2; this reference must be corrected.
  2. [Section 5] The conclusion contains the typo 'GLProtien' and should read 'GLProtein'.
  3. [Table 2 caption] 'Breath-First Search' should be 'Breadth-First Search'.
  4. [Abstract and Introduction] The claim that GLProtein is 'the first framework' to incorporate global structural similarity and local amino acid details is too strong without a more complete comparison against prior structure-aware methods; the paper's own Table 3 and Table 4 show ties and losses on several tasks, so the outperformance claim should be qualified.
  5. [Section 3.4 / Appendix A.7] Appendix A.7 says it studies 'the number of protein samples in the protein local structure information modelling component', but the sampled positives and negatives are used by the global triplet loss, so the wording should be corrected.
  6. [Eq. (4)] The Gaussian basis kernel is written with a negative prefactor -1/(sqrt(2 pi) |sigma_k|), which is unusual for a radial basis function; if this sign is intentional, the authors should explain it, and the role of |sigma_k| as a learnable scaling factor should be clarified.
  7. [Section 3.2] The global structure component is described as leveraging 'self-supervised signals', but the triplet labels are produced by TM-Vec, a separately trained model, and the structures come from AlphaFoldDB; the authors should describe this as external supervision or knowledge-based sampling rather than self-supervision.

Circularity Check

0 steps flagged · score 2.0 of 10

No significant circularity: GLProtein's training signal comes from external TM-Vec labels, AlphaFoldDB coordinates, and mol2vec embeddings, while the in-text self-citations are not load-bearing.

full rationale

The claimed derivation chain is not circular. The global triplet objective L_PTL (Eq. 3) is supervised by positive and negative samples generated by TM-Vec (Hamamsy et al., 2023), an external model computing TM-scores; the model does not generate its own training labels. The local structure terms use AlphaFoldDB coordinates through 3D distance encoding and mol2vec for substructure-based amino acid embeddings, both external. The masked language modeling component is a standard BERT-style objective initialized from ProtBert. None of the downstream predictions are equivalent by construction to a fitted parameter or to the model's own inputs. The paper contains several self-citations (e.g., Fan et al., 2025; Liu et al., 2023; Li et al., 2024a-c, 2025), but these appear only as general related-work pointers and are not used to justify the core method, to establish a uniqueness claim, or to forbid alternative approaches; there is no imported uniqueness theorem. Section 6 honestly reports weaker performance on binding affinity and fluorescence tasks, and the ablations in Appendix A.6 are evaluated on external benchmarks, so these limitations do not create circularity. The main internal defect is that Eq. (3) writes E_p, E_pos_p, and E_neg_p all in R^{L_p x D}, with L_p described as the sequence length, whereas the anchor, positive, and negative proteins in a triplet will generally have different lengths; no pooling, padding, masking, or length-restricted sampling is specified, and Appendix A.9's O(3Ld) complexity analysis implicitly assumes a single length. This makes the global objective as written undefined for variable-length triplets, but that is a correctness/reproducibility problem rather than a circular reduction of a claimed result to its inputs.

Assumptions & free parameters 4 free parameters · 5 assumptions · 0 invented entities

The central claim rests on external resources (ProtBert, Swiss-Prot, AlphaFoldDB, TM-Vec, mol2vec) that are treated as given. No new physical entities are introduced. The main unstated assumption is that sequence representations of different lengths can be compared in the triplet loss; the paper never specifies the required pooling.

free parameters (4)
  • alpha (contrastive loss weight) = 1
    Tuned on PPI validation sets in Appendix A.7 across {0.1, 0.3, 0.5, 1, 3, 5}; alpha=1 selected.
  • Number of positive/negative samples per protein = 4
    Chosen from 1 to 4 based on contact prediction performance and memory constraints (Appendix A.7).
  • Triplet margin epsilon = not specified
    Margin in Eq. (3) is never assigned a value in the paper.
  • Gaussian kernel count K = not specified
    K in Section 3.3 is not given; it affects the distance encoding complexity.
assumptions (5)
  • domain assumption TM-Vec provides reliable TM-scores for selecting structurally similar proteins.
    Used to construct positive and negative samples in Section 3.2; if TM-Vec is inaccurate, the contrastive signal is noisy.
  • domain assumption AlphaFoldDB predicted structures are treated as true 3D coordinates.
    Used in Section 3.3 for 3D distance encoding; predicted structures may contain errors.
  • domain assumption Pretraining on Swiss-Prot and AlphaFoldDB does not leak into downstream test sets.
    No decontamination analysis is provided; test proteins may appear in pretraining corpora.
  • domain assumption ProtBert is a valid initialization for continued pretraining.
    Section 3.1 initializes the encoder with ProtBert; the gains may partly come from ProtBert's prior pretraining.
  • standard math Standard machine learning operations (attention, layer norm, GELU) behave as widely assumed.
    Used throughout the architecture; not proven in the paper.

how reviews work

0 comments
Cite this review

Pith. "Pith review of GLProtein: Global-and-Local Structure Aware Protein Representation Learning." pith.science (2026). https://pith.science/paper/2OJZN7T3

@misc{pith2026250606294,
  author       = {Pith},
  title        = {Pith review of: GLProtein: Global-and-Local Structure Aware Protein Representation Learning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/2OJZN7T3}},
  note         = {Machine review of arXiv:2506.06294}
}
read the original abstract

Proteins are central to biological systems, participating as building blocks across all forms of life. Despite advancements in understanding protein functions through protein sequence analysis, there remains potential for further exploration in integrating protein structural information. We argue that the structural information of proteins is not only limited to their 3D information but also encompasses information from amino acid molecules (local information) to protein-protein structure similarity (global information). To address this, we propose \textbf{GLProtein}, the first framework in protein pre-training that incorporates both global structural similarity and local amino acid details to enhance prediction accuracy and functional insights. GLProtein innovatively combines protein-masked modelling with triplet structure similarity scoring, protein 3D distance encoding and substructure-based amino acid molecule encoding. Experimental results demonstrate that GLProtein outperforms previous methods in several bioinformatics tasks, including predicting protein-protein interaction, contact prediction, and so on.

Figures

Figures reproduced from arXiv: 2506.06294 by the authors.

Figure 1
Figure 1. An illustration on protein representation learning [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. An example of protein structure similarity. Given [PITH_FULL_IMAGE:figures/full_fig_p002_2.png] view at source ↗
Figure 3
Figure 3. Overview of our proposed model, which jointly optimises global protein similarities and masked protein model with [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: An example of amino acid contacts (top-L predictions for ProteinNet ( [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: Results on TAPE Benchmark encompass various evaluations. SS is a secondary structure task that is evaluated in [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Left: Ablations of three proposed approaches. Long￾range P@L/2 results are reported for contact prediction. Right: Ablations of three proposed approaches. F1 scores are re￾ported for protein-protein interaction tasks. We investigated the effects of employing di￾verse p…
Figure 7
Figure 7. Figure 7: Parameter sensitivity study on the number of protein samples in the local structure information component. [PITH_FULL_IMAGE:figures/full_fig_p017_7.png]
Figure 8
Figure 8. Figure 8: Parameter sensitivity study on the value of the coefficient [PITH_FULL_IMAGE:figures/full_fig_p017_8.png]
Figure 9
Figure 9. Figure 9: Embedding visualizations of GLProtein, ESM-2, KeAP and ProtBert on SCOPe database. [PITH_FULL_IMAGE:figures/full_fig_p018_9.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

89 extracted references · 60 canonical work pages

  1. [1]

    Is protein blast a thing of the past? nature communications , 14(1):8195, 2023

    Ali Al-Fatlawi, Martin Menzel, and Michael Schroeder. Is protein blast a thing of the past? nature communications , 14(1):8195, 2023

  2. [2]

    Proteinnet: a standardized data set for machine learning of protein structure

    Mohammed AlQuraishi. Proteinnet: a standardized data set for machine learning of protein structure. BMC bioinformatics , 20:1--10, 2019

  3. [3]

    Machine learning in protein structure prediction

    Mohammed AlQuraishi. Machine learning in protein structure prediction. Current opinion in chemical biology , 65:1--8, 2021

  4. [4]

    Layer normalization

    Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450 , 2016

  5. [5]

    Esm 2.0: State of the art and future potential of experience sampling methods in organizational research

    Daniel J Beal. Esm 2.0: State of the art and future potential of experience sampling methods in organizational research. Annu. Rev. Organ. Psychol. Organ. Behav. , 2(1):383--407, 2015

  6. [6]

    Scope: classification of large macromolecular structures in the structural classification of proteins—extended database

    John-Marc Chandonia, Naomi K Fox, and Steven E Brenner. Scope: classification of large macromolecular structures in the structural classification of proteins—extended database. Nucleic acids research , 47(D1):D475--D481, 2019

  7. [7]

    Endowing protein language models with structural knowledge

    Dexiong Chen, Philip Hartout, Paolo Pellizzoni, Carlos Oliver, and Karsten Borgwardt. Endowing protein language models with structural knowledge. arXiv preprint arXiv:2401.14819 , 2024

  8. [8]

    Multifaceted protein--protein interaction prediction based on siamese residual rcnn

    Muhao Chen, Chelsea J-T Ju, Guangyu Zhou, Xuelu Chen, Tianran Zhang, Kai-Wei Chang, Carlo Zaniolo, and Wei Wang. Multifaceted protein--protein interaction prediction based on siamese residual rcnn. Bioinformatics , 35(14):i305--i314, 2019

Show all 89 references
  1. [9]

    Machine learning methods for protein structure prediction

    Jianlin Cheng, Allison N Tegge, and Pierre Baldi. Machine learning methods for protein structure prediction. IEEE reviews in biomedical engineering , 1:41--49, 2008

  2. [10]

    Single-sequence protein structure prediction using a language model and deep learning

    Ratul Chowdhury, Nazim Bouatta, Surojit Biswas, Christina Floristean, Anant Kharkar, Koushik Roy, Charlotte Rochereau, Gustaf Ahdritz, Joanna Zhang, George M Church, et al. Single-sequence protein structure prediction using a language model and deep learning. Nature Biotechnol...

  3. [11]

    Protein stability prediction by fine-tuning a protein language model on a mega-scale dataset

    Simon KS Chu, Kush Narang, and Justin B Siegel. Protein stability prediction by fine-tuning a protein language model on a mega-scale dataset. PLOS Computational Biology , 20(7):e1012248, 2024

  4. [12]

    Evaluation and improvement of multiple sequence methods for protein secondary structure prediction

    James A Cuff and Geoffrey J Barton. Evaluation and improvement of multiple sequence methods for protein secondary structure prediction. Proteins: Structure, Function, and Bioinformatics , 34(4):508--519, 1999

  5. [13]

    Food without agriculture

    Steven J Davis, Kathleen Alexander, Juan Moreno-Cruz, Chaopeng Hong, Matthew Shaner, Ken Caldeira, and Ian McKay. Food without agriculture. Nature Sustainability , 7(1):90--95, 2024

  6. [14]

    Bert: Pre-training of deep bidirectional transformers for language understanding

    Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805 , 2018

  7. [15]

    Selective photoredox trifluoromethylation of tryptophan-containing peptides

    Bo Ding, Yue Weng, Yunqing Liu, Chunlan Song, Le Yin, Jiafan Yuan, Yanrui Ren, Aiwen Lei, and Chien-Wei Chiang. Selective photoredox trifluoromethylation of tryptophan-containing peptides. European Journal of Organic Chemistry , 2019(46):7596--7605, 2019

  8. [16]

    Prottrans: Toward understanding the language of life through self-supervised learning

    Ahmed Elnaggar, Michael Heinzinger, Christian Dallago, Ghalia Rehawi, Yu Wang, Llion Jones, Tom Gibbs, Tamas Feher, Christoph Angerer, Martin Steinegger, et al. Prottrans: Toward understanding the language of life through self-supervised learning. IEEE transactions on pattern ...

  9. [17]

    Computational protein science in the era of large language models (llms)

    Wenqi Fan, Yi Zhou, Shijie Wang, Yuyao Yan, Hui Liu, Qian Zhao, Le Song, and Qing Li. Computational protein science in the era of large language models (llms). arXiv preprint arXiv:2501.10282 , 2025

  10. [18]

    Protgpt2 is a deep unsupervised language model for protein design

    Noelia Ferruz, Steffen Schmidt, and Birte H \"o cker. Protgpt2 is a deep unsupervised language model for protein design. Nature communications , 13(1):4348, 2022

  11. [19]

    Drugclip: Contrasive protein-molecule representation learning for virtual screening

    Bowen Gao, Bo Qiang, Haichuan Tan, Yinjun Jia, Minsi Ren, Minsi Lu, Jingjing Liu, Wei-Ying Ma, and Yanyan Lan. Drugclip: Contrasive protein-molecule representation learning for virtual screening. Advances in Neural Information Processing Systems , 36, 2024

  12. [20]

    What do molecular biologists mean when they say'structure determines function'? 2018

    Gregor P Greslehner. What do molecular biologists mean when they say'structure determines function'? 2018

  13. [21]

    Roles of tau protein in health and disease

    Tong Guo, Wendy Noble, and Diane P Hanger. Roles of tau protein in health and disease. Acta neuropathologica , 133:665--704, 2017

  14. [22]

    Tm-vec: template modeling vectors for fast homology detection and alignment

    Tymor Hamamsy, James T Morton, Daniel Berenberg, Nicholas Carriero, Vladimir Gligorijevic, Robert Blackwell, Charlie EM Strauss, Julia Koehler Leman, Kyunghyun Cho, and Richard Bonneau. Tm-vec: template modeling vectors for fast homology detection and alignment. bioRxiv , page...

  15. [23]

    Protein remote homology detection and structural alignment using deep learning

    Tymor Hamamsy, James T Morton, Robert Blackwell, Daniel Berenberg, Nicholas Carriero, Vladimir Gligorijevic, Charlie EM Strauss, Julia Koehler Leman, Kyunghyun Cho, and Richard Bonneau. Protein remote homology detection and structural alignment using deep learning. Nature biot...

  16. [24]

    Predicting protein--protein interactions through sequence-based deep learning

    Somaye Hashemifar, Behnam Neyshabur, Aly A Khan, and Jinbo Xu. Predicting protein--protein interactions through sequence-based deep learning. Bioinformatics , 34(17):i802--i810, 2018

  17. [25]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition , pages 770--778, 2016

  18. [26]

    Contrastive representation learning for 3d protein structures

    Pedro Hermosilla and Timo Ropinski. Contrastive representation learning for 3d protein structures. arXiv preprint arXiv:2205.15675 , 2022

  19. [27]

    A high-level programming language for generative protein design

    Brian Hie, Salvatore Candido, Zeming Lin, Ori Kabeli, Roshan Rao, Nikita Smetanin, Tom Sercu, and Alexander Rives. A high-level programming language for generative protein design. bioRxiv , pages 2022--12, 2022

  20. [28]

    Long short-term memory

    Sepp Hochreiter and J \"u rgen Schmidhuber. Long short-term memory. Neural computation , 9(8):1735--1780, 1997

  21. [29]

    Deepsf: deep convolutional neural network for mapping protein sequences to folds

    Jie Hou, Badri Adhikari, and Jianlin Cheng. Deepsf: deep convolutional neural network for mapping protein sequences to folds. Bioinformatics , 34(8):1295--1303, 2018

  22. [30]

    Improving user controlled table-to-text generation robustness

    Hanxu Hu, Yunqing Liu, Zhongyi Yu, and Laura Perez-Beltrachini. Improving user controlled table-to-text generation robustness. arXiv preprint arXiv:2302.09820 , 2023

  23. [31]

    Protein 3d graph structure learning for robust structure-based protein property prediction

    Yufei Huang, Siyuan Li, Lirong Wu, Jin Su, Haitao Lin, Odin Zhang, Zihan Liu, Zhangyang Gao, Jiangbin Zheng, and Stan Z Li. Protein 3d graph structure learning for robust structure-based protein property prediction. In Proceedings of the AAAI Conference on Artificial Intellige...

  24. [32]

    Mol2vec: unsupervised machine learning approach with chemical intuition

    Sabrina Jaeger, Simone Fulle, and Samo Turk. Mol2vec: unsupervised machine learning approach with chemical intuition. Journal of chemical information and modeling , 58(1):27--35, 2018

  25. [33]

    Prediction of protein--protein interaction using graph neural networks

    Kanchan Jha, Sriparna Saha, and Hiteshi Singh. Prediction of protein--protein interaction using graph neural networks. Scientific Reports , 12(1):8360, 2022

  26. [34]

    Highly accurate protein structure prediction with alphafold

    John Jumper, Richard Evans, Alexander Pritzel, Tim Green, Michael Figurnov, Olaf Ronneberger, Kathryn Tunyasuvunakool, Russ Bates, Augustin Z \' dek, Anna Potapenko, et al. Highly accurate protein structure prediction with alphafold. nature , 596(7873):583--589, 2021

  27. [35]

    plm-blast: distant homology detection based on direct comparison of sequence representations from protein language models

    Kamil Kaminski, Jan Ludwiczak, Kamil Pawlicki, Vikram Alva, and Stanislaw Dunin-Horkawicz. plm-blast: distant homology detection based on direct comparison of sequence representations from protein language models. Bioinformatics , 39(10):btad579, 2023

  28. [36]

    Sequence-structure-function relationships in the microbial protein universe

    Julia Koehler Leman, Pawel Szczerbiak, P Douglas Renfrew, Vladimir Gligorijevic, Daniel Berenberg, Tommi Vatanen, Bryn C Taylor, Chris Chandler, Stefan Janssen, Andras Pataki, et al. Sequence-structure-function relationships in the microbial protein universe. Nature communicat...

  29. [37]

    Deep neural network based predictions of protein interactions using primary sequences

    Hang Li, Xiu-Jun Gong, Hua Yu, and Chang Zhou. Deep neural network based predictions of protein interactions using primary sequences. Molecules , 23(8):1923, 2018

  30. [38]

    Tomg-bench: Evaluating llms on text-based open molecule generation

    Jiatong Li, Junxian Li, Yunqing Liu, Dongzhan Zhou, and Qing Li. Tomg-bench: Evaluating llms on text-based open molecule generation. arXiv preprint arXiv:2412.14642 , 2024

  31. [39]

    Empowering molecule discovery for molecule-caption translation with large language models: A chatgpt perspective

    Jiatong Li, Yunqing Liu, Wenqi Fan, Xiao-Yong Wei, Hui Liu, Jiliang Tang, and Qing Li. Empowering molecule discovery for molecule-caption translation with large language models: A chatgpt perspective. IEEE transactions on knowledge and data engineering , 2024

  32. [40]

    Molreflect: Towards in-context fine-grained alignments between molecules and texts

    Jiatong Li, Yunqing Liu, Wei Liu, Jingdi Le, Di Zhang, Wenqi Fan, Dongzhan Zhou, Yuqiang Li, and Qing Li. Molreflect: Towards in-context fine-grained alignments between molecules and texts. arXiv preprint arXiv:2411.14721 , 2024

  33. [41]

    Dietary protein sources, mediating biomarkers, and incidence of type 2 diabetes: findings from the women’s health initiative and the uk biobank

    Jie Li, Andrea J Glenn, Qingling Yang, Ding Ding, Lingling Zheng, Wei Bao, Jeannette Beasley, Erin LeBlanc, Kenneth Lo, JoAnn E Manson, et al. Dietary protein sources, mediating biomarkers, and incidence of type 2 diabetes: findings from the women’s health initiative and the u...

  34. [42]

    Amino acids in cancer

    Elizabeth L Lieu, Tu Nguyen, Shawn Rhyne, and Jiyeon Kim. Amino acids in cancer. Experimental & molecular medicine , 52(1):15--30, 2020

  35. [43]

    Rapid and sensitive protein similarity searches

    David J Lipman and William R Pearson. Rapid and sensitive protein similarity searches. Science , 227(4693):1435--1441, 1985

  36. [44]

    Generative diffusion models on graphs: methods and applications

    Chengyi Liu, Wenqi Fan, Yunqing Liu, Jiatong Li, Hang Li, Hui Liu, Jiliang Tang, and Qing Li. Generative diffusion models on graphs: methods and applications. In Proceedings of the Thirty-Second International Joint Conference on Artificial Intelligence , pages 6702--6711, 2023

  37. [45]

    Generating 3d molecules for target protein binding

    Meng Liu, Youzhi Luo, Kanji Uchino, Koji Maruhashi, and Shuiwang Ji. Generating 3d molecules for target protein binding. arXiv preprint arXiv:2204.09410 , 2022

  38. [46]

    Biochemistry, essential amino acids

    Michael J Lopez and Shamim S Mohiuddin. Biochemistry, essential amino acids. In StatPearls [Internet] . StatPearls Publishing, 2024

  39. [47]

    Learning unknown from correlations: Graph neural network for inter-novel-protein interaction prediction

    Guofeng Lv, Zhiqiang Hu, Yanguang Bi, and Shaoting Zhang. Learning unknown from correlations: Graph neural network for inter-novel-protein interaction prediction. arXiv preprint arXiv:2105.06709 , 2021

  40. [48]

    Progen: Language modeling for protein generation

    Ali Madani, Bryan McCann, Nikhil Naik, Nitish Shirish Keskar, Namrata Anand, Raphael R Eguchi, Po-Ssu Huang, and Richard Socher. Progen: Language modeling for protein generation. arXiv preprint arXiv:2004.03497 , 2020

  41. [49]

    Colabfold: making protein folding accessible to all

    Milot Mirdita, Konstantin Sch \"u tze, Yoshitaka Moriwaki, Lim Heo, Sergey Ovchinnikov, and Martin Steinegger. Colabfold: making protein folding accessible to all. Nature methods , 19(6):679--682, 2022

  42. [50]

    Skempi: a structural kinetic and energetic database of mutant protein interactions and its use in empirical models

    Iain H Moal and Juan Fern \'a ndez-Recio. Skempi: a structural kinetic and energetic database of mutant protein interactions and its use in empirical models. Bioinformatics , 28(20):2600--2607, 2012

  43. [51]

    The language of proteins: Nlp, machine learning & protein sequences

    Dan Ofer, Nadav Brandes, and Michal Linial. The language of proteins: Nlp, machine learning & protein sequences. Computational and Structural Biotechnology Journal , 19:1750--1758, 2021

  44. [52]

    Pocket2mol: Efficient molecular sampling based on 3d protein pockets

    Xingang Peng, Shitong Luo, Jiaqi Guan, Qi Xie, Jian Peng, and Jianzhu Ma. Pocket2mol: Efficient molecular sampling based on 3d protein pockets. In International Conference on Machine Learning , pages 17644--17655. PMLR, 2022

  45. [53]

    Protein nanofibrils for next generation sustainable water purification

    Mohammad Peydayesh and Raffaele Mezzenga. Protein nanofibrils for next generation sustainable water purification. Nature communications , 12(1):3248, 2021

  46. [54]

    Evaluating protein transfer learning with tape

    Roshan Rao, Nicholas Bhattacharya, Neil Thomas, Yan Duan, Peter Chen, John Canny, Pieter Abbeel, and Yun Song. Evaluating protein transfer learning with tape. Advances in neural information processing systems , 32, 2019

  47. [55]

    Deeprank-gnn: a graph neural network framework to learn patterns in protein--protein interfaces

    Manon R \'e au, Nicolas Renaud, Li C Xue, and Alexandre MJJ Bonvin. Deeprank-gnn: a graph neural network framework to learn patterns in protein--protein interfaces. Bioinformatics , 39(1):btac759, 2023

  48. [56]

    Deeprank: a deep learning framework for data mining 3d protein-protein interfaces

    Nicolas Renaud, Cunliang Geng, Sonja Georgievska, Francesco Ambrosetti, Lars Ridder, Dario F Marzella, Manon F R \'e au, Alexandre MJJ Bonvin, and Li C Xue. Deeprank: a deep learning framework for data mining 3d protein-protein interfaces. Nature communications , 12(1):7068, 2021

  49. [57]

    Cellular agriculture—industrial biotechnology for food and materials

    Heiko Rischer, G \'e za R Szilvay, and Kirsi-Marja Oksman-Caldentey. Cellular agriculture—industrial biotechnology for food and materials. Current opinion in biotechnology , 61:128--134, 2020

  50. [58]

    Biological structure and function emerge from scaling unsupervised learning to 250 million protein sequences

    Alexander Rives, Joshua Meier, Tom Sercu, Siddharth Goyal, Zeming Lin, Jason Liu, Demi Guo, Myle Ott, C Lawrence Zitnick, Jerry Ma, et al. Biological structure and function emerge from scaling unsupervised learning to 250 million protein sequences. Proceedings of the National ...

  51. [59]

    Global analysis of protein folding using massively parallel design, synthesis, and testing

    Gabriel J Rocklin, Tamuka M Chidyausiku, Inna Goreshnik, Alex Ford, Scott Houliston, Alexander Lemak, Lauren Carter, Rashmi Ravichandran, Vikram K Mulligan, Aaron Chevalier, et al. Global analysis of protein folding using massively parallel design, synthesis, and testing. Scie...

  52. [60]

    Comparing support vector machines with gaussian kernels to radial basis function classifiers

    Bernhard Scholkopf, Kah-Kay Sung, Christopher JC Burges, Federico Girosi, Partha Niyogi, Tomaso Poggio, and Vladimir Vapnik. Comparing support vector machines with gaussian kernels to radial basis function classifiers. IEEE transactions on Signal Processing , 45(11):2758--2765, 1997

  53. [61]

    Spot-contact-lm: improving single-sequence-based prediction of protein contact map using a transformer language model

    Jaspreet Singh, Thomas Litfin, Jaswinder Singh, Kuldip Paliwal, and Yaoqi Zhou. Spot-contact-lm: improving single-sequence-based prediction of protein contact map using a transformer language model. Bioinformatics , 38(7):1888--1894, 2022

  54. [62]

    Computational methods in drug discovery

    Gregory Sliwoski, Sandeepkumar Kothiwale, Jens Meiler, and Edward W Lowe. Computational methods in drug discovery. Pharmacological reviews , 66(1):334--395, 2014

  55. [63]

    Advanced microbial protein technologies are promising for supporting global food-feed supply chains with positive environmental impacts

    Mostafa Sobhi, Eman Zakaria, Feifei Zhu, Wei Liu, Dominic Aboagye, Xinjuan Hu, Yi Cui, and Shuhao Huo. Advanced microbial protein technologies are promising for supporting global food-feed supply chains with positive environmental impacts. Science of the Total Environment , 89...

  56. [64]

    Multi-scale representation learning on proteins

    Vignesh Ram Somnath, Charlotte Bunne, and Andreas Krause. Multi-scale representation learning on proteins. Advances in Neural Information Processing Systems , 34:25244--25255, 2021

  57. [65]

    Saprot: Protein language modeling with structure-aware vocabulary

    Jin Su, Chenchen Han, Yuyang Zhou, Junjie Shan, Xibin Zhou, and Fajie Yuan. Saprot: Protein language modeling with structure-aware vocabulary. biorxiv. 2023

  58. [66]

    Uniref: comprehensive and non-redundant uniprot reference clusters

    Baris E Suzek, Hongzhan Huang, Peter McGarvey, Raja Mazumder, and Cathy H Wu. Uniref: comprehensive and non-redundant uniprot reference clusters. Bioinformatics , 23(10):1282--1288, 2007

  59. [67]

    Uniref clusters: a comprehensive and scalable alternative for improving sequence similarity searches

    Baris E Suzek, Yuqi Wang, Hongzhan Huang, Peter B McGarvey, Cathy H Wu, and UniProt Consortium. Uniref clusters: a comprehensive and scalable alternative for improving sequence similarity searches. Bioinformatics , 31(6):926--932, 2015

  60. [68]

    Deep learning methods in protein structure prediction

    Mirko Torrisi, Gianluca Pollastri, and Quan Le. Deep learning methods in protein structure prediction. Computational and Structural Biotechnology Journal , 18:1301--1310, 2020

  61. [69]

    Harnessing protein folding neural networks for peptide--protein docking

    Tomer Tsaban, Julia K Varga, Orly Avraham, Ziv Ben-Aharon, Alisa Khramushin, and Ora Schueler-Furman. Harnessing protein folding neural networks for peptide--protein docking. Nature communications , 13(1):176, 2022

  62. [70]

    Learning functional properties of proteins with language models

    Serbulent Unsal, Heval Atas, Muammer Albayrak, Kemal Turhan, Aybar C Acar, and Tunca Do g an. Learning functional properties of proteins with language models. Nature Machine Intelligence , 4(3):227--245, 2022

  63. [71]

    Attention is all you need

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, ukasz Kaiser, and Illia Polosukhin. Attention is all you need. Advances in neural information processing systems , 30, 2017

  64. [72]

    Language models generalize beyond natural proteins

    Robert Verkuil, Ori Kabeli, Yilun Du, Basile IM Wicky, Lukas F Milles, Justas Dauparas, David Baker, Sergey Ovchinnikov, Tom Sercu, and Alexander Rives. Language models generalize beyond natural proteins. BioRxiv , pages 2022--12, 2022

  65. [73]

    A high efficient biological language model for predicting protein--protein interactions

    Yanbin Wang, Zhu-Hong You, Shan Yang, Xiao Li, Tong-Hai Jiang, and Xi Zhou. A high efficient biological language model for predicting protein--protein interactions. Cells , 8(2):122, 2019

  66. [74]

    Lm-gvp: an extensible sequence and structure informed deep learning framework for protein property prediction

    Zichen Wang, Steven A Combs, Ryan Brand, Miguel Romero Calvo, Panpan Xu, George Price, Nataliya Golovach, Emmanuel O Salawu, Colby J Wise, Sri Priya Ponnapalli, et al. Lm-gvp: an extensible sequence and structure informed deep learning framework for protein property prediction...

  67. [75]

    Late-stage photoredox c--h amidation of n-unprotected indole derivatives: Access to n-(indol-2-yl) amides

    Yue Weng, Bo Ding, Yunqing Liu, Chunlan Song, Lo-Ying Chan, and Chien-Wei Chiang. Late-stage photoredox c--h amidation of n-unprotected indole derivatives: Access to n-(indol-2-yl) amides. Organic Letters , 23(7):2710--2714, 2021

  68. [76]

    Environmental dimensions of the protein corona

    Korin E Wheeler, Andrew J Chetwynd, Kira M Fahy, Brian S Hong, Jose A Tochihuitl, Lilah A Foster, and Iseult Lynch. Environmental dimensions of the protein corona. Nature Nanotechnology , 16(6):617--629, 2021

  69. [77]

    Plasma protein patterns as comprehensive indicators of health

    Stephen A Williams, Mika Kivimaki, Claudia Langenberg, Aroon D Hingorani, Juan P Casas, Claude Bouchard, Christian Jonasson, Mark A Sarzynski, Martin J Shipley, Leigh Alexander, et al. Plasma protein patterns as comprehensive indicators of health. Nature medicine , 25(12):1851...

  70. [78]

    Modeling protein using large-scale pretrain language model

    Yijia Xiao, Jiezhong Qiu, Ziang Li, Chang-Yu Hsieh, and Jie Tang. Modeling protein using large-scale pretrain language model. arXiv preprint arXiv:2108.07435 , 2021

  71. [79]

    How significant is a protein structure similarity with tm-score= 0.5? Bioinformatics , 26(7):889--895, 2010

    Jinrui Xu and Yang Zhang. How significant is a protein structure similarity with tm-score= 0.5? Bioinformatics , 26(7):889--895, 2010

  72. [80]

    Deeprank-gnn-esm: a graph neural network for scoring protein--protein models using protein language model

    Xiaotong Xu and Alexandre MJJ Bonvin. Deeprank-gnn-esm: a graph neural network for scoring protein--protein models using protein language model. Bioinformatics advances , 4(1):vbad191, 2024

  73. [81]

    Do transformers really perform badly for graph representation? Advances in neural information processing systems , 34:28877--28888, 2021

    Chengxuan Ying, Tianle Cai, Shengjie Luo, Shuxin Zheng, Guolin Ke, Di He, Yanming Shen, and Tie-Yan Liu. Do transformers really perform badly for graph representation? Advances in neural information processing systems , 34:28877--28888, 2021

  74. [82]

    Diatom adhesive trail proteins acquired by horizontal gene transfer from bacteria serve as primers for marine biofilm formation

    Jirina Zackova Suchanova, Gust Bilcke, Beata Romanowska, Ali Fatlawi, Martin Pippel, Alastair Skeffington, Michael Schroeder, Wim Vyverman, Klaas Vandepoele, Nils Kr \"o ger, et al. Diatom adhesive trail proteins acquired by horizontal gene transfer from bacteria serve as prim...

  75. [83]

    Ontoprotein: Protein pretraining with gene ontology embedding

    Ningyu Zhang, Zhen Bi, Xiaozhuan Liang, Siyuan Cheng, Haosen Hong, Shumin Deng, Qiang Zhang, Jiazhang Lian, and Huajun Chen. Ontoprotein: Protein pretraining with gene ontology embedding. In International Conference on Learning Representations

  76. [84]

    Scoring function for automated assessment of protein structure template quality

    Yang Zhang and Jeffrey Skolnick. Scoring function for automated assessment of protein structure template quality. Proteins: Structure, Function, and Bioinformatics , 57(4):702--710, 2004

  77. [85]

    Protein representation learning by geometric structure pretraining

    Zuobai Zhang, Minghao Xu, Arian Jamasb, Vijil Chenthamarakshan, Aurelie Lozano, Payel Das, and Jian Tang. Protein representation learning by geometric structure pretraining. arXiv preprint arXiv:2203.06125 , 2022

  78. [86]

    Holistic food system innovation strategies can close up to 80\ Nature Food , pages 1--11, 2024

    Hao Zhao, Xiangwen Fan, Zhaohai Bai, Lin Ma, Chao Wang, Petr Havl \' k, Zhenling Cui, Juraj Balkovic, Mario Herrero, Zhou Shi, et al. Holistic food system innovation strategies can close up to 80\ Nature Food , pages 1--11, 2024

  79. [87]

    Exploring the computational methods for protein-ligand binding site prediction

    Jingtian Zhao, Yang Cao, and Le Zhang. Exploring the computational methods for protein-ligand binding site prediction. Computational and structural biotechnology journal , 18:417--426, 2020

  80. [88]

    Recommender systems in the era of large language models (llms)

    Zihuai Zhao, Wenqi Fan, Jiatong Li, Yunqing Liu, Xiaowei Mei, Yiqi Wang, Zhen Wen, Fei Wang, Xiangyu Zhao, Jiliang Tang, et al. Recommender systems in the era of large language models (llms). IEEE Transactions on Knowledge and Data Engineering , 2024

  81. [89]

    Protein representation learning via knowledge enhanced primary structure reasoning

    Hong-Yu Zhou, Yunxiang Fu, Zhicheng Zhang, Bian Cheng, and Yizhou Yu. Protein representation learning via knowledge enhanced primary structure reasoning. In The Eleventh International Conference on Learning Representations , 2023

Pith tools

Reviewed August 15, 2026 · model on record in the stance chip above.