Skip to content
PaperFren

Can a transformer predict which drugs bind which proteins?

Open paper intelligence

Breaking drugs and proteins into frequently recurring sub-pieces and modelling how those pieces interact gave better drug-target predictions than earlier deep models, especially when labelled data were scarce.

Source

MolTrans: Molecular Interaction Transformer for drug-target interaction prediction

Huang K, Xiao C, Glass LM, et al. · Bioinformatics (Oxford, England) · 2021

doi.org/10.1093/bioinformatics/btaa880Read the full paper ↗404 citationscc by

Study at a glance

Design
Computational / modelling — New architecture (subsequence mining + transformer encoders + pairwise interaction map + CNN) compared with baselines across random, unseen-drug/target and scarce-data splits, plus ablations.
N
No single N; three datasets (BIOSNAP main, plus DAVIS and BindingDB), each split 7:1:2 into train/validation/test over five random runs.
Population
Drug-protein pairs from BIOSNAP, DAVIS and BindingDB
Outcome
ROC-AUC and PR-AUC for binary interaction prediction

Structured fields used in claim comparison tables when every cited study has a complete layer.

What they did

The authors built MolTrans, which first splits drug SMILES strings and protein sequences into recurring sub-structures mined from large unlabelled databases, similar to sub-word tokens in language models. Transformer encoders give each sub-structure a context-aware embedding, a dot-product map scores every drug-piece by protein-piece pair, and a CNN reads that map to output an interaction probability. They compared it with logistic regression, a DNN, GNN-CPI, DeepDTI, DeepDTA and DeepConv-DTI on BIOSNAP, DAVIS and BindingDB, and ran unseen-drug, unseen-target, low-data and ablation experiments.

What they found

MolTrans had the best ROC-AUC and PR-AUC on all three datasets in the standard split, with up to 25% improvement over the best baseline (PR-AUC on DAVIS). On unseen drugs or targets it was competitive rather than clearly best. When trained on only small fractions of the data it degraded less than DeepDTI and DeepConv-DTI. Ablations showed the transformer, CNN and interaction module each helped, and that mining sub-structures from large unlabelled data beat mining from small datasets.

The limits

What it doesn't show

Negative examples were sampled from pairs never recorded as interacting, so some 'negatives' may be real but untested interactions, which can distort metrics. The advantage largely disappears in the harder unseen-drug and unseen-target settings, which are closest to real discovery. Interpretability evidence consists of a few hand-picked interaction maps checked against literature, not a systematic test. Predictions were never validated in a wet lab.

Key terms

Drug-target interaction (DTI)
Whether a drug compound binds or acts on a particular protein; predicted here as a yes/no classification.
SMILES
A text string that encodes a molecule's atoms and bonds, letting sequence models read chemicals.
Sub-structure tokenization
Merging frequently co-occurring symbols into larger units, like sub-word tokens in NLP; here called FCS mining.
Ablation study
Removing one component at a time to see how much each contributes to performance.
PR-AUC
Area under the precision-recall curve; sensitive to how well a classifier ranks the rarer positive class.

Flashcards

1 / 10

0 of 10 answers reviewed

Research intelligence for this paper

See its role on concept claims, tensions it is part of, placement history, and related discoveries.

Open paper intelligence

Quiz yourself

1 / 5

What inspired MolTrans's FCS sub-structure mining?

Common questions

Why tokenize molecules into sub-structures instead of whole molecules or atoms?

Binding happens between parts of molecules, so recurring fragments are meaningful units and appear often enough to learn good embeddings.

Does MolTrans work for brand-new drugs?

Only partly: in the unseen-drug and unseen-target tests it was competitive with other deep models but not clearly superior.

How is the model interpretable?

The interaction map gives a score for every drug-fragment/protein-fragment pair, so high cells point to fragments that may drive binding.

More on Representation learning