Skip to content

Commit 39b0640

Browse files
docs: drop provenance terminology from README and a test comment
DataJoint's own docs use the relational workflow model's vocabulary (lineage, reproducibility); provenance is a platform-level compatibility concern documented separately.
1 parent 8d16539 commit 39b0640

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DataJoint is a framework for scientific data pipelines based on the **Relational
55
- **Tables represent workflow steps** — Each table is a step in your pipeline
66
- **Foreign keys encode dependencies** — Parent tables must be populated before child tables
77
- **Computations are declarative** — Define *what* to compute; DataJoint handles *when*
8-
- **Results are immutable** — Full provenance and reproducibility
8+
- **Results are immutable** — Full lineage and reproducibility
99

1010
**Documentation:** https://docs.datajoint.com
1111

tests/integration/test_autopopulate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ class Greeting(dj.Computed):
381381
"""
382382

383383
def make(self, key):
384-
# Provenance-safe read: self.upstream pre-restricted to current key
384+
# Upstream read: self.upstream pre-restricted to current key
385385
name = self.upstream[Subject].fetch1("name")
386386
self.insert1({**key, "greeting": f"Hello, {name}!"})
387387

0 commit comments

Comments
 (0)