Skip to content

Commit 67efdbb

Browse files
authored
Merge branch 'main' into add_nginx_timeout_recipe
2 parents 0848bb0 + 791e8a1 commit 67efdbb

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

docs/data_models/dictionaries.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,7 @@ syntax for [json-ld](https://w3c.github.io/json-ld-syntax/#the-context):
120120
"nb": "http://neurobagel.org/vocab/",
121121
"ncit": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#",
122122
"nidm": "http://purl.org/nidash/nidm#",
123-
"snomed": "http://purl.bioontology.org/ontology/SNOMEDCT/",
124-
"cogatlas": "https://www.cognitiveatlas.org/task/id/"
123+
"snomed": "http://purl.bioontology.org/ontology/SNOMEDCT/"
125124
}
126125
}
127126
```
@@ -187,8 +186,8 @@ Term from the Neurobagel vocabulary.
187186

188187
### Diagnosis
189188

190-
Terms from the [SNOMED-CT ontology](https://browser.ihtsdotools.org/) for clinical diagnosis.
191-
Terms from the National Cancer Institute Thesaurus for healthy control status.
189+
Terms for clinical diagnosis are from the [SNOMED-CT ontology](https://browser.ihtsdotools.org/).
190+
Terms for healthy control status are from the National Cancer Institute Thesaurus.
192191

193192
```json hl_lines="10-11 13 15-16 19-20"
194193
{
@@ -307,6 +306,8 @@ Possible heuristics:
307306

308307
### Assessment tool
309308

309+
Terms are from the SNOMED-CT ontology.
310+
310311
For assessment tools like cognitive tests or rating scales,
311312
Neurobagel encodes whether a subject has a value/score for _at least one_ item or subscale of the assessment.
312313
Because assessment tools often have several subscales or items
@@ -330,8 +331,8 @@ when instances of missing values are present (see also section [Missing values](
330331
"Label": "Assessment tool"
331332
},
332333
"IsPartOf": {
333-
"TermURL": "cogatlas:tsk_4a57abb949ece",
334-
"Label": "Unified Parkinson's Disease Rating Scale"
334+
"TermURL": "snomed:342061000000106",
335+
"Label": "Unified Parkinsons disease rating scale score"
335336
}
336337
}
337338
},
@@ -343,8 +344,8 @@ when instances of missing values are present (see also section [Missing values](
343344
"Label": "Assessment tool"
344345
},
345346
"IsPartOf": {
346-
"TermURL": "cogatlas:tsk_4a57abb949ece",
347-
"Label": "Unified Parkinson's Disease Rating Scale"
347+
"TermURL": "snomed:342061000000106",
348+
"Label": "Unified Parkinsons disease rating scale score"
348349
},
349350
"MissingValues": [""]
350351
}

docs/data_models/term_naming_standards.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Naming conventions
44
### Namespace prefixes
5-
- Names should be all lowercase (e.g., `nidm`, `cogatlas`)
5+
- Names should be all lowercase (e.g., `nidm`, `snomed`)
66

77
### Properties (graph "edges")
88
- Names should adhere to camelCase (uses capitalized words except for the first word/letter)
@@ -27,14 +27,13 @@ What this might look like in semantic triples:
2727
In cases where we reuse a term for a class that comes from an existing controlled vocabulary, and that vocabulary follows a different naming convention (e.g., all lowercase), we should follow the existing naming convention.
2828

2929
## Currently used namespaces
30-
| Prefix | IRI | Types of terms |
31-
| ---------- | --------------------------------------------------- | ----------------------------------------- |
32-
| `nb` | http://neurobagel.org/vocab/ | Neurobagel-"owned" properties and classes |
33-
| `nbg` | http://neurobagel.org/graph/ | Neurobagel graph databases |
34-
| `snomed` | http://purl.bioontology.org/ontology/SNOMEDCT/ | diagnosis and sex values |
35-
| `ncit` | http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl# | group designation (e.g., healthy control) |
36-
| `nidm` | http://purl.org/nidash/nidm# | imaging modalities |
37-
| `cogatlas` | https://www.cognitiveatlas.org/task/id/ | cognitive assessments and tasks |
30+
| Prefix | IRI | Types of terms |
31+
| ----- | ----- | ----- |
32+
| `nb` | http://neurobagel.org/vocab/ | Neurobagel-"owned" properties and classes |
33+
| `snomed` | http://purl.bioontology.org/ontology/SNOMEDCT/ | diagnoses, sex, and assessments or instruments |
34+
| `ncit` | http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl# | group designation (e.g., healthy control) |
35+
| `nidm` | http://purl.org/nidash/nidm# | imaging modalities |
36+
| `np` | https://github.com/nipoppy/pipeline-catalog/tree/main/processing/ | processing pipeline and derivative metadata |
3837

3938

4039
## What if an `nb` term already exists in another controlled vocabulary?

docs/overrides/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ <h2 class="text-3xl font-bold tracking-tight text-white sm:text-3xl">Annotate yo
199199
<h2 class="text-3xl font-bold tracking-tight text-white sm:text-3xl">
200200
Work with standardized terminologies
201201
</h2>
202-
<p class="mt-6 text-lg leading-8 text-gray-300">Reap the benefits of curated vocabularies (e.g., BIDS, SNOMED CT, and the Cognitive Atlas) and linked data, without the implementation expertise.</p>
202+
<p class="mt-6 text-lg leading-8 text-gray-300">Reap the benefits of curated vocabularies (e.g., BIDS, SNOMED CT, and NIDM) and linked data, without the implementation expertise.</p>
203203
<div class="mt-10 flex items-center justify-center gap-x-6 lg:justify-start">
204204
<a href="/dictionaries" class="text-sm font-semibold leading-6 text-white">Learn more <span
205205
aria-hidden="true"></span></a>

0 commit comments

Comments
 (0)