Skip to content

Commit

Permalink
Correcting context for data context declaration in README
Browse files Browse the repository at this point in the history
- The supports query constrains to contexts, but the evidence context lacked the
  rdf:type statement for the data context
  • Loading branch information
mwatts15 committed Jun 2, 2023
1 parent 1c48baf commit 0ecc5b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ data and models to corresponding articles from peer-reviewed literature:
>>> evctx = conn(Context)(ident='http://example.org/evidence/context')

# Make a context for defining domain knowledge
>>> dctx = conn(Context)(ident='http://example.org/data/context')
>>> dctx = evctx(Context)(ident='http://example.org/data/context')
>>> doc = evctx(Document)(key="Sulston83", author='Sulston et al.', date='1983')
>>> e = evctx(Evidence)(key="Sulston83", reference=doc)
>>> avdl = dctx(Neuron)(name="AVDL")
Expand Down

0 comments on commit 0ecc5b9

Please sign in to comment.