SourceScore

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. [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. [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.json

Embed 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.

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.json

JavaScript / 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()