ABodyBuilder3 pLDDT is a CPU-accelerated antibody structure prediction service that infers all-atom 3D Fv structures from paired heavy (H) and light (L) chain amino acid sequences. It is based on the ImmuneBuilder/ABodyBuilder2 architecture and returns a refined PDB model plus optional per-residue pLDDT confidence scores for each chain. The API supports single-antibody inference (batch size 1, sequences up to 2048 residues each) for high-throughput analysis, virtual screening, and computational antibody design workflows.
Predict¶
Predict 3D structure and pLDDT scores for an antibody’s heavy (H) and light (L) chain.
- POST /api/v3/abodybuilder3-plddt/predict/¶
Predict endpoint for ABodyBuilder3 pLDDT.
- Request Headers:
Content-Type – application/json
Authorization – Token YOUR_API_KEY
Request
params (object, optional) — Configuration parameters:
plddt (bool, default: False) — Flag indicating whether to include per-residue pLDDT scores in the response
seed (int, optional, default: 42) — Random seed used to initialize model inference
items (array of objects, min: 1, max: 1) — Input antibody sequences:
H (string, required, min length: 1, max length: 2048) — Heavy chain amino acid sequence using extended amino acid alphabet
L (string, required, min length: 1, max length: 2048) — Light chain amino acid sequence using extended amino acid alphabet
Example request:
- Status Codes:
200 OK – Successful response
400 Bad Request – Invalid input
500 Internal Server Error – Internal server error
Response
results (array of objects) — One result per input item, in the order requested:
pdb (string) — Predicted antibody structure in standard PDB file format.
plddt (array of arrays of floats, optional) — Predicted per-residue confidence scores for the antibody chains.
Outer array dimension: 2 (one array per antibody chain: heavy [H] and light [L]).
Inner array dimensions: equal to the length of each input sequence (H and L chains).
Float values represent raw model outputs and may be negative.
Example response:
Performance¶
Runs on CPU-only hardware (2 vCPUs, 8 GB RAM) for the pLDDT variant; no GPU is allocated, in contrast to ABodyBuilder3 Language, which uses a T4 GPU.
Provides residue-level pLDDT confidence estimates for structures generated by ABodyBuilder3 Language, enabling rapid quality assessment without re-running full 3D inference.
For typical antibody Fv lengths, inference completes in seconds per structure on CPU, enabling higher throughput than AlphaFold2-style pipelines that require GPUs and MSA/database searches.
Confidence estimates are designed to be on a similar scale and interpretability as AlphaFold2 pLDDT, but with substantially lower computational cost, making this endpoint suitable for large antibody panels and repertoire-scale workflows.
Applications¶
Rapid antibody candidate screening and prioritization by predicting per-residue structural confidence (pLDDT) for heavy/light chain models, enabling biotech teams to filter large antibody libraries toward candidates with higher predicted structural reliability; not suitable as a standalone replacement for experimental developability or potency assays.
Antibody affinity maturation workflows, where pLDDT profiles highlight well-resolved versus uncertain regions (especially CDR loops), helping protein engineers focus mutagenesis on structurally supported backbones and deprioritize designs with low-confidence core packing; particularly relevant when iterating many in silico variants before lab construction.
Computational epitope mapping and paratope characterization by using pLDDT to assess which CDR residues are modelled with high confidence, allowing researchers to concentrate docking, MD, or interface analysis on structurally reliable loop segments; beneficial for vaccine and antibody-based diagnostic programs studying antigen–antibody interfaces.
Antibody humanization and reformatting (e.g., isotype or framework changes), using pLDDT to compare structural integrity between parental and engineered Fv sequences, accelerating selection of variants that preserve stable frameworks and CDR geometries; less informative for predicting immunogenicity, effector function, or in vivo efficacy without further modelling and experiments.
Structural quality control in antibody database and registry curation, applying pLDDT thresholds to automatically flag low-confidence regions or full Fv models, helping organizations maintain higher-quality structure repositories for downstream docking, QSAR, or generative design; should complement, not replace, expert structural review where decisions are high impact.
Limitations¶
Maximum Sequence Length: The API accepts antibody heavy (
H) and light (L) chain sequences up to2048amino acids each. Longer sequences cannot be processed and must be truncated or split prior to submission.Batch Size: The API enforces a fixed
batch_sizeof1item perpredictorrequest. Larger datasets must be processed via multiple sequential requests.Model Type (``plddt``): Enabling the
plddtflag inparamsreturns per-residue confidence scores as a list of lists of floats (one list per chain). These scores correlate with prediction error but do not guarantee structural correctness and are primarily useful for filtering out low-confidence regions or models.CDR-H3 Structural Accuracy: ABodyBuilder3 is based on ImmuneBuilder/ABodyBuilder2, which attains high accuracy on frameworks and most CDRs but still shows larger errors for CDR-H3 (average RMSD ~2.81 Å in benchmarks). CDR-H3 conformations should be interpreted with additional caution, even when
plddtscores are high.Molecule Type: The model is optimized for paired antibody variable domains (VH/VL provided as
HandL). It is not intended for general proteins, nanobodies, or T-cell receptors; for these, specialised models (e.g. NanoBodyBuilder2, TCRBuilder2, or general structure predictors like AlphaFold2/ESMFold) are more appropriate.Throughput and Pipeline Role: ABodyBuilder3 is designed for accurate antibody structure prediction rather than ultra-high-throughput screening. For initial ranking or filtering of very large libraries (e.g. millions of sequences), faster approximate structure predictors (such as ESMFold) are typically more suitable, with ABodyBuilder3 used in later, narrower stages.
How We Use It¶
ABodyBuilder3 pLDDT enables rapid, residue-level assessment of antibody structure confidence within design and optimization campaigns, allowing teams to rank large in silico libraries and focus wet-lab effort on sequences with reliable 3D models, especially in CDR loops and VH–VL interfaces. By exposing standardized pLDDT scores alongside predicted structures through scalable APIs, it integrates with sequence-based generative models, developability filters, and epitope/paratope analyses to drive faster, data-driven antibody maturation cycles.
Supports automated triage of candidates with low-confidence structural regions before synthesis.
Combines with biophysical property estimators and sequence embeddings to guide multi-round optimization and fine-tuning.
References¶
Abanades, B., Wong, W. K., Boyles, F., Georges, G., Bujotzek, A., & Deane, C. M. (2023). ImmuneBuilder: Deep-learning models for predicting the structures of immune proteins. Communications Biology. https://doi.org/10.1038/s42003-023-04927-7
