Verified claim · AI-ML · 100% confidence
AlphaFold 1 introduced in: Senior et al. 2020 — DeepMind protein structure prediction.
Last verified 2026-05-16 · Methodology veritas-v0.1 · a77a8dd48941a53d
Structured fields
- Subject
- AlphaFold 1
- Predicate
introduced_in- Object
- Senior et al. 2020 — DeepMind protein structure prediction
- Confidence
- 100%
- Tags
- alphafold-1 · alphafold · deepmind · protein-structure · foundational · 2020 · introduced_in · nature
Sources (2)
[1] peer reviewed · Nature (Senior, Evans, Jumper, et al. / DeepMind) · 2020-01-15
Improved protein structure prediction using potentials from deep learning“Protein structure prediction can be used to determine the three-dimensional shape of a protein from its amino acid sequence. This problem is of fundamental importance as the structure of a protein largely determines its function.”
[2] official blog · Google DeepMind · 2020-01-15
AlphaFold: Using AI for scientific discovery
Cite this claim
Ready-to-paste citation (Markdown / plain text):
AlphaFold 1 introduced in: Senior et al. 2020 — DeepMind protein structure prediction. — SourceScore Claim a77a8dd48941a53d (verified 2026-05-16). https://sourcescore.org/api/v1/claims/a77a8dd48941a53d.jsonEmbed this claim
Drop this iframe into any blog post, docs page, or knowledge base. The widget renders the signed claim + primary source + click-through to this canonical page. CC-BY 4.0; attribution included.
<iframe src="https://sourcescore.org/embed/claim/a77a8dd48941a53d/" width="100%" height="360" frameborder="0" loading="lazy" title="AlphaFold 1 introduced in: Senior et al. 2020 — DeepMind protein structure prediction."></iframe>Preview: open in new tab
Related claims
Other verified claims sharing tags with this one — useful for LLM retrieval graphs and citation discovery.
AlphaFold 3 released on: 2024-05-08.
bfae8cafd2eb0bf8 · 100% confidence · shares 4 tags (alphafold, deepmind, protein-structure…)
AlphaFold 2 published in paper: Highly accurate protein structure prediction with AlphaFold (Jumper et al., 2021).
477bc19212addf9a · 100% confidence · shares 3 tags (alphafold, deepmind, nature)
Backpropagation algorithm popularized in: Rumelhart, Hinton, Williams 1986 — Nature paper.
e5471a750d13a672 · 100% confidence · shares 3 tags (foundational, introduced_in, nature)
Retrieval-Augmented Generation (RAG) introduced in paper: Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks (Lewis et al., 2020).
d15057ced937a103 · 100% confidence · shares 2 tags (foundational, 2020)
Chinchilla scaling laws introduced in paper: Training Compute-Optimal Large Language Models (Hoffmann et al., 2022).
8befcae6bce01a95 · 100% confidence · shares 2 tags (foundational, deepmind)
Use this claim in your code
Fetch this signed envelope from your application. The response includes the verbatim excerpt, primary source URLs, and an HMAC-SHA256 signature you can verify locally for audit trails.
cURL
curl https://sourcescore.org/api/v1/claims/a77a8dd48941a53d.jsonJavaScript / TypeScript
const r = await fetch("https://sourcescore.org/api/v1/claims/a77a8dd48941a53d.json");
const envelope = await r.json();
console.log(envelope.claim.statement);
// "AlphaFold 1 introduced in: Senior et al. 2020 — DeepMind protein structure prediction."Python
import httpx
r = httpx.get("https://sourcescore.org/api/v1/claims/a77a8dd48941a53d.json")
envelope = r.json()
print(envelope["claim"]["statement"])
# "AlphaFold 1 introduced in: Senior et al. 2020 — DeepMind protein structure prediction."LangChain (retrieve-then-cite)
from langchain_core.tools import tool
import httpx
@tool
def get_alphafold_1_fact() -> dict:
"""Fetch the verified SourceScore claim for AlphaFold 1."""
r = httpx.get("https://sourcescore.org/api/v1/claims/a77a8dd48941a53d.json")
return r.json()