From eceb642ff7699be4f2d540a425c01f7a7d86d6cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Str=C3=B6mert?= Date: Wed, 6 Apr 2022 17:11:16 +0200 Subject: [PATCH] #40 add files and folders seeded with ODK --- rxno_odk/.github/workflows/diff.yml | 117 + rxno_odk/.github/workflows/qc.yml | 33 + rxno_odk/.gitignore | 39 + rxno_odk/CONTRIBUTING.md | 15 + rxno_odk/README.md | 29 + rxno_odk/issue_template.md | 21 + rxno_odk/src/metadata/README.md | 24 + rxno_odk/src/metadata/rxno.md | 48 + rxno_odk/src/metadata/rxno.yml | 27 + rxno_odk/src/ontology/Makefile | 542 ++ rxno_odk/src/ontology/README-editors.md | 158 + rxno_odk/src/ontology/catalog-v001.xml | 26 + rxno_odk/src/ontology/imports/bfo_import.owl | 38 + rxno_odk/src/ontology/imports/bfo_terms.txt | 1 + rxno_odk/src/ontology/imports/mop_import.owl | 38 + rxno_odk/src/ontology/imports/mop_terms.txt | 1 + rxno_odk/src/ontology/imports/obi_import.owl | 7781 +++++++++++++++++ rxno_odk/src/ontology/imports/obi_terms.txt | 1 + rxno_odk/src/ontology/imports/omo_import.owl | 450 + rxno_odk/src/ontology/imports/omo_terms.txt | 1 + rxno_odk/src/ontology/imports/ro_import.owl | 3607 ++++++++ rxno_odk/src/ontology/imports/ro_terms.txt | 1 + rxno_odk/src/ontology/run.bat | 1 + rxno_odk/src/ontology/run.sh | 25 + rxno_odk/src/ontology/rxno-edit.owl | 53 + rxno_odk/src/ontology/rxno-idranges.owl | 53 + rxno_odk/src/ontology/rxno-odk.yaml | 22 + rxno_odk/src/ontology/rxno.Makefile | 6 + rxno_odk/src/scripts/update_repo.sh | 28 + rxno_odk/src/scripts/validate_id_ranges.sc | 75 + rxno_odk/src/sparql/README.md | 32 + rxno_odk/src/sparql/basic-report.sparql | 12 + .../src/sparql/class-count-by-prefix.sparql | 10 + rxno_odk/src/sparql/edges.sparql | 19 + .../src/sparql/inject-subset-declaration.ru | 11 + .../src/sparql/iri-range-violation.sparql | 19 + .../sparql/label-with-iri-violation.sparql | 9 + rxno_odk/src/sparql/labels.sparql | 9 + rxno_odk/src/sparql/obsoletes.sparql | 14 + .../owldef-self-reference-violation.sparql | 12 + rxno_odk/src/sparql/postprocess-module.ru | 16 + rxno_odk/src/sparql/preprocess-module.ru | 22 + rxno_odk/src/sparql/rxno_terms.sparql | 7 + rxno_odk/src/sparql/simple-seed.sparql | 14 + rxno_odk/src/sparql/subsets-labeled.sparql | 14 + rxno_odk/src/sparql/synonyms.sparql | 26 + rxno_odk/src/sparql/terms.sparql | 15 + rxno_odk/src/sparql/xrefs.sparql | 8 + 48 files changed, 13530 insertions(+) create mode 100644 rxno_odk/.github/workflows/diff.yml create mode 100644 rxno_odk/.github/workflows/qc.yml create mode 100644 rxno_odk/.gitignore create mode 100644 rxno_odk/CONTRIBUTING.md create mode 100644 rxno_odk/README.md create mode 100644 rxno_odk/issue_template.md create mode 100644 rxno_odk/src/metadata/README.md create mode 100644 rxno_odk/src/metadata/rxno.md create mode 100644 rxno_odk/src/metadata/rxno.yml create mode 100644 rxno_odk/src/ontology/Makefile create mode 100644 rxno_odk/src/ontology/README-editors.md create mode 100644 rxno_odk/src/ontology/catalog-v001.xml create mode 100644 rxno_odk/src/ontology/imports/bfo_import.owl create mode 100644 rxno_odk/src/ontology/imports/bfo_terms.txt create mode 100644 rxno_odk/src/ontology/imports/mop_import.owl create mode 100644 rxno_odk/src/ontology/imports/mop_terms.txt create mode 100644 rxno_odk/src/ontology/imports/obi_import.owl create mode 100644 rxno_odk/src/ontology/imports/obi_terms.txt create mode 100644 rxno_odk/src/ontology/imports/omo_import.owl create mode 100644 rxno_odk/src/ontology/imports/omo_terms.txt create mode 100644 rxno_odk/src/ontology/imports/ro_import.owl create mode 100644 rxno_odk/src/ontology/imports/ro_terms.txt create mode 100644 rxno_odk/src/ontology/run.bat create mode 100755 rxno_odk/src/ontology/run.sh create mode 100644 rxno_odk/src/ontology/rxno-edit.owl create mode 100644 rxno_odk/src/ontology/rxno-idranges.owl create mode 100644 rxno_odk/src/ontology/rxno-odk.yaml create mode 100644 rxno_odk/src/ontology/rxno.Makefile create mode 100644 rxno_odk/src/scripts/update_repo.sh create mode 100644 rxno_odk/src/scripts/validate_id_ranges.sc create mode 100644 rxno_odk/src/sparql/README.md create mode 100644 rxno_odk/src/sparql/basic-report.sparql create mode 100644 rxno_odk/src/sparql/class-count-by-prefix.sparql create mode 100644 rxno_odk/src/sparql/edges.sparql create mode 100644 rxno_odk/src/sparql/inject-subset-declaration.ru create mode 100644 rxno_odk/src/sparql/iri-range-violation.sparql create mode 100644 rxno_odk/src/sparql/label-with-iri-violation.sparql create mode 100644 rxno_odk/src/sparql/labels.sparql create mode 100644 rxno_odk/src/sparql/obsoletes.sparql create mode 100644 rxno_odk/src/sparql/owldef-self-reference-violation.sparql create mode 100644 rxno_odk/src/sparql/postprocess-module.ru create mode 100644 rxno_odk/src/sparql/preprocess-module.ru create mode 100644 rxno_odk/src/sparql/rxno_terms.sparql create mode 100644 rxno_odk/src/sparql/simple-seed.sparql create mode 100644 rxno_odk/src/sparql/subsets-labeled.sparql create mode 100644 rxno_odk/src/sparql/synonyms.sparql create mode 100644 rxno_odk/src/sparql/terms.sparql create mode 100644 rxno_odk/src/sparql/xrefs.sparql diff --git a/rxno_odk/.github/workflows/diff.yml b/rxno_odk/.github/workflows/diff.yml new file mode 100644 index 0000000..b82581c --- /dev/null +++ b/rxno_odk/.github/workflows/diff.yml @@ -0,0 +1,117 @@ +name: 'Create ROBOT diffs on Pull requests' + +on: + # Triggers the workflow on pull request events for the master branch + pull_request: + branches: [ master ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + edit_file: + runs-on: ubuntu-latest + container: obolibrary/odklite:v1.3.0 + steps: + - uses: actions/checkout@v2 + # Checks-out main branch under "main" directory + - uses: actions/checkout@v2 + with: + ref: master + path: master + - name: Diff classification + run: export ROBOT_JAVA_ARGS=-Xmx6G; robot diff --labels True --left master/src/ontology/rxno-edit.owl --left-catalog master/src/ontology/catalog-v001.xml --right src/ontology/rxno-edit.owl --right-catalog src/ontology/catalog-v001.xml -f markdown -o edit-diff.md + - name: Upload diff + uses: actions/upload-artifact@v2 + with: + name: edit-diff.md + path: edit-diff.md + classify_branch: + runs-on: ubuntu-latest + container: obolibrary/odklite:v1.3.0 + steps: + - uses: actions/checkout@v2 + - name: Classify ontology + run: cd src/ontology; make IMP=FALSE PAT=FALSE MIR=FALSE rxno.owl + - name: Upload PR rxno.owl + uses: actions/upload-artifact@v2 + with: + name: rxno-pr.owl + path: src/ontology/rxno.owl + retention-days: 1 + classify_main: + runs-on: ubuntu-latest + container: obolibrary/odklite:v1.3.0 + steps: + - uses: actions/checkout@v2 + with: + ref: master + - name: Classify ontology + run: cd src/ontology; make IMP=FALSE PAT=FALSE MIR=FALSE rxno.owl + - name: Upload master rxno.owl + uses: actions/upload-artifact@v2 + with: + name: rxno-master.owl + path: src/ontology/rxno.owl + retention-days: 1 + diff_classification: + needs: + - classify_branch + - classify_main + runs-on: ubuntu-latest + container: obolibrary/odklite:v1.3.0 + steps: + - uses: actions/checkout@v2 + - name: Download master classification + uses: actions/download-artifact@v2 + with: + name: rxno-master.owl + path: src/ontology/rxno-master.owl + - name: Download PR classification + uses: actions/download-artifact@v2 + with: + name: rxno-pr.owl + path: src/ontology/rxno-pr.owl + - name: Diff classification + run: export ROBOT_JAVA_ARGS=-Xmx6G; cd src/ontology; robot diff --labels True --left rxno-master.owl/rxno.owl --left-catalog catalog-v001.xml --right rxno-pr.owl/rxno.owl --right-catalog catalog-v001.xml -f markdown -o classification-diff.md + - name: Upload diff + uses: actions/upload-artifact@v2 + with: + name: classification-diff.md + path: src/ontology/classification-diff.md + post_comment: + needs: [diff_classification, edit_file] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Download reasoned diff + uses: actions/download-artifact@v2 + with: + name: classification-diff.md + path: classification-diff.md + - name: Prepare reasoned comment + run: "echo \"
\n Here's a diff of how these changes impact the classified ontology: \n\" >comment.md; cat classification-diff.md/classification-diff.md >>comment.md" + - name: Post reasoned comment + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: NejcZdovc/comment-pr@v1.1.1 + with: + file: "../../comment.md" + identifier: "REASONED" + - uses: actions/checkout@v2 + - name: Download edit diff + uses: actions/download-artifact@v2 + with: + name: edit-diff.md + path: edit-diff.md + - name: Prepare edit file comment + run: "echo \"
\n Here's a diff of your edit file (unreasoned) \n\" >edit-comment.md; cat edit-diff.md/edit-diff.md >>edit-comment.md" + - name: Post comment + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: NejcZdovc/comment-pr@v1.1.1 + with: + file: "../../edit-comment.md" + identifier: "UNREASONED" + diff --git a/rxno_odk/.github/workflows/qc.yml b/rxno_odk/.github/workflows/qc.yml new file mode 100644 index 0000000..132559d --- /dev/null +++ b/rxno_odk/.github/workflows/qc.yml @@ -0,0 +1,33 @@ +# Basic ODK workflow + +name: CI + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the main branch + push: + branches: [ main ] + pull_request: + branches: [ main ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "ontology_qc" + ontology_qc: + # The type of runner that the job will run on + runs-on: ubuntu-latest + container: obolibrary/odkfull:v1.3.0 + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + - name: Run ontology QC checks + env: + DEFAULT_BRANCH: main + run: cd src/ontology && make ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx6G' test IMP=false PAT=false + diff --git a/rxno_odk/.gitignore b/rxno_odk/.gitignore new file mode 100644 index 0000000..57c47dd --- /dev/null +++ b/rxno_odk/.gitignore @@ -0,0 +1,39 @@ +.DS_Store +semantic.cache +bin/ + +*.tmp +*.tmp.obo +*.tmp.owl +*.tmp.json + +src/ontology/mirror +src/ontology/mirror/* +src/ontology/reports/* +src/ontology/rxno.owl +src/ontology/rxno.obo +src/ontology/rxno.json +src/ontology/rxno-base.* +src/ontology/rxno-basic.* +src/ontology/rxno-full.* +src/ontology/rxno-simple.* +src/ontology/rxno-simple-non-classified.* + +src/ontology/seed.txt +src/ontology/dosdp-tools.log +src/ontology/ed_definitions_merged.owl +src/ontology/ontologyterms.txt +src/ontology/simple_seed.txt +src/ontology/patterns +src/ontology/merged-rxno-edit.owl + +src/ontology/target/ +src/ontology/tmp/* +!src/ontology/tmp/README.md + +src/ontology/imports/*_terms_combined.txt + +src/patterns/data/**/*.ofn +src/patterns/data/**/*.txt +src/patterns/pattern_owl_seed.txt +src/patterns/all_pattern_terms.txt \ No newline at end of file diff --git a/rxno_odk/CONTRIBUTING.md b/rxno_odk/CONTRIBUTING.md new file mode 100644 index 0000000..ca0063b --- /dev/null +++ b/rxno_odk/CONTRIBUTING.md @@ -0,0 +1,15 @@ +## Before you write a new request, please consider the following: + +- **Does the term already exist?** Before submitting suggestions for new ontology terms, check whether the term exist, either as a primary term or a synonym term. You can search using [OLS](http://www.ebi.ac.uk/ols/ontologies/rxno) + +## Guidelines for creating GitHub tickets with contributions to the ontology: + +1. **Write a detailed request:** Please be specific and include as many details as necessary, providing background information, and if possible, suggesting a solution. GOC editors will be better equipped to address your suggestions if you offer details regarding *'what is wrong'*, *'why'*, and *'how to fix it'*. + +2. **Provide examples and references:** Please include PMIDs for new term requests, and include also screenshots, or URLs illustrating the current ontology structure for other types of requests. + +3. **For new term request:** Be sure to provide suggestions for label (name), definition, references, position in hierarchy, etc. + +4. **For updates to relationships:** Provide details of the current axioms, why you think they are wrong or not sufficient, and what exactly should be added or removed. + +On behalf of the Named Reaction Ontology editorial team, Thanks! \ No newline at end of file diff --git a/rxno_odk/README.md b/rxno_odk/README.md new file mode 100644 index 0000000..ef15399 --- /dev/null +++ b/rxno_odk/README.md @@ -0,0 +1,29 @@ + +![Build Status](https://github.com/rsc-ontologies/rxno/workflows/CI/badge.svg) +# Named Reaction Ontology + +Description: None + +More information can be found at http://obofoundry.org/ontology/rxno + +## Versions + +### Stable release versions + +The latest version of the ontology can always be found at: + +http://purl.obolibrary.org/obo/rxno.owl + +(note this will not show up until the request has been approved by obofoundry.org) + +### Editors' version + +Editors of this ontology should use the edit version, [src/ontology/rxno-edit.owl](src/ontology/rxno-edit.owl) + +## Contact + +Please use this GitHub repository's [Issue tracker](https://github.com/rsc-ontologies/rxno/issues) to request new terms/classes or report errors or specific concerns related to the ontology. + +## Acknowledgements + +This ontology repository was created using the [Ontology Development Kit (ODK)](https://github.com/INCATools/ontology-development-kit). \ No newline at end of file diff --git a/rxno_odk/issue_template.md b/rxno_odk/issue_template.md new file mode 100644 index 0000000..d9b0cdc --- /dev/null +++ b/rxno_odk/issue_template.md @@ -0,0 +1,21 @@ +For new term requests, please provide the following information: + +## Preferred term label + +(e.g., Asplenia) + +## Synonyms + +(e.g., Absent spleen) + +## Textual definition + +the definition should be understandable even for non-specialists. Include a PubMed ID to refer to any relevant article that provides additional information about the suggested term. + +## Suggested parent term + +Please look in the hierarchy in a browser such as [OLS](http://www.ebi.ac.uk/ols/ontologies/rxno) + +## Attribution + +If you would like a nanoattribution, please indicate your ORCID id \ No newline at end of file diff --git a/rxno_odk/src/metadata/README.md b/rxno_odk/src/metadata/README.md new file mode 100644 index 0000000..eaad12d --- /dev/null +++ b/rxno_odk/src/metadata/README.md @@ -0,0 +1,24 @@ +Metadata files for the OBO Library + + * [rxno.yml](rxno.yml) + * Determines how your purl.obolibrary.org/obo/rxno/ redirects will be handled + * Go here: https://github.com/OBOFoundry/purl.obolibrary.org/tree/master/config + * Click [New File](https://github.com/OBOFoundry/purl.obolibrary.org/new/master/config) + * Paste in the contents of [rxno.yml](rxno.yml) + * Click "Commit new file" + * IMPORTANT: remember to make a pull request + * An OBO admin will merge your Pull Request *providing it meets the requirements of the OBO library* + * [rxno.md](rxno.md) + * Determines how your metadata is shown on OBO Library, OLS and AberOWL + * Go here: https://github.com/OBOFoundry/OBOFoundry.github.io/tree/master/ontology + * Click [New File](https://github.com/OBOFoundry/OBOFoundry.github.io/new/master/ontology) + * Paste in the contents of [rxno.md](rxno.md) + * Click "Commit new file" + * IMPORTANT: remember to make a pull request + * An OBO admin will merge your Pull Request *providing it meets the requirements of the OBO library* + +For more background see: + + * http://obofoundry.org/ + * http://obofoundry.org/faq/how-do-i-edit-metadata.html + diff --git a/rxno_odk/src/metadata/rxno.md b/rxno_odk/src/metadata/rxno.md new file mode 100644 index 0000000..6167ae0 --- /dev/null +++ b/rxno_odk/src/metadata/rxno.md @@ -0,0 +1,48 @@ +--- +layout: ontology_detail +id: rxno +title: Named Reaction Ontology +jobs: + - id: https://travis-ci.org/rsc-ontologies/rxno + type: travis-ci +build: + checkout: git clone https://github.com/rsc-ontologies/rxno.git + system: git + path: "." +contact: + email: + label: + github: +description: Named Reaction Ontology is an ontology... +domain: stuff +homepage: https://github.com/rsc-ontologies/rxno +products: + - id: rxno.owl + name: "Named Reaction Ontology main release in OWL format" + - id: rxno.obo + name: "Named Reaction Ontology additional release in OBO format" + - id: rxno.json + name: "Named Reaction Ontology additional release in OBOJSon format" + - id: rxno/rxno-base.owl + name: "Named Reaction Ontology main release in OWL format" + - id: rxno/rxno-base.obo + name: "Named Reaction Ontology additional release in OBO format" + - id: rxno/rxno-base.json + name: "Named Reaction Ontology additional release in OBOJSon format" +dependencies: +- id: ro +- id: mop +- id: bfo +- id: obi +- id: omo + +tracker: https://github.com/rsc-ontologies/rxno/issues +license: + url: http://creativecommons.org/licenses/by/3.0/ + label: CC-BY +activity_status: active +--- + +Enter a detailed description of your ontology here. You can use arbitrary markdown and HTML. +You can also embed images too. + diff --git a/rxno_odk/src/metadata/rxno.yml b/rxno_odk/src/metadata/rxno.yml new file mode 100644 index 0000000..c2fc2ea --- /dev/null +++ b/rxno_odk/src/metadata/rxno.yml @@ -0,0 +1,27 @@ +# PURL configuration for http://purl.obolibrary.org/obo/rxno + +idspace: RXNO +base_url: /obo/rxno + +products: +- rxno.owl: https://raw.githubusercontent.com/rsc-ontologies/rxno/main/rxno.owl +- rxno.obo: https://raw.githubusercontent.com/rsc-ontologies/rxno/main/rxno.obo + +term_browser: ontobee +example_terms: +- RXNO_0000000 + +entries: + +- prefix: /releases/ + replacement: https://raw.githubusercontent.com/rsc-ontologies/rxno/v + +- prefix: /tracker/ + replacement: https://github.com/rsc-ontologies/rxno/issues + +- prefix: /about/ + replacement: http://www.ontobee.org/ontology/RXNO?iri=http://purl.obolibrary.org/obo/ + +## generic fall-through, serve direct from github by default +- prefix: / + replacement: https://raw.githubusercontent.com/rsc-ontologies/rxno/main/ diff --git a/rxno_odk/src/ontology/Makefile b/rxno_odk/src/ontology/Makefile new file mode 100644 index 0000000..c234032 --- /dev/null +++ b/rxno_odk/src/ontology/Makefile @@ -0,0 +1,542 @@ +# ---------------------------------------- +# Makefile for rxno +# Generated using ontology-development-kit +# ODK Version: v1.3.0 +# ---------------------------------------- +# IMPORTANT: DO NOT EDIT THIS FILE. To override default make goals, use rxno.Makefile instead + + +# ---------------------------------------- +# More information: https://github.com/INCATools/ontology-development-kit/ + + +# ---------------------------------------- +# Standard Constants +# ---------------------------------------- +# these can be overwritten on the command line + +URIBASE= http://purl.obolibrary.org/obo +ONT= rxno +ONTBASE= $(URIBASE)/$(ONT) +EDIT_FORMAT= owl +SRC = $(ONT)-edit.$(EDIT_FORMAT) +CATALOG= catalog-v001.xml +ROBOT= robot --catalog $(CATALOG) + +OWLTOOLS= owltools --use-catalog +RELEASEDIR= ../.. +REPORTDIR= reports +TEMPLATEDIR= ../templates +TMPDIR= tmp +MIRRORDIR= mirror +IMPORTDIR= imports +SUBSETDIR= subsets +SCRIPTSDIR= ../scripts +SPARQLDIR = ../sparql +COMPONENTSDIR = components +REPORT_FAIL_ON = None +REPORT_LABEL = -l true +REPORT_PROFILE_OPTS = +OBO_FORMAT_OPTIONS = +SPARQL_VALIDATION_CHECKS = owldef-self-reference iri-range label-with-iri +SPARQL_EXPORTS = basic-report class-count-by-prefix edges xrefs obsoletes synonyms +ODK_VERSION_MAKEFILE = v1.3.0 + +TODAY ?= $(shell date +%Y-%m-%d) +OBODATE ?= $(shell date +'%d:%m:%Y %H:%M') +VERSION= $(TODAY) +ANNOTATE_ONTOLOGY_VERSION = annotate -V $(ONTBASE)/releases/$(VERSION)/$@ --annotation owl:versionInfo $(VERSION) +OTHER_SRC = +ONTOLOGYTERMS = $(TMPDIR)/ontologyterms.txt + +FORMATS = $(sort owl obo json owl) +FORMATS_INCL_TSV = $(sort $(FORMATS) tsv) +RELEASE_ARTEFACTS = $(sort $(ONT)-base $(ONT)-full $(ONT)-base $(ONT)-full) + +# ---------------------------------------- +# Top-level targets +# ---------------------------------------- + +.PHONY: .FORCE + +.PHONY: all +all: odkversion test all_assets + +.PHONY: test +test: odkversion sparql_test robot_reports $(REPORTDIR)/validate_profile_owl2dl_$(ONT).owl.txt + $(ROBOT) reason --input $(SRC) --reasoner ELK --equivalent-classes-allowed asserted-only --exclude-tautologies structural --output test.owl && rm test.owl && echo "Success" + +.PHONY: odkversion +odkversion: + echo "ODK Makefile version: $(ODK_VERSION_MAKEFILE) (this is the version of the ODK with which this Makefile was generated, not the version of the ODK you are running)" &&\ + echo "ROBOT version (ODK): " && $(ROBOT) --version + +$(TMPDIR) $(REPORTDIR) $(MIRRORDIR) $(IMPORTDIR) $(COMPONENTSDIR) $(SUBSETDIR): + mkdir -p $@ + +# ---------------------------------------- +# Release assets +# ---------------------------------------- + +MAIN_PRODUCTS = $(sort $(foreach r,$(RELEASE_ARTEFACTS), $(r)) $(ONT)) +MAIN_GZIPPED = +MAIN_FILES = $(foreach n,$(MAIN_PRODUCTS), $(foreach f,$(FORMATS), $(n).$(f))) $(MAIN_GZIPPED) +SRCMERGED = $(TMPDIR)/merged-$(SRC) + +.PHONY: all_main +all_main: $(MAIN_FILES) + +# ---------------------------------------- +# Import assets +# ---------------------------------------- + + +IMPORTS = ro mop bfo obi omo + +IMPORT_ROOTS = $(patsubst %, $(IMPORTDIR)/%_import, $(IMPORTS)) +IMPORT_OWL_FILES = $(foreach n,$(IMPORT_ROOTS), $(n).owl) +IMPORT_FILES = $(IMPORT_OWL_FILES) + + +.PHONY: all_imports +all_imports: $(IMPORT_FILES) + +# ---------------------------------------- +# Subset assets +# ---------------------------------------- + + +SUBSETS = + +SUBSET_ROOTS = $(patsubst %, $(SUBSETDIR)/%, $(SUBSETS)) +SUBSET_FILES = $(foreach n,$(SUBSET_ROOTS), $(foreach f,$(FORMATS_INCL_TSV), $(n).$(f))) + +.PHONY: all_subsets +all_subsets: $(SUBSET_FILES) + +# ---------------------------------------- +# QC Reports & Utilities +# ---------------------------------------- + +OBO_REPORT = $(SRC)-obo-report +REPORTS = $(OBO_REPORT) +REPORT_FILES = $(patsubst %, $(REPORTDIR)/%.tsv, $(REPORTS)) + +.PHONY: robot_reports +robot_reports: $(REPORT_FILES) + +.PHONY: all_reports +all_reports: custom_reports robot_reports + +# ---------------------------------------- +# ROBOT OWL Profile checking +# ---------------------------------------- + +# The conversion to functional syntax is necessary to avoid undeclared entity violations. +$(REPORTDIR)/validate_profile_owl2dl_%.txt: % | $(REPORTDIR) $(TMPDIR) + $(ROBOT) merge -i $< convert -f ofn -o $(TMPDIR)/validate.ofn + $(ROBOT) validate-profile --profile DL -i $(TMPDIR)/validate.ofn -o $@ || { cat $@ && exit 1; } +.PRECIOUS: $(REPORTDIR)/validate_profile_owl2dl_%.txt + +validate_profile_%: $(REPORTDIR)/validate_profile_owl2dl_%.txt + echo "$* profile validation completed." + +# ---------------------------------------- +# Sparql queries: Q/C +# ---------------------------------------- + +# these live in the ../sparql directory, and have suffix -violation.sparql +# adding the name here will make the violation check live. + +SPARQL_VALIDATION_QUERIES = $(foreach V,$(SPARQL_VALIDATION_CHECKS),$(SPARQLDIR)/$(V)-violation.sparql) + +sparql_test: $(SRC) catalog-v001.xml | $(REPORTDIR) +ifneq ($(SPARQL_VALIDATION_QUERIES),) + $(ROBOT) verify --catalog catalog-v001.xml -i $< --queries $(SPARQL_VALIDATION_QUERIES) -O $(REPORTDIR) +endif + +# ---------------------------------------- +# ROBOT report +# ---------------------------------------- + +$(REPORTDIR)/$(SRC)-obo-report.tsv: $(SRCMERGED) | $(REPORTDIR) + $(ROBOT) report -i $< $(REPORT_LABEL) $(REPORT_PROFILE_OPTS) --fail-on $(REPORT_FAIL_ON) --print 5 -o $@ + +$(REPORTDIR)/%-obo-report.tsv: % | $(REPORTDIR) + $(ROBOT) report -i $< $(REPORT_LABEL) $(REPORT_PROFILE_OPTS) --fail-on $(REPORT_FAIL_ON) --print 5 -o $@ + +# ---------------------------------------- +# Release assets +# ---------------------------------------- + +ASSETS = \ + $(IMPORT_FILES) \ + $(MAIN_FILES) \ + $(REPORT_FILES) \ + $(SUBSET_FILES) + +RELEASE_ASSETS = \ + $(MAIN_FILES) \ + $(SUBSET_FILES) + +.PHONY: all_assets +all_assets: $(ASSETS) + +.PHONY: show_assets +show_assets: + echo $(ASSETS) + du -sh $(ASSETS) + +# ---------------------------------------- +# Release Management +# ---------------------------------------- + +CLEANFILES=$(MAIN_FILES) $(SRCMERGED) +# This should be executed by the release manager whenever time comes to make a release. +# It will ensure that all assets/files are fresh, and will copy to release folder + +.PHONY: prepare_release +prepare_release: all + rsync -R $(RELEASE_ASSETS) $(RELEASEDIR) &&\ + rm -f $(CLEANFILES) &&\ + echo "Release files are now in $(RELEASEDIR) - now you should commit, push and make a release on your git hosting site such as GitHub or GitLab" + +.PHONY: prepare_initial_release +prepare_initial_release: all_assets + rsync -R $(RELEASE_ASSETS) $(RELEASEDIR) &&\ + rm -f $(patsubst %, ./%, $(CLEANFILES)) &&\ + cd $(RELEASEDIR) && git add $(RELEASE_ASSETS) + +# ------------------------ +# Imports: Seeding system +# ------------------------ + +# seed.txt contains all referenced entities +IMPORTSEED=$(TMPDIR)/seed.txt +PRESEED=$(TMPDIR)/pre_seed.txt + +$(SRCMERGED): $(SRC) $(OTHER_SRC) + $(ROBOT) remove --input $< --select imports --trim false \ + merge $(patsubst %, -i %, $(OTHER_SRC)) -o $@ + +$(PRESEED): $(SRCMERGED) + $(ROBOT) query -f csv -i $< --query ../sparql/terms.sparql $@.tmp &&\ + cat $@.tmp | sort | uniq > $@ + + + +ALLSEED = $(PRESEED) \ + + +$(IMPORTSEED): $(ALLSEED) | $(TMPDIR) + if [ $(IMP) = true ]; then cat $(ALLSEED) | sort | uniq > $@; fi + +ANNOTATION_PROPERTIES=rdfs:label IAO:0000115 + +# ---------------------------------------- +# Import modules +# ---------------------------------------- +# Most ontologies are modularly constructed using portions of other ontologies +# These live in the imports/ folder +# This pattern uses ROBOT to generate an import module + +# Should be able to drop this if robot can just take a big messy list of terms as input. +$(IMPORTDIR)/%_terms_combined.txt: $(IMPORTSEED) $(IMPORTDIR)/%_terms.txt + if [ $(IMP) = true ]; then cat $^ | grep -v ^# | sort | uniq > $@; fi + + + + +$(IMPORTDIR)/%_import.owl: $(MIRRORDIR)/%.owl $(IMPORTDIR)/%_terms_combined.txt + if [ $(IMP) = true ]; then $(ROBOT) query -i $< --update ../sparql/preprocess-module.ru \ + extract -T $(IMPORTDIR)/$*_terms_combined.txt --force true --copy-ontology-annotations true --individuals include --method BOT \ + query --update ../sparql/inject-subset-declaration.ru --update ../sparql/postprocess-module.ru \ + annotate --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) --output $@.tmp.owl && mv $@.tmp.owl $@; fi + +.PRECIOUS: $(IMPORTDIR)/%_import.owl + +.PHONY: refresh-imports +refresh-imports: + make IMP=true MIR=true PAT=false IMP_LARGE=true all_imports -B + +.PHONY: no-mirror-refresh-imports +no-mirror-refresh-imports: + make IMP=true MIR=false PAT=false IMP_LARGE=true all_imports -B + +.PHONY: refresh-imports-excluding-large +refresh-imports-excluding-large: + make IMP=true MIR=true PAT=false IMP_LARGE=false all_imports -B + +.PHONY: refresh-% +refresh-%: + make IMP=true IMP_LARGE=true MIR=true PAT=false $(IMPORTDIR)/$*_import.owl -B + +.PHONY: no-mirror-refresh-% +no-mirror-refresh-%: + make IMP=true IMP_LARGE=true MIR=false PAT=false $(IMPORTDIR)/$*_import.owl -B + + +# ---------------------------------------- +# Mirroring upstream ontologies +# ---------------------------------------- + +IMP=true # Global parameter to bypass import generation +MIR=true # Global parameter to bypass mirror generation +IMP_LARGE=true # Global parameter to bypass handling of large imports + + + +## ONTOLOGY: ro +.PHONY: mirror-ro +.PRECIOUS: $(MIRRORDIR)/ro.owl +mirror-ro: | $(TMPDIR) + if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(URIBASE)/ro.owl --create-dirs -o $(MIRRORDIR)/ro.owl --retry 4 --max-time 200 && $(ROBOT) convert -i $(MIRRORDIR)/ro.owl -o $@.tmp.owl && mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + + +## ONTOLOGY: mop +.PHONY: mirror-mop +.PRECIOUS: $(MIRRORDIR)/mop.owl +mirror-mop: | $(TMPDIR) + if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(URIBASE)/mop.owl --create-dirs -o $(MIRRORDIR)/mop.owl --retry 4 --max-time 200 && $(ROBOT) convert -i $(MIRRORDIR)/mop.owl -o $@.tmp.owl && mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + + +## ONTOLOGY: bfo +.PHONY: mirror-bfo +.PRECIOUS: $(MIRRORDIR)/bfo.owl +mirror-bfo: | $(TMPDIR) + if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(URIBASE)/bfo.owl --create-dirs -o $(MIRRORDIR)/bfo.owl --retry 4 --max-time 200 && $(ROBOT) convert -i $(MIRRORDIR)/bfo.owl -o $@.tmp.owl && mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + + +## ONTOLOGY: obi +.PHONY: mirror-obi +.PRECIOUS: $(MIRRORDIR)/obi.owl +mirror-obi: | $(TMPDIR) + if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(URIBASE)/obi.owl --create-dirs -o $(MIRRORDIR)/obi.owl --retry 4 --max-time 200 && $(ROBOT) convert -i $(MIRRORDIR)/obi.owl -o $@.tmp.owl && mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + + +## ONTOLOGY: omo +.PHONY: mirror-omo +.PRECIOUS: $(MIRRORDIR)/omo.owl +mirror-omo: | $(TMPDIR) + if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(URIBASE)/omo.owl --create-dirs -o $(MIRRORDIR)/omo.owl --retry 4 --max-time 200 && $(ROBOT) convert -i $(MIRRORDIR)/omo.owl -o $@.tmp.owl && mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + + +$(MIRRORDIR)/%.owl: mirror-% | $(MIRRORDIR) + if [ $(IMP) = true ] && [ $(MIR) = true ]; then if cmp -s $(TMPDIR)/mirror-$*.owl $@ ; then echo "Mirror identical, ignoring."; else echo "Mirrors different, updating." && cp $(TMPDIR)/mirror-$*.owl $@; fi; fi + + + + +# ---------------------------------------- +# Subsets +# ---------------------------------------- +$(SUBSETDIR)/%.tsv: $(SUBSETDIR)/%.owl + $(ROBOT) query -f tsv -i $< -s ../sparql/labels.sparql $@ +.PRECIOUS: $(SUBSETDIR)/%.tsv + +$(SUBSETDIR)/%.owl: $(ONT).owl | $(SUBSETDIR) + $(OWLTOOLS) $< --extract-ontology-subset --fill-gaps --subset $* -o $@.tmp.owl && mv $@.tmp.owl $@ &&\ + $(ROBOT) annotate --input $@ --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) -o $@.tmp.owl && mv $@.tmp.owl $@ +.PRECIOUS: $(SUBSETDIR)/%.owl + + +$(SUBSETDIR)/%.obo: $(SUBSETDIR)/%.owl + $(ROBOT) convert --input $< --check false -f obo $(OBO_FORMAT_OPTIONS) -o $@.tmp.obo && grep -v ^owl-axioms $@.tmp.obo > $@ && rm $@.tmp.obo + +$(SUBSETDIR)/%.json: $(SUBSETDIR)/%.owl + $(ROBOT) convert --input $< --check false -f json -o $@.tmp.json &&\ + jq -S 'walk(if type == "array" then sort else . end)' $@.tmp.json > $@ && rm $@.tmp.json + + +# --------------------------------------------- +# Sparql queries: Table exports / Query Reports +# --------------------------------------------- + +SPARQL_EXPORTS_ARGS = $(foreach V,$(SPARQL_EXPORTS),-s $(SPARQLDIR)/$(V).sparql $(REPORTDIR)/$(V).tsv) +# This combines all into one single command + +.PHONY: custom_reports +custom_reports: $(SRC) | $(REPORTDIR) +ifneq ($(SPARQL_EXPORTS_ARGS),) + $(ROBOT) query -f tsv -i $< $(SPARQL_EXPORTS_ARGS) +endif + +# ---------------------------------------- +# Release artefacts: export formats +# ---------------------------------------- + + +$(ONT)-base.obo: $(ONT)-base.owl + $(ROBOT) convert --input $< --check false -f obo $(OBO_FORMAT_OPTIONS) -o $@.tmp.obo && grep -v ^owl-axioms $@.tmp.obo > $@ && rm $@.tmp.obo +$(ONT)-base.json: $(ONT)-base.owl + $(ROBOT) annotate --input $< --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ + convert --check false -f json -o $@.tmp.json &&\ + jq -S 'walk(if type == "array" then sort else . end)' $@.tmp.json > $@ && rm $@.tmp.json +$(ONT)-full.obo: $(ONT)-full.owl + $(ROBOT) convert --input $< --check false -f obo $(OBO_FORMAT_OPTIONS) -o $@.tmp.obo && grep -v ^owl-axioms $@.tmp.obo > $@ && rm $@.tmp.obo +$(ONT)-full.json: $(ONT)-full.owl + $(ROBOT) annotate --input $< --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ + convert --check false -f json -o $@.tmp.json &&\ + jq -S 'walk(if type == "array" then sort else . end)' $@.tmp.json > $@ && rm $@.tmp.json +# We always want a base - even if it is not explicitly configured.. +# We always want a full release - even if it is not explicitly configured.. +# ---------------------------------------- +# Release artefacts: main release artefacts +# ---------------------------------------- + +$(ONT).owl: $(ONT)-full.owl + $(ROBOT) annotate --input $< --ontology-iri $(URIBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ + convert -o $@.tmp.owl && mv $@.tmp.owl $@ + +$(ONT).obo: $(ONT).owl + $(ROBOT) convert --input $< --check false -f obo $(OBO_FORMAT_OPTIONS) -o $@.tmp.obo && grep -v ^owl-axioms $@.tmp.obo > $@ && rm $@.tmp.obo +$(ONT).json: $(ONT)-full.owl + $(ROBOT) annotate --input $< --ontology-iri $(URIBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ + convert --check false -f json -o $@.tmp.json && \ + jq -S 'walk(if type == "array" then sort else . end)' $@.tmp.json > $@ && rm $@.tmp.json +# ----------------------------------------------------- +# Release artefacts: variants (base, full, simple, etc) +# ----------------------------------------------------- +SHARED_ROBOT_COMMANDS = + +$(ONTOLOGYTERMS): $(SRC) $(OTHER_SRC) + touch $(ONTOLOGYTERMS) && \ + $(ROBOT) query --use-graphs true -f csv -i $< --query ../sparql/rxno_terms.sparql $@ + + + + + + + + + + +# base: OTHER sources of interest, such as definitions owl +$(ONT)-base.owl: $(SRC) $(OTHER_SRC) + $(ROBOT) remove --input $< --select imports --trim false \ + merge $(patsubst %, -i %, $(OTHER_SRC)) \ + $(SHARED_ROBOT_COMMANDS) annotate --link-annotation http://purl.org/dc/elements/1.1/type http://purl.obolibrary.org/obo/IAO_8000001 \ + --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ + --output $@.tmp.owl && mv $@.tmp.owl $@ + +# Full: The full artefacts with imports merged, reasoned +$(ONT)-full.owl: $(SRC) $(OTHER_SRC) $(IMPORT_FILES) + $(ROBOT) merge --input $< \ + reason --reasoner ELK --equivalent-classes-allowed asserted-only --exclude-tautologies structural \ + relax \ + reduce -r ELK \ + $(SHARED_ROBOT_COMMANDS) annotate --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) --output $@.tmp.owl && mv $@.tmp.owl $@ + +# ---------------------------------------- +# Debugging Tools +# ---------------------------------------- + +explain_unsat: $(SRC) + $(ROBOT) explain -i $(SRC) -M unsatisfiability --unsatisfiable random:10 --explanation $(TMPDIR)/$@.md + + + +# ---------------------------------------- +# General Validation +# ---------------------------------------- +TSV= +ALL_TSV_FILES= + +validate-tsv: $(TSV) | $(TMPDIR) + for FILE in $< ; do \ + tsvalid $$FILE > $(TMPDIR)/validate.txt; \ + if [ -s $(TMPDIR)/validate.txt ]; then cat $(TMPDIR)/validate.txt && exit 1; fi ; \ + done + +validate-all-tsv: $(ALL_TSV_FILES) + make validate-tsv TSV="$^" + +# ---------------------------------------- +# Editors Utilities +# ---------------------------------------- + + + +.PHONY: normalize_src +normalize_src: $(SRC) + $(ROBOT) convert -i $< -f ofn -o $(TMPDIR)/normalise && mv $(TMPDIR)/normalise $< + +.PHONY: validate_idranges +validate_idranges: + amm $(SCRIPTSDIR)/validate_id_ranges.sc rxno-idranges.owl + +.PHONY: update_repo +update_repo: + sh $(SCRIPTSDIR)/update_repo.sh + + + +# Note to future generations: prepending ./ is a safety measure to ensure that +# the environment does not malicously set `CLEANFILES` to `\`. +.PHONY: clean +clean: + [ -n "$(MIRRORDIR)" ] && [ $(MIRRORDIR) != "." ] && [ $(MIRRORDIR) != "/" ] && [ $(MIRRORDIR) != ".." ] && [ -d ./$(MIRRORDIR) ] && rm -rf ./$(MIRRORDIR)/* + [ -n "$(TMPDIR)" ] && [ $(TMPDIR) != "." ] && [ $(TMPDIR) != "/" ] && [ $(TMPDIR) != ".." ] && [ -d ./$(TMPDIR) ] && rm -rf ./$(TMPDIR)/* + rm -f $(CLEANFILES) + +.PHONY: help +help: + @echo "$$data" + +define data +Usage: [IMAGE=(odklite|odkfull)] [ODK_DEBUG=yes] sh run.sh make [(IMP|MIR|IMP_LARGE|PAT)=(false|true)] command + +---------------------------------------- + Command reference +---------------------------------------- + +Core commands: +* prepare_release: Run the entire release pipeline. Use make IMP=false prepare_release to avoid rerunning the imports +* update_repo: Update the ODK repository setup using the config file rxno-odk.yaml +* test: Running all validation tests +* odkversion: Show the current version of the ODK Makefile and ROBOT. +* clean: Delete all temporary files +* help: Print ODK Usage information + + +Imports management: +* refresh-imports: Refresh all imports and mirrors. +* no-mirror-refresh-imports: Refresh all imports without downloading mirrors. +* refresh-imports-excluding-large: Refresh all imports and mirrors, but skipping the ones labelled as 'is_large'. +* refresh-%: Refresh a single import, i.e. refresh-go will refresh 'imports/go_import.owl'. +* no-mirror-refresh-%: Refresh a single import without updating the mirror, i.e. refresh-go will refresh 'imports/go_import.owl'. +* mirror-%: Refresh a single mirror. + +Editor utilities: +* validate_idranges: Make sure your ID ranges file is formatted correctly +* normalize_src: Load and safe your rxno-edit file after you to make sure its serialised correctly +* explain_unsat: If you have unsatisfiable classes, this command will create a markdown file (tmp/explain_unsat.md) which will explain all your unsatisfiable classes +* validate-all-tsv: Check all your tsv files for possible problems in syntax. Use ALL_TSV_FILES variable to list files +* validate-tsv: Check a tsv file for syntactic problems with tsvalid. Use TSV variable to pass filepath, e.g. make TSV=../my.tsv validate-tsv. + +Additional build commands (advanced users) +* all: Run the entire pipeline (like prepare_release), but without copying the release files to the release directory. +* all_subsets: Build all subsets +* custom_reports: Generate all custom sparql reports you have configured in your rxno-odk.yaml file. +* all_assets: Build all assets +* show_assets: Print a list of all assets that would be build by the release pipeline + +Additional QC commands (advanced users) +* robot_reports: Run all configured ROBOT reports +* validate_profile_%: Run an OWL2 DL profile validation check, for example validate_profile_rxno-edit.owl. + +Examples: +* sh run.sh make IMP=false prepare_release +* sh run.sh make update_repo +* sh run.sh make test + +Tricks: +* Add -B to the end of your command to force re-running it even if nothing has changed +* Use the IMAGE parameter to the run.sh script to use a different image like odklite +* Use ODK_DEBUG=yes sh run.sh make ... to print information about timing and debugging + +endef +export data + +include rxno.Makefile \ No newline at end of file diff --git a/rxno_odk/src/ontology/README-editors.md b/rxno_odk/src/ontology/README-editors.md new file mode 100644 index 0000000..9e4488b --- /dev/null +++ b/rxno_odk/src/ontology/README-editors.md @@ -0,0 +1,158 @@ +These notes are for the EDITORS of rxno + +This project was created using the [ontology development kit](https://github.com/INCATools/ontology-development-kit). See the site for details. + +For more details on ontology management, please see the [OBO tutorial](https://github.com/jamesaoverton/obo-tutorial) or the [Gene Ontology Editors Tutorial](https://go-protege-tutorial.readthedocs.io/en/latest/) + +You may also want to read the [GO ontology editors guide](http://go-ontology.readthedocs.org/) + +## Requirements + + 1. Protege (for editing) + 2. A git client (we assume command line git) + 3. [docker](https://www.docker.com/get-docker) (for managing releases) + +## Editors Version + +Make sure you have an ID range in the [idranges file](rxno-idranges.owl) + +If you do not have one, get one from the maintainer of this repo. + +The editors version is [rxno-edit.owl](rxno-edit.owl) + +** DO NOT EDIT rxno.obo OR rxno.owl in the top level directory ** + +[../../rxno.owl](../../rxno.owl) is the release version + +To edit, open the file in Protege. First make sure you have the repository cloned, see [the GitHub project](https://github.com/rsc-ontologies/rxno) for details. + +You should discuss the git workflow you should use with the maintainer +of this repo, who should document it here. If you are the maintainer, +you can contact the odk developers for assistance. You may want to +copy the flow an existing project, for example GO: [Gene Ontology +Editors Tutorial](https://go-protege-tutorial.readthedocs.io/en/latest/). + +In general, it is bad practice to commit changes to master. It is +better to make changes on a branch, and make Pull Requests. + +## ID Ranges + +These are stored in the file + + * [rxno-idranges.owl](rxno-idranges.owl) + +** ONLY USE IDs WITHIN YOUR RANGE!! ** + +If you have only just set up this repository, modify the idranges file + and add yourself or other editors. Note Protege does not read the file +- it is up to you to ensure correct Protege configuration. + + +### Setting ID ranges in Protege + +We aim to put this up on the technical docs for OBO on http://obofoundry.org/ + +For now, consult the [GO Tutorial on configuring Protege](http://go-protege-tutorial.readthedocs.io/en/latest/Entities.html#new-entities) + +## Imports + +All import modules are in the [imports/](imports/) folder. + +There are two ways to include new classes in an import module + + 1. Reference an external ontology class in the edit ontology. In Protege: "add new entity", then paste in the PURL + 2. Add to the imports/ont_terms.txt file, for example imports/go_terms.txt + +After doing this, you can run + +`./run.sh make all_imports` + +to regenerate imports. + +Note: the ont_terms.txt file may include 'starter' classes seeded from +the ontology starter kit. It is safe to remove these. + +## Release Manager notes + +You should only attempt to make a release AFTER the edit version is +committed and pushed, AND the travis build passes. + +These instructions assume you have +[docker](https://www.docker.com/get-docker). This folder has a script +[run.sh](run.sh) that wraps docker commands. + +to release: + +first type + + git branch + +to make sure you are on master + + cd src/ontology + sh run.sh make all + +If this looks good type: + + sh run.sh make prepare_release + +This generates derived files such as rxno.owl and rxno.obo and places +them in the top level (../..). + +Note that the versionIRI value automatically will be added, and will +end with YYYY-MM-DD, as per OBO guidelines. + +Commit and push these files. + + git commit -a + +And type a brief description of the release in the editor window + +Finally type: + + git push origin master + +IMMEDIATELY AFTERWARDS (do *not* make further modifications) go here: + + * https://github.com/rsc-ontologies/rxno/releases + * https://github.com/rsc-ontologies/rxno/releases/new + +__IMPORTANT__: The value of the "Tag version" field MUST be + + vYYYY-MM-DD + +The initial lowercase "v" is REQUIRED. The YYYY-MM-DD *must* match +what is in the `owl:versionIRI` of the derived rxno.owl (`data-version` in +rxno.obo). This will be today's date. + +This cannot be changed after the fact, be sure to get this right! + +Release title should be YYYY-MM-DD, optionally followed by a title (e.g. "january release") + +You can also add release notes (this can also be done after the fact). These are in markdown format. +In future we will have better tools for auto-generating release notes. + +Then click "publish release" + +__IMPORTANT__: NO MORE THAN ONE RELEASE PER DAY. + +The PURLs are already configured to pull from github. This means that +BOTH ontology purls and versioned ontology purls will resolve to the +correct ontologies. Try it! + + * http://purl.obolibrary.org/obo/rxno.owl <-- current ontology PURL + * http://purl.obolibrary.org/obo/rxno/releases/YYYY-MM-DD.owl <-- change to the release you just made + +For questions on this contact Chris Mungall or email obo-admin AT obofoundry.org + +# Travis Continuous Integration System + +Check the build status here: [![Build Status](https://travis-ci.org/rsc-ontologies/rxno.svg?branch=master)](https://travis-ci.org/rsc-ontologies/rxno) + +Note: if you have only just created this project you will need to authorize travis for this repo. + + 1. Go to [https://travis-ci.org/profile/rsc-ontologies](https://travis-ci.org/profile/rsc-ontologies) + 2. click the "Sync account" button + 3. Click the tick symbol next to rxno + +Travis builds should now be activated \ No newline at end of file diff --git a/rxno_odk/src/ontology/catalog-v001.xml b/rxno_odk/src/ontology/catalog-v001.xml new file mode 100644 index 0000000..a24df89 --- /dev/null +++ b/rxno_odk/src/ontology/catalog-v001.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/rxno_odk/src/ontology/imports/bfo_import.owl b/rxno_odk/src/ontology/imports/bfo_import.owl new file mode 100644 index 0000000..b47bb95 --- /dev/null +++ b/rxno_odk/src/ontology/imports/bfo_import.owl @@ -0,0 +1,38 @@ + + + + + + 2022-04-06 + + + + + + + + + + + + + + + + + + diff --git a/rxno_odk/src/ontology/imports/bfo_terms.txt b/rxno_odk/src/ontology/imports/bfo_terms.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/rxno_odk/src/ontology/imports/bfo_terms.txt @@ -0,0 +1 @@ + diff --git a/rxno_odk/src/ontology/imports/mop_import.owl b/rxno_odk/src/ontology/imports/mop_import.owl new file mode 100644 index 0000000..855720f --- /dev/null +++ b/rxno_odk/src/ontology/imports/mop_import.owl @@ -0,0 +1,38 @@ + + + + + + 2022-04-06 + + + + + + + + + + + + + + + + + + diff --git a/rxno_odk/src/ontology/imports/mop_terms.txt b/rxno_odk/src/ontology/imports/mop_terms.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/rxno_odk/src/ontology/imports/mop_terms.txt @@ -0,0 +1 @@ + diff --git a/rxno_odk/src/ontology/imports/obi_import.owl b/rxno_odk/src/ontology/imports/obi_import.owl new file mode 100644 index 0000000..27341c8 --- /dev/null +++ b/rxno_odk/src/ontology/imports/obi_import.owl @@ -0,0 +1,7781 @@ + + + + + + 2022-04-06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mark Miller + 2018-05-11T13:47:29Z + + + + + + + + + + + + + + + + + + + + + is part of + my brain is part of my body (continuant parthood, two material entities) + my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity) + this day is part of this year (occurrent parthood) + a core relation that holds between a part and its whole + Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other. + Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime + Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) + +A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'. + part_of + + part of + http://www.obofoundry.org/ro/#OBO_REL:part_of + + + + + + + + + has part + my body has part my brain (continuant parthood, two material entities) + my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity) + this year has part this day (occurrent parthood) + a core relation that holds between a whole and its part + Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part. + Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime + Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.) + +A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'. + has_part + + has part + + + + + + + + + + + realized in + this disease is realized in this disease course + this fragility is realized in this shattering + this investigator role is realized in this investigation + is realized by + realized_in + [copied from inverse property 'realizes'] to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003]) + Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process + + realized in + + + + + + + + + + realizes + this disease course realizes this disease + this investigation realizes this investigator role + this shattering realizes this fragility + to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003]) + Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process + + realizes + + + + + + + + + This document is about information artifacts and their representations + + A (currently) primitive relation that relates an information artifact to an entity. + 7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of "mentions" relation. Weaken the is_about relationship to be primitive. + +We will try to build it back up by elaborating the various subproperties that are more precisely defined. + +Some currently missing phenomena that should be considered "about" are predications - "The only person who knows the answer is sitting beside me" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic. + person:Alan Ruttenberg + Smith, Ceusters, Ruttenberg, 2000 years of philosophy + is about + + + + + + + + + + + + + + + + has_specified_input + has_specified_input + see is_input_of example_of_usage + + The inverse property of is_specified_input_of + 8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how 'has participant' works. + PERSON: Alan Ruttenberg + PERSON: Bjoern Peters + PERSON: Larry Hunter + PERSON: Melanie Coutot + + has_specified_input + + + + + + + + + + is_specified_input_of + some Autologous EBV(Epstein-Barr virus)-transformed B-LCL (B lymphocyte cell line) is_input_for instance of Chromum Release Assay described at https://wiki.cbil.upenn.edu/obiwiki/index.php/Chromium_Release_assay + + A relation between a planned process and a continuant participating in that process that is not created during the process. The presence of the continuant during the process is explicitly specified in the plan specification which the process realizes the concretization of. + Alan Ruttenberg + PERSON:Bjoern Peters + is_specified_input_of + + + + + + + + + + + + + + + + has_specified_output + has_specified_output + + The inverse property of is_specified_output_of + PERSON: Alan Ruttenberg + PERSON: Bjoern Peters + PERSON: Larry Hunter + PERSON: Melanie Courtot + + has_specified_output + + + + + + + + + + + + + + + is_specified_output_of + is_specified_output_of + + A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of. + Alan Ruttenberg + PERSON:Bjoern Peters + + is_specified_output_of + + + + + + + + + + + achieves_planned_objective + A cell sorting process achieves the objective specification 'material separation objective' + + This relation obtains between a planned process and a objective specification when the criteria specified in the objective specification are met at the end of the planned process. + BP, AR, PPPB branch + PPPB branch derived + modified according to email thread from 1/23/09 in accordince with DT and PPPB branch + achieves_planned_objective + + + + + + + + + + objective_achieved_by + + This relation obtains between an objective specification and a planned process when the criteria specified in the objective specification are met at the end of the planned process. + OBI + OBI + objective_achieved_by + + + + + + + + + inheres in + this fragility inheres in this vase + this red color inheres in this apple + a relation between a specifically dependent continuant (the dependent) and an independent continuant (the bearer), in which the dependent specifically depends on the bearer for its existence + A dependent inheres in its bearer at all times for which the dependent exists. + inheres_in + + inheres in + + + + + + + + + bearer of + this apple is bearer of this red color + this vase is bearer of this fragility + a relation between an independent continuant (the bearer) and a specifically dependent continuant (the dependent), in which the dependent specifically depends on the bearer for its existence + A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist. + bearer_of + is bearer of + + bearer of + + + + + + + + + + + participates in + this blood clot participates in this blood coagulation + this input material (or this output material) participates in this process + this investigator participates in this investigation + a relation between a continuant and a process, in which the continuant is somehow involved in the process + participates_in + participates in + + + + + + + + + + has participant + this blood coagulation has participant this blood clot + this investigation has participant this investigator + this process has participant this input material (or this output material) + a relation between a process and a continuant, in which the continuant is somehow involved in the process + Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time. + has_participant + http://www.obofoundry.org/ro/#OBO_REL:has_participant + has participant + + + + + + + + + + + A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant). + An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process). + A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants. + is concretized as + + + + + + + + + + A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant). + An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process). + A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant. + concretizes + + + + + + + + + + this investigator role is a role of this person + a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence + A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists. + is role of + role_of + role of + + + + + + + + + + + this person has role this investigator role (more colloquially: this person has this role of investigator) + a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence + A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists. + has_role + has role + + + + + + + + + + An organism that is a member of a population of organisms + is member of is a mereological relation between a item and a collection. + is member of + member part of + SIO + + member of + + + + + + + + + + has member is a mereological relation between a collection and an item. + SIO + + has member + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A planned process that has specified output a software product and that involves the creation of source code. + Mathias Brochhausen + William R. Hogan + http://en.wikipedia.org/wiki/Software_development + A planned process resulting in a software product involving the creation of source code. + software development + + + + + + + + + + + + + + + + + + + + creating a data set + A planned process that has a data set as its specified output. + William R. Hogan + data set creation + dataset creation + dataset creating + + + + + + + + entity + Entity + Julius Caesar + Verdi’s Requiem + the Second World War + your body mass index + BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81 + Entity doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example Werner Ceusters 'portions of reality' include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, 'How to track absolutely everything' at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf + An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001]) + + entity + + + + + Entity doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example Werner Ceusters 'portions of reality' include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, 'How to track absolutely everything' at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf + + per discussion with Barry Smith + + + + + + An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001]) + + + + + + + + + + + + + + + + + continuant + Continuant + continuant + An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts. + BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240 + Continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster's other portions of reality, questions are raised as to whether universals are continuants + + A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002]) + if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001]) + if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002]) + if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002]) + (forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] + (forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] + (forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] + (forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] + + continuant + + + + + Continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster's other portions of reality, questions are raised as to whether universals are continuants + + + + + + A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002]) + + + + + + if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001]) + + + + + + if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002]) + + + + + + if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002]) + + + + + + (forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] + + + + + + (forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] + + + + + + (forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] + + + + + + (forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] + + + + + + + + + + + + + + + + occurrent + Occurrent + An entity that has temporal parts and that happens, unfolds or develops through time. + BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region + BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players. + Occurrent doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process. + Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by 'spn[e]' and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write 'spr[e]' and `spl[e]' respectively for the spread and spell of e, omitting mention of the frame. + An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002]) + Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001]) + b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001]) + (forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] + (forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] + + occurrent + + + + + Occurrent doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process. + + per discussion with Barry Smith + + + + + Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by 'spn[e]' and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write 'spr[e]' and `spl[e]' respectively for the spread and spell of e, omitting mention of the frame. + + + + + + An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002]) + + + + + + Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001]) + + + + + + b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001]) + + + + + + (forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] + + + + + + (forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] + + + + + + + + + + + + ic + IndependentContinuant + a chair + a heart + a leg + a molecule + a spatial region + an atom + an orchestra. + an organism + the bottom right portion of a human torso + the interior of your mouth + A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything. + b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002]) + For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001]) + For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002]) + (forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] + (forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] + (iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] + + independent continuant + + + + + b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002]) + + + + + + For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001]) + + + + + + For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002]) + + + + + + (forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] + + + + + + (forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] + + + + + + (iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] + + + + + + + + + + process + Process + a process of cell-division, \ a beating of the heart + a process of meiosis + a process of sleeping + the course of a disease + the flight of a bird + the life of an organism + your process of aging. + An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. + p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003]) + BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war) + (iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] + + process + + + + + p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003]) + + + + + + (iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] + + + + + + + + + + realizable + RealizableEntity + the disposition of this piece of metal to conduct electricity. + the disposition of your blood to coagulate + the function of your reproductive organs + the role of being a doctor + the role of this boundary to delineate where Utah and Colorado meet + A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances. + To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002]) + All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002]) + (forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] + (forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] + + realizable entity + + + + + To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002]) + + + + + + All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002]) + + + + + + (forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] + + + + + + (forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] + + + + + + + + + + + sdc + SpecificallyDependentContinuant + specifically dependent continuant + Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key + of one-sided specifically dependent continuants: the mass of this tomato + of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates. + the disposition of this fish to decay + the function of this heart: to pump blood + the mutual dependence of proton donors and acceptors in chemical reactions [79 + the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction + the pink color of a medium rare piece of grilled filet mignon at its center + the role of being a doctor + the shape of this hole. + the smell of this portion of mozzarella + A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same. + b is a relational specifically dependent continuant = Def. b is a specifically dependent continuant and there are n &gt; 1 independent continuants c1, … cn which are not spatial regions are such that for all 1 i &lt; j n, ci and cj share no common parts, are such that for each 1 i n, b s-depends_on ci at every time t during the course of b’s existence (axiom label in BFO2 Reference: [131-004]) + b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003]) + Specifically dependent continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. We're not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc. + + (iff (RelationalSpecificallyDependentContinuant a) (and (SpecificallyDependentContinuant a) (forall (t) (exists (b c) (and (not (SpatialRegion b)) (not (SpatialRegion c)) (not (= b c)) (not (exists (d) (and (continuantPartOfAt d b t) (continuantPartOfAt d c t)))) (specificallyDependsOnAt a b t) (specificallyDependsOnAt a c t)))))) // axiom label in BFO2 CLIF: [131-004] + (iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] + + specifically dependent continuant + + + + + b is a relational specifically dependent continuant = Def. b is a specifically dependent continuant and there are n &gt; 1 independent continuants c1, … cn which are not spatial regions are such that for all 1 i &lt; j n, ci and cj share no common parts, are such that for each 1 i n, b s-depends_on ci at every time t during the course of b’s existence (axiom label in BFO2 Reference: [131-004]) + + + + + + b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003]) + + + + + + Specifically dependent continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. We're not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc. + + per discussion with Barry Smith + + + + + (iff (RelationalSpecificallyDependentContinuant a) (and (SpecificallyDependentContinuant a) (forall (t) (exists (b c) (and (not (SpatialRegion b)) (not (SpatialRegion c)) (not (= b c)) (not (exists (d) (and (continuantPartOfAt d b t) (continuantPartOfAt d c t)))) (specificallyDependsOnAt a b t) (specificallyDependsOnAt a c t)))))) // axiom label in BFO2 CLIF: [131-004] + + + + + + (iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] + + + + + + + + + + role + Role + John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married. + the priest role + the role of a boundary to demarcate two neighboring administrative territories + the role of a building in serving as a military target + the role of a stone in marking a property boundary + the role of subject in a clinical trial + the student role + A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts. + BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives. + b is a role means: b is a realizable entity & b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be& b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001]) + (forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] + + role + + + + + b is a role means: b is a realizable entity & b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be& b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001]) + + + + + + (forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] + + + + + + + + + + gdc + GenericallyDependentContinuant + The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity. + the pdf file on your laptop, the pdf file that is a copy thereof on my laptop + the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule. + A continuant that is dependent on one or other independent continuant bearers. For every instance of A requires some instance of (an independent continuant type) B but which instance of B serves can change from time to time. + b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001]) + (iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] + + generically dependent continuant + + + + + b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001]) + + + + + + (iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] + + + + + + + + + + material + MaterialEntity + material entity + a flame + a forest fire + a human being + a hurricane + a photon + a puff of smoke + a sea wave + a tornado + an aggregate of human beings. + an energy wave + an epidemic + the undetached arm of a human being + An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time. + BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60 + BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity. + BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here. + + A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002]) + Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002]) + every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002]) + (forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] + (forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] + (forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] + + material entity + + + + + A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002]) + + + + + + Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002]) + + + + + + every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002]) + + + + + + (forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] + + + + + + (forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] + + + + + + (forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] + + + + + + + + + + measurement unit label + Examples of measurement unit labels are liters, inches, weight per volume. + + A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure. + 2009-03-16: provenance: a term measurement unit was +proposed for OBI (OBI_0000176) , edited by Chris Stoeckert and +Cristian Cocos, and subsequently moved to IAO where the objective for +which the original term was defined was satisfied with the definition +of this, different, term. + 2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI. + PERSON: Alan Ruttenberg + PERSON: Melanie Courtot + measurement unit label + + + + + + + + + objective specification + In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction. + + A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved. + 2009-03-16: original definition when imported from OBI read: "objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed." + 2014-03-31: In the example of usage ("In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that. + Answers the question, why did you do this experiment? + PERSON: Alan Ruttenberg + PERSON: Barry Smith + PERSON: Bjoern Peters + PERSON: Jennifer Fostel + goal specification + OBI Plan and Planned Process/Roles Branch + OBI_0000217 + objective specification + + + + + + + + + Pour the contents of flask 1 into flask 2 + + A directive information entity that describes an action the bearer will take. + Alan Ruttenberg + OBI Plan and Planned Process branch + action specification + + + + + + + + + datum label + + A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label + http://www.golovchenko.org/cgi-bin/wnsearch?q=label#4n + GROUP: IAO + 9/22/11 BP: changed the rdfs:label for this class from 'label' to 'datum label' to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. + + datum label + + + + + + + + + software + + Software is a plan specification composed of a series of instructions that can be +interpreted by or directly executed by a processing unit. + see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func=detail&aid=1958818&group_id=177891&atid=886178 + PERSON: Alan Ruttenberg + PERSON: Bjoern Peters + PERSON: Chris Stoeckert + PERSON: Melanie Courtot + GROUP: OBI + software + + + + + + + + + data item + Data items include counts of things, analyte concentrations, and statistical summaries. + + An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements. + 2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers. + 2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum. + 2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym. + 2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/ + JAR: datum -- well, this will be very tricky to define, but maybe some +information-like stuff that might be put into a computer and that is +meant, by someone, to denote and/or to be interpreted by some +process... I would include lists, tables, sentences... I think I might +defer to Barry, or to Brian Cantwell Smith + +JAR: A data item is an approximately justified approximately true approximate belief + PERSON: Alan Ruttenberg + PERSON: Chris Stoeckert + PERSON: Jonathan Rees + data + data item + + + + + + + + + + + + + + + information content entity + Examples of information content entites include journal articles, data, graphical layouts, and graphs. + + A generically dependent continuant that is about some thing. + 2014-03-10: The use of "thing" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ). + information_content_entity 'is_encoded_in' some digital_entity in obi before split (040907). information_content_entity 'is_encoded_in' some physical_document in obi before split (040907). + +Previous. An information content entity is a non-realizable information entity that 'is encoded in' some digital or physical entity. + PERSON: Chris Stoeckert + OBI_0000142 + information content entity + + + + + + + + + + + + + + + + An information content entity whose concretizations indicate to their bearer how to realize them in a process. + 2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was "is the specification of a process that can be concretized and realized by an actor" with alternative term "instruction".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term. + 2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it. + 8/6/2009 Alan Ruttenberg: Changed label from "information entity about a realizable" after discussions at ICBO + Werner pushed back on calling it realizable information entity as it isn't realizable. However this name isn't right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn't about the plan, it, once concretized, *is* the plan. -Alan + PERSON: Alan Ruttenberg + PERSON: Bjoern Peters + directive information entity + + + + + + + + + dot plot + Dot plot of SSC-H and FSC-H. + + A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions. + person:Allyson Lister + person:Chris Stoeckert + OBI_0000123 + group:OBI + dot plot + + + + + + + + + graph + + A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way. + PERSON: Lawrence Hunter + person:Alan Ruttenberg + person:Allyson Lister + OBI_0000240 + group:OBI + graph + + + + + + + + + algorithm + PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies. + + A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata. + Philippe Rocca-Serra + PlanAndPlannedProcess Branch + OBI_0000270 + adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg) + algorithm + + + + + + + + + + + + + + + + + + + + + + + + curation status specification + + The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value. + Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting) + PERSON:Bill Bug + GROUP:OBI:<http://purl.obolibrary.org/obo/obi> + OBI_0000266 + curation status specification + + + + + + + + + source code module + The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script. + + A source code module is a directive information entity that specifies, using a programming language, some algorithm. + person:Alan Ruttenberg + person:Chris Stoeckert + OBI_0000039 + group:OBI + source code module + + + + + + + + + data format specification + + A data format specification is the information content borne by the document published defining the specification. +Example: The ISO document specifying what encompasses an XML document; The instructions in a XSD file + 2009-03-16: provenance: term imported from OBI_0000187, which had original definition "A data format specification is a plan which organizes +information. Example: The ISO document specifying what encompasses an +XML document; The instructions in a XSD file" + PERSON: Alan Ruttenberg + PlanAndPlannedProcess Branch + OBI branch derived + OBI_0000187 + data format specification + + + + + + + + + data set + Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves). + + A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets. + 2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn't for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type + 2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction. + person:Allyson Lister + person:Chris Stoeckert + OBI_0000042 + group:OBI + data set + + + + + + + + + image + + An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface. + person:Alan Ruttenberg + person:Allyson + person:Chris Stoeckert + OBI_0000030 + group:OBI + image + + + + + + + + + data about an ontology part + Data about an ontology part is a data item about a part of an ontology, for example a term + Person:Alan Ruttenberg + data about an ontology part + + + + + + + + + + + + + + + + + + + + + plan specification + PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice. + + A directive information entity with action specifications and objective specifications as parts that, when concretized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified. + 2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was " a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term. + 2014-03-31: A plan specification can have other parts, such as conditional specifications. + Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved + Alan Ruttenberg + OBI Plan and Planned Process branch + OBI_0000344 + 2/3/2009 Comment from OBI review. + +Action specification not well enough specified. +Conditional specification not well enough specified. +Question whether all plan specifications have objective specifications. + +Request that IAO either clarify these or change definitions not to use them + plan specification + + + + + + + + + + + + + + + + + + + + + + + + + material information bearer + A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier. + a brain + a hard drive + + A material entity in which a concretization of an information content entity inheres. + GROUP: IAO + material information bearer + + + + + + + + + histogram + + A histogram is a report graph which is a statistical description of a +distribution in terms of occurrence frequencies of different event classes. + PERSON:Chris Stoeckert + PERSON:James Malone + PERSON:Melanie Courtot + GROUP:OBI + histogram + + + + + + + + + heatmap + + A heatmap is a report graph which is a graphical representation of data +where the values taken by a variable(s) are shown as colors in a +two-dimensional map. + PERSON:Chris Stoeckert + PERSON:James Malone + PERSON:Melanie Courtot + GROUP:OBI + heatmap + + + + + + + + + dendrogram + Dendrograms are often used in computational biology to +illustrate the clustering of genes. + + A dendrogram is a report graph which is a tree diagram +frequently used to illustrate the arrangement of the clusters produced by a +clustering algorithm. + PERSON:Chris Stoeckert + PERSON:James Malone + PERSON:Melanie Courtot + WEB: http://en.wikipedia.org/wiki/Dendrogram + dendrogram + + + + + + + + + scatter plot + Comparison of gene expression values in two samples can be displayed in a scatter plot + + A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis. + PERSON:Chris Stoeckert + PERSON:James Malone + PERSON:Melanie Courtot + scattergraph + WEB: http://en.wikipedia.org/wiki/Scatterplot + scatter plot + + + + + + + + + + + + + + + + + + + + obsolescence reason specification + + The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value. + The creation of this class has been inspired in part by Werner Ceusters' paper, Applying evolutionary terminology auditing to the Gene Ontology. + PERSON: Alan Ruttenberg + PERSON: Melanie Courtot + obsolescence reason specification + + + + + + + + + figure + Any picture, diagram or table + + An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something. + PERSON: Lawrence Hunter + figure + + + + + + + + + diagram + A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space. + + A figure that expresses one or more propositions + PERSON: Lawrence Hunter + diagram + + + + + + + + + document + A journal article, patent application, laboratory notebook, or a book + + A collection of information content entities intended to be understood together as a whole + PERSON: Lawrence Hunter + document + + + + + + + + + + + + + + + + + + denotator type + The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are "natural kinds" and the latter arbitrary collections of entities. + A denotator type indicates how a term should be interpreted from an ontological perspective. + Alan Ruttenberg + Barry Smith, Werner Ceusters + denotator type + + + + + + + + + Viruses + + Viruses + + + + + + + + + Euteleostomi + bony vertebrates + + Euteleostomi + + + + + + + + + Bacteria + eubacteria + + Bacteria + + + + + + + + + Archaea + + Archaea + + + + + + + + + Eukaryota + eucaryotes + eukaryotes + + Eukaryota + + + + + + + + + Euarchontoglires + + Euarchontoglires + + + + + + + + + Tetrapoda + tetrapods + + Tetrapoda + + + + + + + + + Amniota + amniotes + + Amniota + + + + + + + + + Opisthokonta + + Opisthokonta + + + + + + + + + Bilateria + + Bilateria + + + + + + + + + Mammalia + mammals + + Mammalia + + + + + + + + + Vertebrata <vertebrates> + Vertebrata + vertebrates + + Vertebrata <vertebrates> + + + + + + + + + Homo sapiens + human + human being + man + + Homo sapiens + + + + + + + + + + + + + + + + + + + + planned process + planned process + Injecting mice with a vaccine in order to test its efficacy + + A process that realizes a plan which is the concretization of a plan specification. + 'Plan' includes a future direction sense. That can be problematic if plans are changed during their execution. There are however implicit contingencies for protocols that an agent has in his mind that can be considered part of the plan, even if the agent didn't have them in mind before. Therefore, a planned process can diverge from what the agent would have said the plan was before executing it, by adjusting to problems encountered during execution (e.g. choosing another reagent with equivalent properties, if the originally planned one has run out.) + We are only considering successfully completed planned processes. A plan may be modified, and details added during execution. For a given planned process, the associated realized plan specification is the one encompassing all changes made during execution. This means that all processes in which an agent acts towards achieving some +objectives is a planned process. + Bjoern Peters + branch derived + 6/11/9: Edited at workshop. Used to include: is initiated by an agent + This class merges the previously separated objective driven process and planned process, as they the separation proved hard to maintain. (1/22/09, branch call) + + planned process + + + + + + + + + regulator role + Fact sheet - Regulating the companies The role of the regulator. Ofwat is the economic regulator of the water and sewerage industry in England and Wales. http://www.ofwat.gov.uk/aptrix/ofwat/publish.nsf/Content/roleofregulator_factsheet170805 + + a regulatory role involved with making and/or enforcing relevant legislation and governmental orders + Person:Jennifer Fostel + regulator + OBI + regulator role + + + + + + + + + regulatory role + Regulatory agency, Ethics committee, Approval letter; example: Browse these EPA Regulatory Role subtopics http://www.epa.gov/ebtpages/enviregulatoryrole.html Feb 29, 2008 + + a role which inheres in material entities and is realized in the processes of making, enforcing or being defined by legislation or orders issued by a governmental body. + GROUP: Role branch + OBI, CDISC + govt agents responsible for creating regulations; proxies for enforcing regulations. CDISC definition: regulatory authorities. Bodies having the power to regulate. NOTE: In the ICH GCP guideline the term includes the authorities that review submitted clinical data and those that conduct inspections. These bodies are sometimes referred to as competent + regulatory role + + + + + + + + + material supplier role + Jackson Labs is an organization which provide mice as experimental material + + a role realized through the process of supplying materials such as animal subjects, reagents or other materials used in an investigation. + Supplier role is a special kind of service, e.g. biobank + PERSON:Jennifer Fostel + material provider role + supplier + material supplier role + + + + + + + + + + + + + + + classified data set + + A data set that is produced as the output of a class prediction data transformation and consists of a data set with assigned class labels. + PERSON: James Malone + PERSON: Monnie McGee + data set with assigned class labels + classified data set + + + + + + + + + + + + + + + + + + + + processed material + Examples include gel matrices, filter paper, parafilm and buffer solutions, mass spectrometer, tissue samples + + Is a material entity that is created or changed during material processing. + PERSON: Alan Ruttenberg + processed material + + + + + + + + + + + + + + + + + + + + + + + + + + + material processing + A cell lysis, production of a cloning vector, creating a buffer. + + A planned process which results in physical changes in a specified input material + PERSON: Bjoern Peters + PERSON: Frank Gibson + PERSON: Jennifer Fostel + PERSON: Melanie Courtot + PERSON: Philippe Rocca Serra + material transformation + OBI branch derived + material processing + + + + + + + + + + + + + + + + + + + + + + + + + specimen role + liver section; a portion of a culture of cells; a nemotode or other animal once no longer a subject (generally killed); portion of blood from a patient. + + a role borne by a material entity that is gained during a specimen collection process and that can be realized by use of the specimen in an investigation + 22Jun09. The definition includes whole organisms, and can include a human. The link between specimen role and study subject role has been removed. A specimen taken as part of a case study is not considered to be a population representative, while a specimen taken as representing a population, e.g. person taken from a cohort, blood specimen taken from an animal) would be considered a population representative and would also bear material sample role. + Note: definition is in specimen creation objective which is defined as an objective to obtain and store a material entity for potential use as an input during an investigation. + blood taken from animal: animal continues in study, whereas blood has role specimen. +something taken from study subject, leaves the study and becomes the specimen. + parasite example +- when parasite in people we study people, people are subjects and parasites are specimen +- when parasite extracted, they become subject in the following study +specimen can later be subject. + GROUP: Role Branch + OBI + specimen role + + + + + + + + + organization + PMID: 16353909.AAPS J. 2005 Sep 22;7(2):E274-80. Review. The joint food and agriculture organization of the United Nations/World Health Organization Expert Committee on Food Additives and its role in the evaluation of the safety of veterinary drug residues in foods. + + An entity that can bear roles, has members, and has a set of organization rules. Members of organizations are either organizations themselves or individual people. Members can bear specific organization member roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the organization by the organization members. + BP: The definition summarizes long email discussions on the OBI developer, roles, biomaterial and denrie branches. It leaves open if an organization is a material entity or a dependent continuant, as no consensus was reached on that. The current placement as material is therefore temporary, in order to move forward with development. Here is the entire email summary, on which the definition is based: + +1) there are organization_member_roles (president, treasurer, branch +editor), with individual persons as bearers + +2) there are organization_roles (employer, owner, vendor, patent holder) + +3) an organization has a charter / rules / bylaws, which specify what roles +there are, how they should be realized, and how to modify the +charter/rules/bylaws themselves. + +It is debatable what the organization itself is (some kind of dependent +continuant or an aggregate of people). This also determines who/what the +bearer of organization_roles' are. My personal favorite is still to define +organization as a kind of 'legal entity', but thinking it through leads to +all kinds of questions that are clearly outside the scope of OBI. + +Interestingly enough, it does not seem to matter much where we place +organization itself, as long as we can subclass it (University, Corporation, +Government Agency, Hospital), instantiate it (Affymetrix, NCBI, NIH, ISO, +W3C, University of Oklahoma), and have it play roles. + +This leads to my proposal: We define organization through the statements 1 - +3 above, but without an 'is a' statement for now. We can leave it in its +current place in the is_a hierarchy (material entity) or move it up to +'continuant'. We leave further clarifications to BFO, and close this issue +for now. + PERSON: Alan Ruttenberg + PERSON: Bjoern Peters + PERSON: Philippe Rocca-Serra + PERSON: Susanna Sansone + GROUP: OBI + organization + + + + + + + + + + + + + + + + + + + + regulatory agency + The US Environmental Protection Agency + + A regulatory agency is a organization that has responsibility over or for the legislation (acts and regulations) for a given sector of the government. + GROUP: OBI Biomaterial Branch + WEB: en.wikipedia.org/wiki/Regulator + regulatory agency + + + + + + + + + material transformation objective + The objective to create a mouse infected with LCM virus. The objective to create a defined solution of PBS. + + an objective specifiction that creates an specific output object from input materials. + PERSON: Bjoern Peters + PERSON: Frank Gibson + PERSON: Jennifer Fostel + PERSON: Melanie Courtot + PERSON: Philippe Rocca-Serra + artifact creation objective + GROUP: OBI PlanAndPlannedProcess Branch + material transformation objective + + + + + + + + + + + + + + + + + + + + + + + + + + + manufacturing + + Manufacturing is a process with the intent to produce a processed material which will have a function for future use. A person or organization (having manufacturer role) is a participant in this process + Manufacturing implies reproducibility and responsibility AR + This includes a single scientist making a processed material for personal use. + PERSON: Bjoern Peters + PERSON: Frank Gibson + PERSON: Jennifer Fostel + PERSON: Melanie Courtot + PERSON: Philippe Rocca-Serra + GROUP: OBI PlanAndPlannedProcess Branch + manufacturing + + + + + + + + + manufacturing objective + + is the objective to manufacture a material of a certain function (device) + PERSON: Bjoern Peters + PERSON: Frank Gibson + PERSON: Jennifer Fostel + PERSON: Melanie Courtot + PERSON: Philippe Rocca-Serra + GROUP: OBI PlanAndPlannedProcess Branch + manufacturing objective + + + + + + + + + + + + + + + + + + + + + + + + + + + + manufacturer role + With respect to The Accuri C6 Flow Cytometer System, the organization Accuri bears the role manufacturer role. With respect to a transformed line of tissue culture cells derived by a specific lab, the lab whose personnel isolated the cll line bears the role manufacturer role. With respect to a specific antibody produced by an individual scientist, the scientist who purifies, characterizes and distributes the anitbody bears the role manufacturer role. + + Manufacturer role is a role which inheres in a person or organization and which is realized by a manufacturing process. + GROUP: Role Branch + OBI + manufacturer role + + + + + + + + + + + + + + + clustered data set + A clustered data set is the output of a K means clustering data transformation + + A data set that is produced as the output of a class discovery data transformation and consists of a data set with assigned discovered class labels. + PERSON: James Malone + PERSON: Monnie McGee + data set with assigned discovered class labels + AR thinks could be a data item instead + clustered data set + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specimen collection process + drawing blood from a patient for analysis, collecting a piece of a plant for depositing in a herbarium, buying meat from a butcher in order to measure its protein content in an investigation + + A planned process with the objective of collecting a specimen. + Note: definition is in specimen creation objective which is defined as an objective to obtain and store a material entity for potential use as an input during an investigation. + Philly2013: A specimen collection can have as part a material entity acquisition, such as ordering from a bank. The distinction is that specimen collection necessarily involves the creation of a specimen role. However ordering cell lines cells from ATCC for use in an investigation is NOT a specimen collection, because the cell lines already have a specimen role. + Philly2013: The specimen_role for the specimen is created during the specimen collection process. + label changed to 'specimen collection process' on 10/27/2014, details see tracker: +http://sourceforge.net/p/obi/obi-terms/716/ + Bjoern Peters + specimen collection + 5/31/2012: This process is not necessarily an acquisition, as specimens may be collected from materials already in posession + 6/9/09: used at workshop + specimen collection process + + + + + + + + + + + + + + + + + + + + + + + class prediction data transformation + + A class prediction data transformation (sometimes called supervised classification) is a data transformation that has objective class prediction. + James Malone + supervised classification data transformation + PERSON: James Malone + class prediction data transformation + + + + + + + + + specimen collection objective + The objective to collect bits of excrement in the rainforest. The objective to obtain a blood sample from a patient. + + A objective specification to obtain a material entity for potential use as an input during an investigation. + Bjoern Peters + Bjoern Peters + specimen collection objective + + + + + + + + + + + + + + + support vector machine + + A support vector machine is a data transformation with a class prediction objective based on the construction of a separating hyperplane that maximizes the margin between two data sets of vectors in n-dimensional space. + James Malone + Ryan Brinkman + SVM + PERSON: Ryan Brinkman + support vector machine + + + + + + + + + decision tree induction objective + + A decision tree induction objective is a data transformation objective in which a tree-like graph of edges and nodes is created and from which the selection of each branch requires that some type of logical decision is made. + James Malone + decision tree induction objective + + + + + + + + + + + + + + + decision tree building data transformation + + A decision tree building data transformation is a data transformation that has objective decision tree induction. + James Malone + PERSON: James Malone + decision tree building data transformation + + + + + + + + + GenePattern software + + a software that provides access to more than 100 tools for gene expression analysis, proteomics, SNP analysis and common data processing tasks. + James Malone + Person:Helen Parkinson + WEB: http://www.broadinstitute.org/cancer/software/genepattern/ + GenePattern software + + + + + + + + + peak matching + + Peak matching is a data transformation performed on a dataset of a graph of ordered data points (e.g. a spectrum) with the objective of pattern matching local maxima above a noise threshold + James Malone + Ryan Brinkman + PERSON: Ryan Brinkman + peak matching + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + k-nearest neighbors + + A k-nearest neighbors is a data transformation which achieves a class discovery or partitioning objective, in which an input data object with vector y is assigned to a class label based upon the k closest training data set points to y; where k is the largest value that class label is assigned. + James Malone + k-NN + PERSON: James Malone + k-nearest neighbors + + + + + + + + + + + + + + + CART + + A CART (classification and regression trees) is a data transformation method for producing a classification or regression model with a tree-based structure. + James Malone + classification and regression trees + BOOK: David J. Hand, Heikki Mannila and Padhraic Smyth (2001) Principles of Data Mining. + CART + + + + + + + + + + + + + + + statistical model validation + Using the expression levels of 20 proteins to predict whether a cancer patient will respond to a drug. A practical goal would be to determine which subset of the 20 features should be used to produce the best predictive model. - wikipedia + + A data transformation which assesses how the results of a statistical analysis will generalize to an independent data set. + Helen Parkinson + http://en.wikipedia.org/wiki/Cross-validation_%28statistics%29 + statistical model validation + + + + + + + + + + + + + + + + + + + + + + + + + manufacturer + + A person or organization that has a manufacturer role + manufacturer + + + + + + + + + + + + + + + + + + + + + + + + + + + + service provider role + Jackson Lab provides experimental animals, EBI provides training on databases, a core facility provides access to a DNA sequencer. + + is a role which inheres in a person or organization and is realized in in a planned process which provides access to training, materials or execution of protocols for an organization or person + PERSON:Helen Parkinson + service provider role + + + + + + + + + + + + + + + + + + processed specimen + A tissue sample that has been sliced and stained for a histology study. +A blood specimen that has been centrifuged to obtain the white blood cells. + + A specimen that has been intentionally physically modified. + Bjoern Peters + Bjoern Peters + A tissue sample that has been sliced and stained for a histology study. + processed specimen + + + + + + + + + categorical label + The labels 'positive' vs. 'negative', or 'left handed', 'right handed', 'ambidexterous', or 'strongly binding', 'weakly binding' , 'not binding', or '+++', '++', '+', '-' etc. form scales of categorical labels. + + A label that is part of a categorical datum and that indicates the value of the data item on the categorical scale. + Bjoern Peters + Bjoern Peters + categorical label + + + + + + + + + questionnaire + + A document with a set of printed or written questions with a choice of answers, devised for the purposes of a survey or statistical study. + JT: It plays a role in collecting data that could be fleshed out more; but I'm thinking it is, in itself, an edited document. +JZ: based on textual definition of edited document, it can be defined as N&S. I prefer to leave questionnaire as a document now. We can add more restrictions in the future and use that to determine it is an edited document or not. + Need to clarify if this is a document or a directive information entity (or what their connection is)) + PERSON: Jessica Turner + Merriam-Webster + questionnaire + + + + + + + + + categorical value specification + + A value specification that is specifies one category out of a fixed number of nominal categories + PERSON:Bjoern Peters + categorical value specification + + + + + + + + + value specification + The value of 'positive' in a classification scheme of "positive or negative"; the value of '20g' on the quantitative scale of mass. + + An information content entity that specifies a value within a classification scheme or on a quantitative scale. + This term is currently a descendant of 'information content entity', which requires that it 'is about' something. A value specification of '20g' for a measurement data item of the mass of a particular mouse 'is about' the mass of that mouse. However there are cases where a value specification is not clearly about any particular. In the future we may change 'value specification' to remove the 'is about' requirement. + PERSON:Bjoern Peters + value specification + + + + + + + + + + + + + + + + + + + + collection of specimens + Blood cells collected from multiple donors over the course of a study. + + A material entity that has two or more specimens as its parts. + Details see tracker: https://sourceforge.net/p/obi/obi-terms/778/ + Person: Chris Stoeckert, Jie Zheng + OBIB, OBI + Biobank + collection of specimens + + + + + + + + + histologic grade according to AJCC 7th edition + G1:Well differentiated + G4: Undifferentiated + + A categorical value specification that is a histologic grade assigned to a tumor slide specimen according to the American Joint Committee on Cancer (AJCC) 7th Edition grading system. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + histologic grade according to AJCC 7th edition + + + + + + + + + histologic grade according to the Fuhrman Nuclear Grading System + + A categorical value specification that is a histologic grade assigned to a tumor slide specimen according to the Fuhrman Nuclear Grading System. + Chris Stoeckert, Helena Ellis + Histologic Grade (Fuhrman Nuclear Grading System) + NCI BBRB, OBI + NCI BBRB + histologic grade according to the Fuhrman Nuclear Grading System + + + + + + + + + histologic grade for ovarian tumor + + A categorical value specification that is a histologic grade assigned to a ovarian tumor. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + histologic grade for ovarian tumor + + + + + + + + + histologic grade for ovarian tumor according to a two-tier grading system + + A histologic grade for ovarian tumor that is from a two-tier histological classification of tumors. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + histologic grade for ovarian tumor according to a two-tier grading system + + + + + + + + + histologic grade for ovarian tumor according to the World Health Organization + + A histologic grade for ovarian tumor that is from a histological classification by the World Health Organization (WHO). + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + histologic grade for ovarian tumor according to the World Health Organization + + + + + + + + + pathologic primary tumor stage for colon and rectum according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of colorectal cancer following the rules of the TNM American Joint Committee on Cancer (AJCC) version 7 classification system as they pertain to staging of the primary tumor. TNM pathologic primary tumor findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery. + Chris Stoeckert, Helena Ellis + pT: Pathologic spread colorectal primary tumor (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic primary tumor stage for colon and rectum according to AJCC 7th edition + + + + + + + + + pathologic primary tumor stage for lung according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of lung cancer following the rules of the TNM American Joint Committee on Cancer (AJCC) version 7 classification system as they pertain to staging of the primary tumor. TNM pathologic primary tumor findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery. + Chris Stoeckert, Helena Ellis + pT: Pathologic spread lung primary tumor (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic primary tumor stage for lung according to AJCC 7th edition + + + + + + + + + pathologic primary tumor stage for kidney according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of renal cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of the primary tumor. TNM pathologic primary tumor findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery. + Chris Stoeckert, Helena Ellis + pT: Pathologic spread kidney primary tumor (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic primary tumor stage for kidney according to AJCC 7th edition + + + + + + + + + pathologic primary tumor stage for ovary according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of ovarian cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of the primary tumor. TNM pathologic primary tumor findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery. + Chris Stoeckert, Helena Ellis + pT: Pathologic spread ovarian primary tumor (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic primary tumor stage for ovary according to AJCC 7th edition + + + + + + + + + pathologic lymph node stage for colon and rectum according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of colorectal cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of regional lymph nodes. + Chris Stoeckert, Helena Ellis + pN: Pathologic spread colon lymph nodes (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic lymph node stage for colon and rectum according to AJCC 7th edition + + + + + + + + + pathologic lymph node stage for lung according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of lung cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of regional lymph nodes. + Chris Stoeckert, Helena Ellis + pN: Pathologic spread colon lymph nodes (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic lymph node stage for lung according to AJCC 7th edition + + + + + + + + + pathologic lymph node stage for kidney according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of renal cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of regional lymph nodes. + Chris Stoeckert, Helena Ellis + pN: Pathologic spread kidney lymph nodes (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic lymph node stage for kidney according to AJCC 7th edition + + + + + + + + + pathologic lymph node stage for ovary according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of ovarian cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of regional lymph nodes. + Chris Stoeckert, Helena Ellis + pN: Pathologic spread ovarian lymph nodes (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic lymph node stage for ovary according to AJCC 7th edition + + + + + + + + + pathologic distant metastases stage for colon according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of colon cancer following the rules of the TNM AJCC v7 classification system as they pertain to distant metastases. TNM pathologic distant metastasis findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery. + Chris Stoeckert, Helena Ellis + M: colon distant metastases (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic distant metastases stage for colon according to AJCC 7th edition + + + + + + + + + pathologic distant metastases stage for lung according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of lung cancer following the rules of the TNM AJCC v7 classification system as they pertain to distant metastases. TNM pathologic distant metastasis findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery. + Chris Stoeckert, Helena Ellis + M: lung distant metastases (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic distant metastases stage for lung according to AJCC 7th edition + + + + + + + + + pathologic distant metastases stage for kidney according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of renal cancer following the rules of the TNM AJCC v7 classification system as they pertain to distant metastases. TNM pathologic distant metastasis findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery. + Chris Stoeckert, Helena Ellis + M: kidney distant Metastases (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic distant metastases stage for kidney according to AJCC 7th edition + + + + + + + + + pathologic distant metastases stage for ovary according to AJCC 7th edition + + A categorical value specification that is a pathologic finding about one or more characteristics of ovarian cancer following the rules of the TNM AJCC v7 classification system as they pertain to distant metastases. TNM pathologic distant metastasis findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery. + Chris Stoeckert, Helena Ellis + M: ovarian distant metastases (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + pathologic distant metastases stage for ovary according to AJCC 7th edition + + + + + + + + + clinical tumor stage group according to AJCC 7th edition + + A categorical value specification that is an assessment of the stage of a cancer according to the American Joint Committee on Cancer (AJCC) v7 staging systems. + Chris Stoeckert, Helena Ellis + Clinical tumor stage group (AJCC 7th Edition) + NCI BBRB, OBI + NCI BBRB + clinical tumor stage group according to AJCC 7th edition + + + + + + + + + International Federation of Gynecology and Obstetrics cervical cancer stage value specification + + A categorical value specification that is an assessment of the stage of a gynecologic cancer according to the International Federation of Gynecology and Obstetrics (FIGO) staging systems. + Chris Stoeckert, Helena Ellis + Clinical FIGO stage + NCI BBRB, OBI + NCI BBRB + International Federation of Gynecology and Obstetrics cervical cancer stage value specification + + + + + + + + + International Federation of Gynecology and Obstetrics ovarian cancer stage value specification + + A categorical value specification that is a pathologic finding about one or more characteristics of ovarian cancer following the rules of the FIGO classification system. + Chris Stoeckert, Helena Ellis + Pathologic Tumor Stage Grouping for ovarian cancer (FIGO) + NCI BBRB, OBI + NCI BBRB + International Federation of Gynecology and Obstetrics ovarian cancer stage value specification + + + + + + + + + performance status value specification + + A categorical value specification that is an assessment of a participant's performance status (general well-being and activities of daily life). + Chris Stoeckert, Helena Ellis + Performance Status Scale + https://en.wikipedia.org/wiki/Performance_status + NCI BBRB + performance status value specification + + + + + + + + + Eastern Cooperative Oncology Group score value specification + + A performance status value specification designed by the Eastern Cooperative Oncology Group to assess disease progression and its affect on the daily living abilities of the patient. + Chris Stoeckert, Helena Ellis + ECOG score + NCI BBRB, OBI + NCI BBRB + Eastern Cooperative Oncology Group score value specification + + + + + + + + + Karnofsky score vaue specification + + A performance status value specification designed for classifying patients 16 years of age or older by their functional impairment. + Chris Stoeckert, Helena Ellis + Karnofsky Score + NCI BBRB, OBI + NCI BBRB + Karnofsky score vaue specification + + + + + + + + + + + + + + + + + + + + + + + + + material supplier + + A person or organization that provides material supplies to other people or organizations. + Rebecca Jackson + https://github.com/obi-ontology/obi/issues/1289 + material supplier + + + + + + + + + + + + + + + + + + + organism + animal + fungus + plant + virus + + A material entity that is an individual living system, such as animal, plant, bacteria or virus, that is capable of replicating or reproducing, growth and maintenance in the right environment. An organism may be unicellular or made up, like humans, of many billions of cells divided into specialized tissues and organs. + 10/21/09: This is a placeholder term, that should ideally be imported from the NCBI taxonomy, but the high level hierarchy there does not suit our needs (includes plasmids and 'other organisms') + 13-02-2009: +OBI doesn't take position as to when an organism starts or ends being an organism - e.g. sperm, foetus. +This issue is outside the scope of OBI. + GROUP: OBI Biomaterial Branch + WEB: http://en.wikipedia.org/wiki/Organism + organism + + + + + + + + + + + + + + + + + + + + specimen + Biobanking of blood taken and stored in a freezer for potential future investigations stores specimen. + + A material entity that has the specimen role. + Note: definition is in specimen creation objective which is defined as an objective to obtain and store a material entity for potential use as an input during an investigation. + PERSON: James Malone + PERSON: Philippe Rocca-Serra + GROUP: OBI Biomaterial Branch + specimen + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + data transformation + The application of a clustering protocol to microarray data or the application of a statistical testing method on a primary data set to determine a p-value. + + A planned process that produces output data from input data. + Elisabetta Manduchi + Helen Parkinson + James Malone + Melanie Courtot + Philippe Rocca-Serra + Richard Scheuermann + Ryan Brinkman + Tina Hernandez-Boussard + data analysis + data processing + Branch editors + + data transformation + + + + + + + + + + + + + + + leave one out cross validation method + The authors conducted leave-one-out cross validation to estimate the strength and accuracy of the differentially expressed filtered genes. http://bioinformatics.oxfordjournals.org/cgi/content/abstract/19/3/368 + + is a data transformation : leave-one-out cross-validation (LOOCV) involves using a single observation from the original sample as the validation data, and the remaining observations as the training data. This is repeated such that each observation in the sample is used once as the validation data + 2009-11-10. Tracker: https://sourceforge.net/tracker/?func=detail&aid=2893049&group_id=177891&atid=886178 + Person:Helen Parkinson + leave one out cross validation method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + k-means clustering + + A k-means clustering is a data transformation which achieves a class discovery or partitioning objective, which takes as input a collection of objects (represented as points in multidimensional space) and which partitions them into a specified number k of clusters. The algorithm attempts to find the centers of natural clusters in the data. The most common form of the algorithm starts by partitioning the input points into k initial sets, either at random or using some heuristic data. It then calculates the mean point, or centroid, of each set. It constructs a new partition by associating each point with the closest centroid. Then the centroids are recalculated for the new clusters, and the algorithm repeated by alternate applications of these two steps until convergence, which is obtained when the points no longer switch clusters (or alternatively centroids are no longer changed). + Elisabetta Manduchi + James Malone + Philippe Rocca-Serra + WEB: http://en.wikipedia.org/wiki/K-means + k-means clustering + + + + + + + + + + + + + + + + + + + + + + + + hierarchical clustering + + A hierarchical clustering is a data transformation which achieves a class discovery objective, which takes as input data item and builds a hierarchy of clusters. The traditional representation of this hierarchy is a tree (visualized by a dendrogram), with the individual input objects at one end (leaves) and a single cluster containing every object at the other (root). + James Malone + WEB: http://en.wikipedia.org/wiki/Data_clustering#Hierarchical_clustering + hierarchical clustering + + + + + + + + + + + + + + + + + + + + + + + + dimensionality reduction + + A dimensionality reduction is data partitioning which transforms each input m-dimensional vector (x_1, x_2, ..., x_m) into an output n-dimensional vector (y_1, y_2, ..., y_n), where n is smaller than m. + Elisabetta Manduchi + James Malone + Melanie Courtot + Philippe Rocca-Serra + data projection + PERSON: Elisabetta Manduchi + PERSON: James Malone + PERSON: Melanie Courtot + dimensionality reduction + + + + + + + + + principal components analysis dimensionality reduction + + A principal components analysis dimensionality reduction is a dimensionality reduction achieved by applying principal components analysis and by keeping low-order principal components and excluding higher-order ones. + Elisabetta Manduchi + James Malone + Melanie Courtot + Philippe Rocca-Serra + pca data reduction + PERSON: Elisabetta Manduchi + PERSON: James Malone + PERSON: Melanie Courtot + principal components analysis dimensionality reduction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + data visualization + Generation of a heatmap from a microarray dataset + + An planned process that creates images, diagrams or animations from the input data. + Elisabetta Manduchi + James Malone + Melanie Courtot + Tina Boussard + data encoding as image + visualization + PERSON: Elisabetta Manduchi + PERSON: James Malone + PERSON: Melanie Courtot + PERSON: Tina Boussard + Possible future hierarchy might include this: +information_encoding +>data_encoding +>>image_encoding + data visualization + + + + + + + + + data transformation objective + normalize objective + + An objective specification to transformation input data into output data + Modified definition in 2013 Philly OBI workshop + James Malone + PERSON: James Malone + data transformation objective + + + + + + + + + + + + + + + partitioning data transformation + + A partitioning data transformation is a data transformation that has objective partitioning. + James Malone + PERSON: James Malone + partitioning data transformation + + + + + + + + + partitioning objective + A k-means clustering which has partitioning objective is a data transformation in which the input data is partitioned into k output sets. + + A partitioning objective is a data transformation objective where the aim is to generate a collection of disjoint non-empty subsets whose union equals a non-empty input set. + Elisabetta Manduchi + James Malone + PERSON: Elisabetta Manduchi + partitioning objective + + + + + + + + + + + + + + + + + + + + + + + class discovery data transformation + + A class discovery data transformation (sometimes called unsupervised classification) is a data transformation that has objective class discovery. + James Malone + clustering data transformation + unsupervised classification data transformation + PERSON: James Malone + class discovery data transformation + + + + + + + + + class discovery objective + + A class discovery objective (sometimes called unsupervised classification) is a data transformation objective where the aim is to organize input data (typically vectors of attributes) into classes, where the number of classes and their specifications are not known a priori. Depending on usage, the class assignment can be definite or probabilistic. + James Malone + clustering objective + discriminant analysis objective + unsupervised classification objective + PERSON: Elisabetta Manduchi + PERSON: James Malone + class discovery objective + + + + + + + + + class prediction objective + + A class prediction objective (sometimes called supervised classification) is a data transformation objective where the aim is to create a predictor from training data through a machine learning technique. The training data consist of pairs of objects (typically vectors of attributes) and +class labels for these objects. The resulting predictor can be used to attach class labels to any valid novel input object. Depending on usage, the prediction can be definite or probabilistic. A classification is learned from the training data and can then be tested on test data. + James Malone + classification objective + supervised classification objective + PERSON: Elisabetta Manduchi + PERSON: James Malone + class prediction objective + + + + + + + + + cross validation objective + + A cross validation objective is a data transformation objective in which the aim is to partition a sample of data into subsets such that the analysis is initially performed on a single subset, while the other subset(s) are retained for subsequent use in confirming and validating the initial analysis. + James Malone + rotation estimation objective + WEB: http://en.wikipedia.org/wiki/Cross_validation + cross validation objective + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + clustered data visualization + + A data visualization which has input of a clustered data set and produces an output of a report graph which is capable of rendering data of this type. + James Malone + clustered data visualization + + + + + + + + + length unit + A unit which is a standard measure of the distance between two points. + + length unit + + + + + + + + + mass unit + A unit which is a standard measure of the amount of matter/energy of a physical object. + + mass unit + + + + + + + + + time unit + A unit which is a standard measure of the dimension in which events occur in sequence. + + time unit + + + + + + + + + temperature unit + + temperature unit + + + + + + + + + substance unit + + substance unit + + + + + + + + + concentration unit + + concentration unit + + + + + + + + + volume unit + + volume unit + + + + + + + + + frequency unit + + frequency unit + + + + + + + + + volumetric flow rate unit + + volumetric flow rate unit + + + + + + + + + rate unit + + rate unit + + + + + + + + + + + + + + example to be eventually removed + example to be eventually removed + + + + + + + + + failed exploratory term + The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job + Person:Alan Ruttenberg + failed exploratory term + + + + + + + + + metadata complete + Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete. + metadata complete + + + + + + + + + organizational term + Term created to ease viewing/sort terms for development purpose, and will not be included in a release + PERSON:Alan Ruttenberg + organizational term + + + + + + + + + ready for release + Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking "ready_for_release" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed "ready_for_release" will also derived from a chain of ancestor classes that are also "ready_for_release." + ready for release + + + + + + + + + metadata incomplete + Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors. + metadata incomplete + + + + + + + + + uncurated + Nothing done yet beyond assigning a unique class ID and proposing a preferred term. + uncurated + + + + + + + + + pending final vetting + All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor. + pending final vetting + + + + + + + + + placeholder removed + placeholder removed + + + + + + + + + terms merged + An editor note should explain what were the merged terms and the reason for the merge. + terms merged + + + + + + + + + term imported + This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use. + term imported + + + + + + + + + term split + This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created. + term split + + + + + + + + + universal + Hard to give a definition for. Intuitively a "natural kind" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents. + Alan Ruttenberg + A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf + universal + + + + + + + + + defined class + A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal + "definitions", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal. + Alan Ruttenberg + defined class + + + + + + + + + named class expression + A named class expression is a logical expression that is given a name. The name can be used in place of the expression. + named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions + Alan Ruttenberg + named class expression + + + + + + + + + to be replaced with external ontology term + Terms with this status should eventually replaced with a term from another ontology. + Alan Ruttenberg + group:OBI + to be replaced with external ontology term + + + + + + + + + requires discussion + A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues. + Alan Ruttenberg + group:OBI + requires discussion + + + + + + + + + Transformation-ML + Transformation-ML file describing parameter transformations used in a GvHD experiment. + + Transformation-ML is a format standard of a digital entity that is conformant with the Transformation-ML standard.(http://wiki.ficcs.org/ficcs/Transformation-ML?action=AttachFile&do=get&target=Transformation-ML_v1.0.26.pdf) + person:Jennifer Fostel + web-page:http://wiki.ficcs.org/ficcs/Transformation-ML?action=AttachFile&do=get&target=Transformation-ML_v1.0.26.pdf + Transformation-ML + + + + + + + + + ACS + d06.acs, ACS1.0 data file of well D06 of plate 2 of part 1 of a GvHD experiment. + + ACS is a format standard of a digital entity that is conformant with the Analytical Cytometry Standard. (http://www.isac-net.org/content/view/607/150/) + person:Jennifer Fostel + web-page:http://www.isac-net.org/content/view/607/150/ + ACS + + + + + + + + + XML + RDF/XML file, OWL file, Compensation-ML file, WSDL document, SVG document + + XML is a format standard of a digital entity that is conformant with the W3C Extensible Markup Language Recommendation.(http://www.w3.org/XML/) + person:Jennifer Fostel + web-page:http://www.w3.org/XML/ + XML + + + + + + + + + RDF + A FOAF file, a SKOS file, an OWL file. + + RDF is a format standard of a digital entity that is conformant with the W3C Resource Description Framework RDF/XML Syntax specification.(http://www.w3.org/RDF/) + person:Jennifer Fostel + web-page:http://www.w3.org/RDF/ + RDF + + + + + + + + + zip + MagicDraw MDZIP archive, Java JAR file. + + zip is a format standard of a digital entity that is conformant with the PKWARE .ZIP file format specification (http://www.pkware.com/index.php?option=com_content&task=view&id=59&Itemid=103/) + person:Jennifer Fostel + web-page:http://www.pkware.com/index.php?option=com_content&task=view&id=59&Itemid=103/ + zip + + + + + + + + + tar + Example.tar file. + + tar is a format standard of a digital entity that is conformant with the tape archive file format as standardized by POSIX.1-1998, POSIX.1-2001, or any other tar format compliant with the GNU tar specification. (http://www.gnu.org/software/tar/manual/) + person:Jennifer Fostel + web-page:http://www.gnu.org/software/tar/manual/ + tar + + + + + + + + + FCS + d01.fcs, FCS3 data file of well D06 of plate 2 of part 1 of a GvHD experiment. + + FCS is a format standard of a digital entity that is conformant with the Flow Cytometry Data File Standard.(http://www.fcspress.com/) + person:Jennifer Fostel + web-page:http://www.fcspress.com/ + FCS + + + + + + + + + Compensation-ML + compfoo.xml, Compensation-ML file describing compensation used in a GvHD experiment + + Compensation-ML is a format standard of a digital entity that is conformant with the Compensation-ML standard. (http://wiki.ficcs.org/ficcs/Compensation-ML?action=AttachFile&do=get&target=Compensation-ML_v1.0.24.pdf) + person:Jennifer Fostel + web-page:http://wiki.ficcs.org/ficcs/Compensation-ML?action=AttachFile&do=get&target=Compensation-ML_v1.0.24.pdf + Compensation-ML + + + + + + + + + Gating-ML + foogate.xml, Gating-ML file describing gates used in a GvHD experiment. + + Gating-ML is a format standard of a digital entity that is conformant with the Gating-ML standard. (http://www.flowcyt.org/gating/) + person:Jennifer Fostel + web-page:http://www.flowcyt.org/gating/ + Gating-ML + + + + + + + + + OWL + OBI ontology file, Basic Formal Ontology file, BIRNLex file, BioPAX file. + + OWL is a format standard of a digital entity that is conformant with the W3C Web Ontology Language specification.(http://www.w3.org/2004/OWL/) + person:Jennifer Fostel + web-page:http://www.w3.org/2004/OWL/ + OWL + + + + + + + + + + Affymetrix + Affymetrix supplied microarray + + An organization which supplies technology, tools and protocols for use in high throughput applications + Affymetrix + + + + + + + + + Thermo + + Philippe Rocca-Serra + Thermo + + + + + + + + + Waters + + Philippe Rocca-Serra + Waters + + + + + + + + + BIO-RAD + + Philippe Rocca-Serra + BIO-RAD + + + + + + + + + GenePattern hierarchical clustering + + James Malone + GenePattern hierarchical clustering + + + + + + + + + Ambion + + Philippe Rocca-Serra + Ambion + + + + + + + + + Helicos + + Philippe Rocca-Serra + Helicos + + + + + + + + + Roche + + Philippe Rocca-Serra + Roche + + + + + + + + + Illumina + + Philippe Rocca-Serra + Illumina + + + + + + + + + GenePattern PCA + + GenePattern PCA + + + + + + + + + + GenePattern module SVM + + GenePattern module SVM is a GenePattern software module which is used to run a support vector machine data transformation. + James Malone + Ryan Brinkman + GenePattern module SVM + + + + + + + + + GenePattern k-nearest neighbors + + James Malone + GenePattern k-nearest neighbors + + + + + + + + + GenePattern LOOCV + + GenePattern LOOCV + + + + + + + + + GenePattern k-means clustering + + James Malone + GenePattern k-means clustering + + + + + + + + + Agilent + + Philippe Rocca-Serra + Agilent + + + + + + + + + + GenePattern module KMeansClustering + + GenePattern module KMeansClustering is a GenePattern software module which is used to perform a k Means clustering data transformation. + James Malone + PERSON: James Malone + GenePattern module KMeansClustering + + + + + + + + + GenePattern CART + + James Malone + GenePattern CART + + + + + + + + + + + GenePattern module CARTXValidation + + GenePattern module CARTXValidation is a GenePattern software module which uses a CART decision tree induction with a leave one out cross validation data transformations. + GenePattern module CARTXValidation + + + + + + + + + Li-Cor + + Philippe Rocca-Serra + Li-Cor + + + + + + + + + Bruker Corporation + + Philippe Rocca-Serra + Bruker Corporation + + + + + + + + + GenePattern module KNNXValidation + + GenePattern module KNNXValidation is a GenePattern software module which uses a k-nearest neighbours clustering with a leave one out cross validation data transformations. + James Malone + PERSON: James Malone + GenePattern module KNNXValidation + + + + + + + + + + GenePattern module PeakMatch + + GenePattern module PeakMatch + + + + + + + + + + GenePattern module KNN + + GenePattern module KNN is a GenePattern software module which perform a k-nearest neighbors data transformation. + James Malone + GenePattern module KNN + + + + + + + + + + GenePattern module HierarchicalClustering + + GenePattern module HierarchicalClustering is a GenePattern software module which is used to perform a hierarchical clustering data transformation. + James Malone + PERSON: James Malone + GenePattern module HierarchicalClustering + + + + + + + + + GenePattern SVM + + James Malone + GenePattern SVM + + + + + + + + + Applied Biosystems + + Philippe Rocca-Serra + Applied Biosystems + + + + + + + + + + GenePattern module PCA + + GenePattern module PCA is a GenePattern software module which is used to perform a principal components analysis dimensionality reduction data transformation. + James Malone + PERSON: James Malone + GenePattern module PCA + + + + + + + + + GenePattern peak matching + + James Malone + Ryan Brinkman + GenePattern peak matching + + + + + + + + + Bruker Daltonics + + Philippe Rocca-Serra + Bruker Daltonics + + + + + + + + + GenePattern HeatMapViewer data visualization + + The GenePattern process of generating Heat Maps from clustered data. + James Malone + GenePattern HeatMapViewer data visualization + + + + + + + + + GenePattern HierarchicalClusteringViewer data visualization + + The GenePattern process of generating hierarchical clustering visualization from clustered data. + James Malone + GenePattern HierarchicalClusteringViewer data visualization + + + + + + + + + + GenePattern module HeatMapViewer + + A GenePattern software module which is used to generate a heatmap view of data. + James Malone + GenePattern module HeatMapViewer + + + + + + + + + + GenePattern module HierarchicalClusteringViewer + + A GenePattern software module which is used to generate a view of data that has been hierarchically clustered. + James Malone + GenePattern module HierarchicalClusteringViewer + + + + + + + + + Sysmex Corporation, Kobe, Japan + + WEB:http://www.sysmex.com/@2009/08/06 + Sysmex Corporation, Kobe, Japan + + + + + + + + + U.S. Food and Drug Administration + + FDA + U.S. Food and Drug Administration + + + + + + + + + right handed + + right handed + + + + + + + + + ambidexterous + + ambidexterous + + + + + + + + + left handed + + left handed + + + + + + + + + Edingburgh handedness inventory + + The Edinburgh Handedness Inventory is a set of questions used to assess the dominance of a person's right or left hand in everyday activities. + PERSON:Alan Ruttenberg + PERSON:Jessica Turner + PMID:5146491#Oldfield, R.C. (1971). The assessment and analysis of handedness: The Edinburgh inventory. Neuropsychologia, 9, 97-113 + WEB:http://www.cse.yorku.ca/course_archive/2006-07/W/4441/EdinburghInventory.html + Edingburgh handedness inventory + + + + + + + + + eBioscience + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.ebioscience.com/@2011/04/11 + eBioscience + + + + + + + + + Cytopeia + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.cytopeia.com/@2011/04/11 + Cytopeia + + + + + + + + + Exalpha Biological + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.exalpha.com/@2011/04/11 + Exalpha Biological + + + + + + + + + Apogee Flow Systems + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.apogeeflow.com/@2011/04/11 + Apogee Flow Systems + + + + + + + + + Exbio Antibodies + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.exbio.cz/@2011/04/11 + Exbio Antibodies + + + + + + + + + Becton Dickinson (BD Biosciences) + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.bdbiosciences.com/@2011/04/11 + Becton Dickinson (BD Biosciences) + + + + + + + + + Dako Cytomation + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.dakousa.com/@2011/04/11 + Dako Cytomation + + + + + + + + + Millipore + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.guavatechnologies.com/@2011/04/11 + Millipore + + + + + + + + + Antigenix + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.antigenix.com/@2011/04/11 + Antigenix + + + + + + + + + Partec + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.partec.de/@2011/04/11 + Partec + + + + + + + + + Beckman Coulter + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.beckmancoulter.com/@2011/04/11 + Beckman Coulter + + + + + + + + + Advanced Instruments Inc. (AI Companies) + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.aicompanies.com/@2011/04/11 + Advanced Instruments Inc. (AI Companies) + + + + + + + + + Miltenyi Biotec + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.miltenyibiotec.com/@2011/04/11 + Miltenyi Biotec + + + + + + + + + AES Chemunex + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.aeschemunex.com/@2011/04/11 + AES Chemunex + + + + + + + + + Bentley Instruments + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://bentleyinstruments.com/@2011/04/11 + Bentley Instruments + + + + + + + + + Invitrogen + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.invitrogen.com/@2011/04/11 + Invitrogen + + + + + + + + + Luminex + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.luminexcorp.com/@2011/04/11 + Luminex + + + + + + + + + CytoBuoy + + A supplier of flow cytometry analyzers + Karin Breuer + WEB:http://www.cytobuoy.com/@2011/04/11 + CytoBuoy + + + + + + + + + Nimblegen + + An organization that focuses on manufacturing target enrichment probe pools for DNA sequencing. + Person: Jie Zheng + Nimblegen + + + + + + + + + Pacific Biosciences + + An organization that supplies tools for studying the synthesis and regulation of DNA, RNA and protein. It developed a powerful technology platform called single molecule real-time (SMRT) technology which enables real-time analysis of biomolecules with single molecule resolution. + Person: Jie Zheng + Pacific Biosciences + + + + + + + + + NanoString Technologies + + An organization that supplies life science tools for translational research and molecular diagnostics based on a novel digital molecular barcoding technology. The NanoString platform can provide simple, multiplexed digital profiling of single molecules. + NanoString Technologies + + + + + + + + + Thermo Fisher Scientific + + An organization that is an American multinational, biotechnology product development company, created in 2006 by the merger of Thermo Electron and Fisher Scientific. + Chris Stoeckert, Helena Ellis + https://en.wikipedia.org/wiki/Thermo_Fisher_Scientific + Thermo Fisher Scientific + + + + + + + + + G1: Well differentiated + + A histologic grade according to AJCC 7th edition indicating that the tumor cells and the organization of the tumor tissue appear close to normal. + Chris Stoeckert, Helena Ellis + G1 + https://www.cancer.gov/about-cancer/diagnosis-staging/prognosis/tumor-grade-fact-sheet + NCI BBRB + G1: Well differentiated + + + + + + + + + G2: Moderately differentiated + + A histologic grade according to AJCC 7th edition indicating that the tumor cells are moderately differentiated and reflect an intermediate grade. + Chris Stoeckert, Helena Ellis + G2 + https://www.cancer.gov/about-cancer/diagnosis-staging/prognosis/tumor-grade-fact-sheet + NCI BBRB + G2: Moderately differentiated + + + + + + + + + G3: Poorly differentiated + + A histologic grade according to AJCC 7th edition indicating that the tumor cells are poorly differentiated and do not look like normal cells and tissue. + Chris Stoeckert, Helena Ellis + G3 + https://www.cancer.gov/about-cancer/diagnosis-staging/prognosis/tumor-grade-fact-sheet + NCI BBRB + G3: Poorly differentiated + + + + + + + + + G4: Undifferentiated + + A histologic grade according to AJCC 7th edition indicating that the tumor cells are undifferentiated and do not look like normal cells and tissue. + Chris Stoeckert, Helena Ellis + G4 + https://www.cancer.gov/about-cancer/diagnosis-staging/prognosis/tumor-grade-fact-sheet + NCI BBRB + G4: Undifferentiated + + + + + + + + + G1 (Fuhrman) + + A histologic grade according to the Fuhrman Nuclear Grading System indicating that nuclei are round, uniform, approximately 10um and that nucleoli are inconspicuous or absent. + Chris Stoeckert, Helena Ellis + Grade 1 + NCI BBRB, OBI + NCI BBRB + G1 (Fuhrman) + + + + + + + + + G2 (Fuhrman) + + A histologic grade according to the Fuhrman Nuclear Grading System indicating that nuclei are slightly irregular, approximately 15um and nucleoli are evident. + Chris Stoeckert, Helena Ellis + Grade 2 + NCI BBRB, OBI + NCI BBRB + G2 (Fuhrman) + + + + + + + + + G3 (Fuhrman) + + A histologic grade according to the Fuhrman Nuclear Grading System indicating that nuclei are very irregular, approximately 20um and nucleoli large and prominent. + Chris Stoeckert, Helena Ellis + Grade 3 + NCI BBRB, OBI + NCI BBRB + G3 (Fuhrman) + + + + + + + + + G4 (Fuhrman) + + A histologic grade according to the Fuhrman Nuclear Grading System indicating that nuclei arei bizarre and multilobulated, 20um or greater and nucleoli are prominent and chromatin clumped. + Chris Stoeckert, Helena Ellis + Grade 4 + NCI BBRB, OBI + NCI BBRB + G4 (Fuhrman) + + + + + + + + + Low grade ovarian tumor + + A histologic grade for ovarian tumor according to a two-tier grading system indicating that the tumor is low grade. + Chris Stoeckert, Helena Ellis + Low grade + NCI BBRB, OBI + NCI BBRB + Low grade ovarian tumor + + + + + + + + + High grade ovarian tumor + + A histologic grade for ovarian tumor according to a two-tier grading system indicating that the tumor is high grade. + Chris Stoeckert, Helena Ellis + High grade + NCI BBRB, OBI + NCI BBRB + High grade ovarian tumor + + + + + + + + + G1 (WHO) + + A histologic grade for ovarian tumor according to the World Health Organization indicating that the tumor is well differentiated. + Chris Stoeckert, Helena Ellis + G1 + NCI BBRB, OBI + NCI BBRB + G1 (WHO) + + + + + + + + + G2 (WHO) + + A histologic grade for ovarian tumor according to the World Health Organization indicating that the tumor is moderately differentiated. + Chris Stoeckert, Helena Ellis + G2 + NCI BBRB, OBI + NCI BBRB + G2 (WHO) + + + + + + + + + G3 (WHO) + + A histologic grade for ovarian tumor according to the World Health Organization indicating that the tumor is poorly differentiated. + Chris Stoeckert, Helena Ellis + G3 + NCI BBRB, OBI + NCI BBRB + G3 (WHO) + + + + + + + + + G4 (WHO) + + A histologic grade for ovarian tumor according to the World Health Organization indicating that the tumor is undifferentiated. + Chris Stoeckert, Helena Ellis + G4 + NCI BBRB, OBI + NCI BBRB + G4 (WHO) + + + + + + + + + pT0 (colon) + + A pathologic primary tumor stage for colon and rectum according to AJCC 7th edition indicating that there is no evidence of primary tumor. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_t/ + NCI BBRB + pT0 (colon) + + + + + + + + + pTis (colon) + + A pathologic primary tumor stage for colon and rectum according to AJCC 7th edition indicating carcinoma in situ (intraepithelial or invasion of lamina propria). + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_t/ + NCI BBRB + pTis (colon) + + + + + + + + + pT1 (colon) + + A pathologic primary tumor stage for colon and rectum according to AJCC 7th edition indicating that the tumor invades submucosa. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_t/ + NCI BBRB + pT1 (colon) + + + + + + + + + pT2 (colon) + + A pathologic primary tumor stage for colon and rectum according to AJCC 7th edition indicating that the tumor invades muscularis propria. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_t/ + NCI BBRB + pT2 (colon) + + + + + + + + + pT3 (colon) + + A pathologic primary tumor stage for colon and rectum according to AJCC 7th edition indicating that the tumor invades subserosa or into non-peritionealized pericolic or perirectal tissues. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_t/ + NCI BBRB + pT3 (colon) + + + + + + + + + pT4a (colon) + + A pathologic primary tumor stage for colon and rectum according to AJCC 7th edition indicating that the tumor perforates visceral peritoneum. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_t/ + NCI BBRB + pT4a (colon) + + + + + + + + + pT4b (colon) + + A pathologic primary tumor stage for colon and rectum according to AJCC 7th edition indicating that the tumor directly invades other organs or structures. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_t/ + NCI BBRB + pT4b (colon) + + + + + + + + + pT0 (lung) + + A pathologic primary tumor stage for lung according to AJCC 7th edition indicating that there is no evidence of primary tumor. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_t/ + NCI BBRB + pT0 (lung) + + + + + + + + + pTis (lung) + + A pathologic primary tumor stage for lung according to AJCC 7th edition indicating carcinoma in situ. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_t/ + NCI BBRB + pTis (lung) + + + + + + + + + pT1 (lung) + + A pathologic primary tumor stage for lung according to AJCC 7th edition indicating that the tumor is 3 cm or less in greatest dimension, surrounded by lung or visceral pleura without bronchoscopic evidence of invasion more proximal than the lobar bronchus (i.e., not in the main bronchus). + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_t/ + NCI BBRB + pT1 (lung) + + + + + + + + + pT1a (lung) + + A pathologic primary tumor stage for lung according to AJCC 7th edition indicating that the tumor is 2 cm or less in greatest dimension. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_t/ + NCI BBRB + pT1a (lung) + + + + + + + + + pT1b (lung) + + A pathologic primary tumor stage for lung according to AJCC 7th edition indicating that the tumor is more than 2 cm but not more than 3 cm in greatest dimension. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_t/ + NCI BBRB + pT1b (lung) + + + + + + + + + pT2 (lung) + + A pathologic primary tumor stage for lung according to AJCC 7th edition indicating that the tumor is more than 3 cm but not more than 7 cm or the tumor has any of the following features: involves main bronchus, 2 cm or more distal to the carina, invades visceral pleura, associated with atelectasis or obstructive pneumonitis that extends to the hilar region but does not involve the entire lung. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_t/ + NCI BBRB + pT2 (lung) + + + + + + + + + pT2a (lung) + + A pathologic primary tumor stage for lung according to AJCC 7th edition indicating that the tumor is more than 3 cm but not more than 5 cm in greatest dimension. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_t/ + NCI BBRB + pT2a (lung) + + + + + + + + + pT2b (lung) + + A pathologic primary tumor stage for lung according to AJCC 7th edition indicating that the tumor is more than 5 cm but not more than 7 cm in greatest dimension. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_t/ + NCI BBRB + pT2b (lung) + + + + + + + + + pT3 (lung) + + A pathologic primary tumor stage for lung according to AJCC 7th edition indicating that the tumor is more than 7 cm or one that directly invades any of: parietal pleura, chest wall (including superior sulcus tumors), diaphragm, phrenic nerve, mediastinal pleura, parietal pericardiu or the tumor is in the main bronchus less than 2 cm distal to the carina but without involvement of the carina or there is associated atelectasis or obstructive pneumonitis of the entire lung or there is separate tumor nodule(s) in the same lobe as the primary. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_t/ + NCI BBRB + pT3 (lung) + + + + + + + + + pT4 (lung) + + A pathologic primary tumor stage for lung according to AJCC 7th edition indicating that the tumor of any size that invades any of the following: mediastinum, heart, great vessels, trachea, recurrent laryngeal nerve, esophagus, vertebral body, carina or there is separate tumor nodule(s) in a different ipsilateral lobe to that of the primary. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_t/ + NCI BBRB + pT4 (lung) + + + + + + + + + pT0 (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that there is no evidence of primary tumor. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT0 (kidney) + + + + + + + + + pT1 (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor is 7 cm or less in greatest dimension and limited to the kidney. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT1 (kidney) + + + + + + + + + pT1a (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor is 4 cm or less. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT1a (kidney) + + + + + + + + + pT1b (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor is more than 4 cm but not more than 7 cm. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT1b (kidney) + + + + + + + + + pT2 (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor is more than 7 cm in greatest dimension and limited to the kidney. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT2 (kidney) + + + + + + + + + pT2a (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor is more than 7 cm but not more than 10 cm. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT2a (kidney) + + + + + + + + + pT2b (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor is more than 10 cm and limited to the kidney. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT2b (kidney) + + + + + + + + + pT3 (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor extends into major veins or perinephric tissues but not into the ipsilateral adrenal gland and not beyond the Gerota fascia. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT3 (kidney) + + + + + + + + + pT3a (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor grossly extends into the renal vein or its segmental (muscle containing) branches, or the tumor invades perirenal and/or renal sinus fat (peripelvic) fat but not beyond Gerota fascia. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT3a (kidney) + + + + + + + + + pT3b (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor grossly extends into vena cava below diaphragm. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT3b (kidney) + + + + + + + + + pT3c (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor grossly extends into vena cava above the diaphragm or Invades the wall of the vena cava. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT3c (kidney) + + + + + + + + + pT4 (kidney) + + A pathologic primary tumor stage for kidney according to AJCC 7th edition indicating that the tumor invades beyond Gerota fascia (including contiguous extension into the ipsilateral adrenal gland). + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_t/ + NCI BBRB + pT4 (kidney) + + + + + + + + + pT0 (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that there is no evidence of primary tumor. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT0 (ovary) + + + + + + + + + pT1 (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor is limited to the ovaries (one or both). + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT1 (ovary) + + + + + + + + + pT1a (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor is limited to one ovary; capsule intact, no tumor on ovarian surface and no malignant cells in ascites or peritoneal washings. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT1a (ovary) + + + + + + + + + pT1b (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor is limited to both ovaries; capsule intact, no tumor on ovarian surface and no malignant cells in ascites or peritoneal washings. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT1b (ovary) + + + + + + + + + pT1c (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor is limited to one or both ovaries with capsule ruptured, tumor on ovarian surface, or malignant cells in ascites or peritoneal washings. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT1c (ovary) + + + + + + + + + pT2 (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor involves one or both ovaries with pelvic extension. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT2 (ovary) + + + + + + + + + pT2a (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor has extension and/or implants on uterus and/or tube(s) and no malignant cells in ascites or peritoneal washings. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT2a (ovary) + + + + + + + + + pT2b (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor has extension to other pelvic tissues and no malignant cells in ascites or peritoneal washings. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT2b (ovary) + + + + + + + + + pT2c (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor has pelvic extension with malignant cells in ascites or peritoneal washings. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT2c (ovary) + + + + + + + + + pT3 (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor involves one or both ovaries with microscopically confirmed peritoneal metastasis outside the pelvis and/or regional lymph node metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT3 (ovary) + + + + + + + + + pT3a (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor has microscopic peritoneal metastasis beyond pelvis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT3a (ovary) + + + + + + + + + pT3b (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor has macroscopic peritoneal, metastatasis beyond pelvis, 2 cm or less in greatest dimension. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT3b (ovary) + + + + + + + + + pT3c (ovary) + + A pathologic primary tumor stage for ovary according to AJCC 7th edition indicating that the tumor has peritoneal metastasis beyond pelvis, more than 2 cm in greatest dimension and/or regional lymph node metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_t/ + NCI BBRB + pT3c (ovary) + + + + + + + + + pN0 (colon) + + A pathologic lymph node stage for colon and rectum according to AJCC 7th edition indicating no regional lymph node metastsis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_n/ + NCI BBRB + pN0 (colon) + + + + + + + + + pN1 (colon) + + A pathologic lymph node stage for colon and rectum according to AJCC 7th edition indicating metastasis in 1-3 regional lymph nodes. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_n/ + NCI BBRB + pN1 (colon) + + + + + + + + + pN1a (colon) + + A pathologic lymph node stage for colon and rectum according to AJCC 7th edition indicating metastasis in 1 regional lymph node. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_n/ + NCI BBRB + pN1a (colon) + + + + + + + + + pN1b (colon) + + A pathologic lymph node stage for colon and rectum according to AJCC 7th edition indicating metastasis in 2-3 regional lymph nodes. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_n/ + NCI BBRB + pN1b (colon) + + + + + + + + + pN1c (colon) + + A pathologic lymph node stage for colon and rectum according to AJCC 7th edition indicating tumor deposit(s), i.e., satellites in the subserosa, or in non-peritonealized pericolic or perirectal soft tissue without regional lymph node metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_n/ + NCI BBRB + pN1c (colon) + + + + + + + + + pN2 (colon) + + A pathologic lymph node stage for colon and rectum according to AJCC 7th edition indicating metastasis in 4 or more regional lymph nodes. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_n/ + NCI BBRB + pN2 (colon) + + + + + + + + + pN2a (colon) + + A pathologic lymph node stage for colon and rectum according to AJCC 7th edition indicating metastasis in 4 to 6 regional lymph nodes. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_n/ + NCI BBRB + pN2a (colon) + + + + + + + + + pN2b (colon) + + A pathologic lymph node stage for colon and rectum according to AJCC 7th edition indicating metastasis in 7 or more regional lymph nodes. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_n/ + NCI BBRB + pN2b (colon) + + + + + + + + + pN0 (lung) + + A pathologic lymph node stage for lung according to AJCC 7th edition indicating no regional lymph node metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_n/ + NCI BBRB + pN0 (lung) + + + + + + + + + pN1 (lung) + + A pathologic lymph node stage for lung according to AJCC 7th edition indicating metastasis in ipsilateral peribronchial and/or ipsilateral hilar lymph nodes and intrapulmonary nodes, including involvement by direct extension. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_n/ + NCI BBRB + pN1 (lung) + + + + + + + + + pN2 (lung) + + A pathologic lymph node stage for lung according to AJCC 7th edition indicating metastasis in ipsilateral mediastinal and/or subcarinal lymph node(s). + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_n/ + NCI BBRB + pN2 (lung) + + + + + + + + + pN3 (lung) + + A pathologic lymph node stage for lung according to AJCC 7th edition indicating metastasis in contralateral mediastinal, contralateral hilar, ipsilateral or contralateral scalene, or supraclavicular lymph node(s). + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_n/ + NCI BBRB + pN3 (lung) + + + + + + + + + pN0 (kidney) + + A pathologic lymph node stage for kidney according to AJCC 7th edition indicating that there is no regional lymph node metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_n/ + NCI BBRB + pN0 (kidney) + + + + + + + + + pN1 (kidney) + + A pathologic lymph node stage for kidney according to AJCC 7th edition indicating that there is regional lymph node metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_n/ + NCI BBRB + pN1 (kidney) + + + + + + + + + pN0 (ovary) + + A pathologic lymph node stage for ovary according to AJCC 7th edition indicating that there is no regional lymph node metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_n/ + NCI BBRB + pN0 (ovary) + + + + + + + + + pN1 (ovary) + + A pathologic lymph node stage for ovary according to AJCC 7th edition indicating that there is regional lymph node metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_n/ + NCI BBRB + pN1 (ovary) + + + + + + + + + cM0 (colon) + + A pathologic distant metastases stage for colon according to AJCC 7th edition indicating that there are no symptoms or signs of distant metastasis. + Chris Stoeckert, Helena Ellis + https://en.wikipedia.org/wiki/Cancer_staging#Pathological_M_Categorization_.28cM_and_pM.29 + NCI BBRB + cM0 (colon) + + + + + + + + + cM1 (colon) + + A pathologic distant metastases stage for colon according to AJCC 7th edition indicating that there is clinical evidence of distant metastases by history, physical examination, imaging studies, or invasive procedures, but without microscopic evidence of the presumed distant metastases. + Chris Stoeckert, Helena Ellis + https://en.wikipedia.org/wiki/Cancer_staging#Pathological_M_Categorization_.28cM_and_pM.29 + NCI BBRB + cM1 (colon) + + + + + + + + + cM1a (colon) + + A pathologic distant metastases stage for colon according to AJCC 7th edition indicating that metastasis is confined to one organ based on clinical assessment. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_m/ + NCI BBRB + cM1a (colon) + + + + + + + + + cM1b (colon) + + A pathologic distant metastases stage for colon according to AJCC 7th edition indicating that metastasis is in more than one organ or the peritoneum based on clinical assessment. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_m/ + NCI BBRB + cM1b (colon) + + + + + + + + + pM1 (colon) + + A pathologic distant metastases stage for colon according to AJCC 7th edition indicating that there is microscopic evidence confirming distant metastatic disease. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_m/ + NCI BBRB + pM1 (colon) + + + + + + + + + pM1a (colon) + + A pathologic distant metastases stage for colon according to AJCC 7th edition indicating that metastasis is confined to one organ and histologically confirmed. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_m/ + NCI BBRB + pM1a (colon) + + + + + + + + + pM1b (colon) + + A pathologic distant metastases stage for colon according to AJCC 7th edition indicating that metastasis is in more than one organ or the peritoneum and histologically confirmed. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/colon/path_m/ + NCI BBRB + pM1b (colon) + + + + + + + + + cM0 (lung) + + A pathologic distant metastases stage for lung according to AJCC 7th edition indicating that there is no distant metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_m/ + NCI BBRB + cM0 (lung) + + + + + + + + + cM1 (lung) + + A pathologic distant metastases stage for lung according to AJCC 7th edition indicating that there are distant metastases based on clinical assessment. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_m/ + NCI BBRB + cM1 (lung) + + + + + + + + + cM1a (lung) + + A pathologic distant metastases stage for lung according to AJCC 7th edition indicating that metastasis is based on clinical assessment and a separate tumor nodule(s) in a contralateral lobe; tumor with pleural nodules OR malignant pleural or pericardial effusion. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_m/ + NCI BBRB + cM1a (lung) + + + + + + + + + cM1b (lung) + + A pathologic distant metastases stage for lung according to AJCC 7th edition indicating that there is a distant metastases based on clinical assessment. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_m/ + NCI BBRB + cM1b (lung) + + + + + + + + + pM1 (lung) + + A pathologic distant metastases stage for lung according to AJCC 7th edition indicating that there is a distant metastases that is histologically confirmed. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_m/ + NCI BBRB + pM1 (lung) + + + + + + + + + pM1a (lung) + + A pathologic distant metastases stage for lung according to AJCC 7th edition indicating that metastasis is histologically confirmed and a separate tumor nodule(s) in a contralateral lobe; tumor with pleural nodules OR malignant pleural or pericardial effusion. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_m/ + NCI BBRB + pM1a (lung) + + + + + + + + + pM1b (lung) + + A pathologic distant metastases stage for lung according to AJCC 7th edition indicating that there is a distant metastases that is histologically confirmed and associated with distant lymph nodes or carcinomatosis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/lung/path_m/ + NCI BBRB + pM1b (lung) + + + + + + + + + cM0 (kidney) + + A pathologic distant metastases stage for kidney according to AJCC 7th edition indicating that there is no distant metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_m/ + NCI BBRB + cM0 (kidney) + + + + + + + + + cM1 (kidney) + + A pathologic distant metastases stage for kidney according to AJCC 7th edition indicating that there are distant metastases based on clinical assessment. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_m/ + NCI BBRB + cM1 (kidney) + + + + + + + + + pM1 (kidney) + + A pathologic distant metastases stage for kidney according to AJCC 7th edition indicating that there is a distant metastases that is histologically confirmed. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/kidney_parenchyma/path_m/ + NCI BBRB + pM1 (kidney) + + + + + + + + + cM0 (ovary) + + A pathologic distant metastases stage for ovary according to AJCC 7th edition indicating that there is no distant metastasis. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_m/ + NCI BBRB + cM0 (ovary) + + + + + + + + + cM1 (ovary) + + A pathologic distant metastases stage for ovary according to AJCC 7th edition indicating that there is distant metastasis except peritoneal metastasis based on clinical assessment. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_m/ + NCI BBRB + cM1 (ovary) + + + + + + + + + pM1 (ovary) + + A pathologic distant metastases stage for ovary according to AJCC 7th edition indicating that there is distant metastasis except peritoneal metastasis that is histologically confirmed. + Chris Stoeckert, Helena Ellis + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_m/ + NCI BBRB + pM1 (ovary) + + + + + + + + + Occult Carcinoma (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating a small carcinoma, either asymptomatic or giving rise to metastases without symptoms due to the primary carcinoma. + Chris Stoeckert, Helena Ellis + Occult Carcinoma + http://www.medilexicon.com/dictionary/14371 + NCI BBRB + Occult Carcinoma (AJCC 7th) + + + + + + + + + Stage 0 (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating a carcinoma in situ (or melanoma in situ for melanoma of the skin or germ cell neoplasia in situ for testicular germ cell tumors) and generally is considered to have no metastatic potential. + Chris Stoeckert, Helena Ellis + Stage 0 + https://en.wikipedia.org/wiki/Cancer_staging + NCI BBRB + Stage 0 (AJCC 7th) + + + + + + + + + Stage I (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating cancers that are smaller or less deeply invasive without regional disease or nodes. + Chris Stoeckert, Helena Ellis + Stage I + https://en.wikipedia.org/wiki/Cancer_staging + NCI BBRB + Stage I (AJCC 7th) + + + + + + + + + Stage IIA (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating cancers with increasing tumor or nodal extent but less than in Stage III and with differing characteristics from IIB and IIC. + Chris Stoeckert, Helena Ellis + Stage IIA + https://en.wikipedia.org/wiki/Cancer_staging + NCI BBRB + Stage IIA (AJCC 7th) + + + + + + + + + Stage IIB (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating cancers with increasing tumor or nodal extent but less than in Stage III and with differing characteristics from IIA and IIC. + Chris Stoeckert, Helena Ellis + Stage IIB + https://en.wikipedia.org/wiki/Cancer_staging + NCI BBRB + Stage IIB (AJCC 7th) + + + + + + + + + Stage IIC (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating cancers with increasing tumor or nodal extent but less than in Stage III and with differing characteristics from IIA and IIB. + Chris Stoeckert, Helena Ellis + Stage IIC + https://en.wikipedia.org/wiki/Cancer_staging + NCI BBRB + Stage IIC (AJCC 7th) + + + + + + + + + Stage IIIA (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating cancers with increasing tumor or nodal extent greater than in Stage II and with differing characteristics from IIIB and IIIC. + Chris Stoeckert, Helena Ellis + Stage IIIA + https://en.wikipedia.org/wiki/Cancer_staging + NCI BBRB + Stage IIIA (AJCC 7th) + + + + + + + + + Stage IIIB (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating cancers with increasing tumor or nodal extent greater than in Stage II and with differing characteristics from IIIA and IIIC. + Chris Stoeckert, Helena Ellis + Stage IIIB + https://en.wikipedia.org/wiki/Cancer_staging + NCI BBRB + Stage IIIB (AJCC 7th) + + + + + + + + + Stage IIIC (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating cancers with increasing tumor or nodal extent greater than in Stage II and with differing characteristics from IIIA and IIIB. + Chris Stoeckert, Helena Ellis + Stage IIIC + https://en.wikipedia.org/wiki/Cancer_staging + NCI BBRB + Stage IIIC (AJCC 7th) + + + + + + + + + Stage IVA (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating cancers in patients who present with distant metastases at diagnosis and with differing characteristics from IVB. + Chris Stoeckert, Helena Ellis + Stage IVA + https://en.wikipedia.org/wiki/Cancer_staging + NCI BBRB + Stage IVA (AJCC 7th) + + + + + + + + + Stage IVB (AJCC 7th) + + A clinical tumor stage group according to AJCC 7th edition indicating cancers in patients who present with distant metastases at diagnosis and with differing characteristics from IVA. + Chris Stoeckert, Helena Ellis + Stage IVB + https://en.wikipedia.org/wiki/Cancer_staging + NCI BBRB + Stage IVB (AJCC 7th) + + + + + + + + + Stage IA (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating invasive carcinoma which can be diagnosed only by microscopy, with deepest invasion <5 mm and the largest extension <7 mm. + Chris Stoeckert, Helena Ellis + Stage IA + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IA (FIGO) + + + + + + + + + Stage IA1 (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating measured stromal invasion of <3.0 mm in depth and extension of <7.0 mm. + Chris Stoeckert, Helena Ellis + Stage IA1 + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IA1 (FIGO) + + + + + + + + + Stage IA2 (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating measured stromal invasion of >3.0 mm and not >5.0 mm with an extension of not >7.0 mm. + Chris Stoeckert, Helena Ellis + Stage IA2 + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IA2 (FIGO) + + + + + + + + + Stage IB (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating clinically visible lesions limited to the cervix uteri or pre-clinical cancers greater than stage IA + Chris Stoeckert, Helena Ellis + Stage IB + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IB (FIGO) + + + + + + + + + Stage IB1 (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating clinically visible lesion limited to the cervix uteri or pre-clinical cancers greater than stage IA <4.0 cm in greatest dimension. + Chris Stoeckert, Helena Ellis + Stage IB1 + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IB1 (FIGO) + + + + + + + + + Stage IB2 (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating clinically visible lesion limited to the cervix uteri or pre-clinical cancers greater than stage IA >4.0 cm in greatest dimension. + Chris Stoeckert, Helena Ellis + Stage IB2 + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IB2 (FIGO) + + + + + + + + + Stage IIA (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating cervical carcinoma invades beyond the uterus, but not to the pelvic wall or to the lower third of the vagina without parametrial invasion. + Chris Stoeckert, Helena Ellis + Stage IIA + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IIA (FIGO) + + + + + + + + + Stage IIA1 (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating cervical carcinoma invades beyond the uterus, but not to the pelvic wall or to the lower third of the vagina without parametrial invasion and clinically visible lesion <4.0 cm in greatest dimension. + Chris Stoeckert, Helena Ellis + Stage IIA1 + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IIA1 (FIGO) + + + + + + + + + Stage IIA2 (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating cervical carcinoma invades beyond the uterus, but not to the pelvic wall or to the lower third of the vagina without parametrial invasion and clinically visible lesion >4.0 cm in greatest dimension. + Chris Stoeckert, Helena Ellis + Stage IIA2 + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IIA2 (FIGO) + + + + + + + + + Stage IIB (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating cervical carcinoma invades beyond the uterus, but not to the pelvic wall or to the lower third of the vagina with obvious parametrial invasion. + Chris Stoeckert, Helena Ellis + Stage IIB + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IIB (FIGO) + + + + + + + + + Stage IIIA (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating tumour involves lower third of the vagina, with no extension to the pelvic wall. + Chris Stoeckert, Helena Ellis + Stage IIIA + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IIIA (FIGO) + + + + + + + + + Stage IIIB (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating extension to the pelvic wall and/or hydronephrosis or non-functioning kidney. + Chris Stoeckert, Helena Ellis + Stage IIIB + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IIIB (FIGO) + + + + + + + + + Stage IVA (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating spread of the growth to adjacent organs. + Chris Stoeckert, Helena Ellis + Stage IVA + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IVA (FIGO) + + + + + + + + + Stage IVB (FIGO) + + An International Federation of Gynecology and Obstetrics cervical cancer stage value specification indicating spread to distant organs. + Chris Stoeckert, Helena Ellis + Stage IVB + https://en.wikipedia.org/wiki/Cervical_cancer_staging + NCI BBRB + Stage IVB (FIGO) + + + + + + + + + Stage 1 (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of T1, N0, and M0. + Chris Stoeckert, Helena Ellis + Stage 1 + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 1 (FIGO) + + + + + + + + + Stage 1A (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of T1a, N0, and M0. + Chris Stoeckert, Helena Ellis + Stage 1A + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 1A (FIGO) + + + + + + + + + Stage 1B (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of T1b, N0, and M0. + Chris Stoeckert, Helena Ellis + Stage 1B + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 1B (FIGO) + + + + + + + + + Stage 1C (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of T1c, N0, and M0. + Chris Stoeckert, Helena Ellis + Stage 1C + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 1C (FIGO) + + + + + + + + + Stage 2 (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of T2, N0, and M0. + Chris Stoeckert, Helena Ellis + Stage 2 + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 2 (FIGO) + + + + + + + + + Stage 2A (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of T2a, N0, and M0. + Chris Stoeckert, Helena Ellis + Stage 2A + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 2A (FIGO) + + + + + + + + + Stage 2B (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of T2b, N0, and M0. + Chris Stoeckert, Helena Ellis + Stage 2B + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 2B (FIGO) + + + + + + + + + Stage 2C (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of T2c, N0, and M0. + Chris Stoeckert, Helena Ellis + Stage 2C + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 2C (FIGO) + + + + + + + + + Stage 3 (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of (T3, N0, and M0) or (T3,3a,3b, NX, and M0). + Chris Stoeckert, Helena Ellis + Stage 3 + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 3 (FIGO) + + + + + + + + + Stage 3A (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of T3a, N0, and M0 . + Chris Stoeckert, Helena Ellis + Stage 3A + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 3A (FIGO) + + + + + + + + + Stage 3B (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of T3b, N0, and M0 . + Chris Stoeckert, Helena Ellis + Stage 3B + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 3B (FIGO) + + + + + + + + + Stage 3C (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of (T3c, N0,X and M0) or (any T, N1 and M0). + Chris Stoeckert, Helena Ellis + Stage 3C + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 3C (FIGO) + + + + + + + + + Stage 4 (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of any T, any N, and M1. + Chris Stoeckert, Helena Ellis + Stage 4 + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage 4 (FIGO) + + + + + + + + + Stage Unknown (FIGO) + + A International Federation of Gynecology and Obstetrics ovarian cancer stage value specification associated with TNM stage values of (T0, N0, and M0) or (T1,1a-1c,2,2a-2c, NX, and M0) or (TX, N0,X, M0). + Chris Stoeckert, Helena Ellis + Stage Unknown + https://staging.seer.cancer.gov/tnm/input/1.0/ovary/path_stage_group_direct/ + NCI BBRB + Stage Unknown (FIGO) + + + + + + + + + 3: symptomatic in bed more than 50% of the day but not bed ridden + + An Eastern Cooperative Oncology Group score value specification indicating a patient is symptomatic and in bed for more than 50% of the day but is not bed ridden. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + 3: symptomatic in bed more than 50% of the day but not bed ridden + + + + + + + + + 2: symptomatic but in bed less than 50% of the day + + An Eastern Cooperative Oncology Group score value specification indicating a patient is symptomatic but is in bed for less than 50% of the day. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + 2: symptomatic but in bed less than 50% of the day + + + + + + + + + 4: bed ridden + + An Eastern Cooperative Oncology Group score value specification indicating a patient is symptomatic and is bed ridden. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + 4: bed ridden + + + + + + + + + 0: asymptomatic + + An Eastern Cooperative Oncology Group score value specification indicating a patient is asymptomatic. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + 0: asymptomatic + + + + + + + + + 1: symptomatic but fully ambulatory + + An Eastern Cooperative Oncology Group score value specification indicating a patient is symptomatic but is fully ambulatory. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + 1: symptomatic but fully ambulatory + + + + + + + + + 100: asymptomatic + + A Karnofsky score vaue specification indicating that a patient is asymptomatic. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + 100: asymptomatic + + + + + + + + + 80-90: symptomatic but fully ambulatory + + A Karnofsky score vaue specification indicating that a patient is symptomatic but fully ambulatory. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + 80-90: symptomatic but fully ambulatory + + + + + + + + + 60-70: symptomatic but in bed less than 50% of the day + + A Karnofsky score vaue specification indicating that a patient is symptomatic but in bed less than 50% of the day. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + 60-70: symptomatic but in bed less than 50% of the day + + + + + + + + + 40-50: symptomatic, in bed more than 50% of the day, but not bed ridden + + A Karnofsky score vaue specification indicating that a patient is symptomatic, in bed more than 50% of the day, but not bed ridden. + Chris Stoeckert, Helena Ellis + NCI BBRB, OBI + NCI BBRB + 40-50: symptomatic, in bed more than 50% of the day, but not bed ridden + + + + + + + + + Oxford Nanopore Technologies + + An organization that is developing and selling nanopore sequencing products and is based in the UK. + James A. Overton + https://en.wikipedia.org/wiki/Oxford_Nanopore_Technologies + Oxford Nanopore Technologies + + + + + + + + + BioGents + + An organization that manufactures mosquito traps and other mosquito control products. + John Judkins + WEB:https://eu.biogents.com/about-biogents/ + BioGents + + + + + + + + + meter + A length unit which is equal to the length of the path traveled by light in vacuum during a time interval of 1/299 792 458 of a second. + m + + meter + + + + + + + + + kilogram + A mass unit which is equal to the mass of the International Prototype Kilogram kept by the BIPM at Svres, France. + kg + + kilogram + + + + + + + + + second + A time unit which is equal to the duration of 9 192 631 770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the caesium 133 atom. + s + sec + + second + + + + + + + + + centimeter + A length unit which is equal to one hundredth of a meter or 10^[-2] m. + cm + + centimeter + + + + + + + + + millimeter + A length unit which is equal to one thousandth of a meter or 10^[-3] m. + mm + + millimeter + + + + + + + + + micrometer + A length unit which is equal to one millionth of a meter or 10^[-6] m. + um + + micrometer + + + + + + + + + nanometer + A length unit which is equal to one thousandth of one millionth of a meter or 10^[-9] m. + nm + + nanometer + + + + + + + + + angstrom + A length unit which is equal to 10 [-10] m. + + angstrom + + + + + + + + + gram + A mass unit which is equal to one thousandth of a kilogram or 10^[-3] kg. + g + + gram + + + + + + + + + milligram + A mass unit which is equal to one thousandth of a gram or 10^[-3] g. + mg + + milligram + + + + + + + + + microgram + A mass unit which is equal to one millionth of a gram or 10^[-6] g. + ug + + microgram + + + + + + + + + nanogram + A mass unit which is equal to one thousandth of one millionth of a gram or 10^[-9] g. + ng + + nanogram + + + + + + + + + picogram + A mass unit which is equal to 10^[-12] g. + pg + + picogram + + + + + + + + + degree Celsius + A temperature unit which is equal to one kelvin degree. However, they have their zeros at different points. The centigrade scale has its zero at 273.15 K. + C + degree C + + degree Celsius + + + + + + + + + minute + A time unit which is equal to 60 seconds. + min + + minute + + + + + + + + + hour + A time unit which is equal to 3600 seconds or 60 minutes. + h + hr + + hour + + + + + + + + + day + A time unit which is equal to 24 hours. + + day + + + + + + + + + week + A time unit which is equal to 7 days. + + week + + + + + + + + + month + A time unit which is approximately equal to the length of time of one of cycle of the moon's phases which in science is taken to be equal to 30 days. + + month + + + + + + + + + year + A time unit which is equal to 12 months which is science is taken to be equal to 365.25 days. + + year + + + + + + + + + micromole + A substance unit equal to a millionth of a mol or 10^[-6] mol. + umol + + micromole + + + + + + + + + nanomole + A substance unit equal to one thousandth of one millionth of a mole or 10^[-9] mol. + nmol + + nanomole + + + + + + + + + picomole + A substance unit equal to 10^[-12] mol. + pmol + + picomole + + + + + + + + + molar + A unit of concentration which expresses a concentration of 1 mole of solute per liter of solution (mol/L). + M + + molar + + + + + + + + + millimolar + A unit of molarity which is equal to one thousandth of a molar or 10^[-3] M. + mM + + millimolar + + + + + + + + + micromolar + A unit of molarity which is equal to one millionth of a molar or 10^[-6] M. + uM + + micromolar + + + + + + + + + nanomolar + A unit of molarity which is equal to one thousandth of one millionth of a molar or 10^[-9] M. + nM + + nanomolar + + + + + + + + + picomolar + A unit of molarity which is equal to 10^[-12] M. + pM + + picomolar + + + + + + + + + cubic centimeter + A volume unit which is equal to one millionth of a cubic meter or 10^[-9] m^[3], or to 1 ml. + cc + + cubic centimeter + + + + + + + + + milliliter + A volume unit which is equal to one thousandth of a liter or 10^[-3] L, or to 1 cubic centimeter. + ml + + milliliter + + + + + + + + + liter + A volume unit which is equal to one thousandth of a cubic meter or 10^[-3] m^[3], or to 1 decimeter. + L + + liter + + + + + + + + + cubic decimeter + A volume unit which is equal to one thousand of a cubic meter or 10^[-3] m^[3], or to 1 L. + + cubic decimeter + + + + + + + + + microliter + A volume unit which is equal to one millionth of a liter or 10^[-6] L. + ul + + microliter + + + + + + + + + nanoliter + A volume unit which is equal to one thousandth of one millionth of a liter or 10^[-9] L. + nl + + nanoliter + + + + + + + + + picoliter + A volume unit which is equal to 10^[-12] L. + pl + + picoliter + + + + + + + + + hertz + A frequency unit which is equal to 1 complete cycle of a recurring phenomenon in 1 second. + + hertz + + + + + + + + + mass percentage + A dimensionless concentration unit which denotes the mass of a substance in a mixture as a percentage of the mass of the entire mixture. + % w/w + percent weight pr weight + + mass percentage + + + + + + + + + mass volume percentage + A dimensionless concentration unit which denotes the mass of the substance in a mixture as a percentage of the volume of the entire mixture. + % w/v + percent vol per vol + + mass volume percentage + + + + + + + + + volume percentage + A dimensionless concentration unit which denotes the volume of the solute in mL per 100 mL of the resulting solution. + % v/v + percent vol per vol + + volume percentage + + + + + + + + + gram per liter + A mass unit density which is equal to mass of an object in grams divided by the volume in liters. + g per L + g/L + + gram per liter + + + + + + + + + milligram per milliliter + A mass unit density which is equal to mass of an object in milligrams divided by the volume in milliliters. + mg per ml + mg/ml + + milligram per milliliter + + + + + + + + + degree Fahrenheit + A temperature unit which is equal to 5/9ths of a kelvin. Negative 40 degrees Fahrenheit is equal to negative 40 degrees Celsius. + + degree Fahrenheit + + + + + + + + + pH + A dimensionless concentration notation which denotes the acidity of a solution in terms of activity of hydrogen ions (H+). + + pH + + + + + + + + + milliliter per liter + A volume per unit volume unit which is equal to one millionth of a liter of solute in one liter of solution. + ml per L + ml/l + + milliliter per liter + + + + + + + + + gram per deciliter + A mass density unit which is equal to mass of an object in grams divided by the volume in deciliters. + g/dl + + gram per deciliter + + + + + + + + + colony forming unit per volume + A concentration unit which a measure of viable bacterial numbers in a given volume. + + colony forming unit per volume + + + + + + + + + microliters per minute + A volumetric flow rate unit which is equal to one microliter volume through a given surface in one minute. + + microliters per minute + + + + + + + + + count per nanomolar second + A rate unit which is equal to one over one nanomolar second. + + count per nanomolar second + + + + + + + + + count per molar second + A rate unit which is equal to one over one molar second. + + count per molar second + + + + + + + + + count per nanomolar + A rate unit which is equal to one over one nanomolar. + + count per nanomolar + + + + + + + + + count per molar + A rate unit which is equal to one over one molar. + + count per molar + + + + + + + + + microgram per liter + A mass unit density which is equal to mass of an object in micrograms divided by the volume in liters. + ng/ml + ug/L + + microgram per liter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rxno_odk/src/ontology/imports/obi_terms.txt b/rxno_odk/src/ontology/imports/obi_terms.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/rxno_odk/src/ontology/imports/obi_terms.txt @@ -0,0 +1 @@ + diff --git a/rxno_odk/src/ontology/imports/omo_import.owl b/rxno_odk/src/ontology/imports/omo_import.owl new file mode 100644 index 0000000..97ef7c7 --- /dev/null +++ b/rxno_odk/src/ontology/imports/omo_import.owl @@ -0,0 +1,450 @@ + + + + + + 2022-04-06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + data item + data item + + + + + + + + + information content entity + information content entity + + + + + + + + + + + + + + + + + + + + + + + + curation status specification + + The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value. + Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting) + PERSON:Bill Bug + GROUP:OBI:<http://purl.obolibrary.org/obo/obi> + OBI_0000266 + curation status specification + + + + + + + + + data about an ontology part + Data about an ontology part is a data item about a part of an ontology, for example a term + Person:Alan Ruttenberg + data about an ontology part + + + + + + + + + + + + + + + + + + + + obsolescence reason specification + + The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value. + The creation of this class has been inspired in part by Werner Ceusters' paper, Applying evolutionary terminology auditing to the Gene Ontology. + PERSON: Alan Ruttenberg + PERSON: Melanie Courtot + obsolescence reason specification + + + + + + + + + + + + + + + + + + denotator type + The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are "natural kinds" and the latter arbitrary collections of entities. + A denotator type indicates how a term should be interpreted from an ontological perspective. + Alan Ruttenberg + Barry Smith, Werner Ceusters + denotator type + + + + + + + + + + + + + + example to be eventually removed + example to be eventually removed + + + + + + + + + failed exploratory term + The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job + Person:Alan Ruttenberg + failed exploratory term + + + + + + + + + metadata complete + Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete. + metadata complete + + + + + + + + + organizational term + Term created to ease viewing/sort terms for development purpose, and will not be included in a release + organizational term + + + + + + + + + ready for release + Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking "ready_for_release" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed "ready_for_release" will also derived from a chain of ancestor classes that are also "ready_for_release." + ready for release + + + + + + + + + metadata incomplete + Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors. + metadata incomplete + + + + + + + + + uncurated + Nothing done yet beyond assigning a unique class ID and proposing a preferred term. + uncurated + + + + + + + + + pending final vetting + All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor. + pending final vetting + + + + + + + + + placeholder removed + placeholder removed + + + + + + + + + terms merged + An editor note should explain what were the merged terms and the reason for the merge. + terms merged + + + + + + + + + term imported + This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use. + term imported + + + + + + + + + term split + This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created. + term split + + + + + + + + + universal + Hard to give a definition for. Intuitively a "natural kind" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents. + Alan Ruttenberg + A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf + universal + + + + + + + + + defined class + A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal + "definitions", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal. + Alan Ruttenberg + defined class + + + + + + + + + named class expression + A named class expression is a logical expression that is given a name. The name can be used in place of the expression. + named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions + Alan Ruttenberg + named class expression + + + + + + + + + to be replaced with external ontology term + Terms with this status should eventually replaced with a term from another ontology. + Alan Ruttenberg + group:OBI + to be replaced with external ontology term + + + + + + + + + requires discussion + A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues. + Alan Ruttenberg + group:OBI + requires discussion + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rxno_odk/src/ontology/imports/omo_terms.txt b/rxno_odk/src/ontology/imports/omo_terms.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/rxno_odk/src/ontology/imports/omo_terms.txt @@ -0,0 +1 @@ + diff --git a/rxno_odk/src/ontology/imports/ro_import.owl b/rxno_odk/src/ontology/imports/ro_import.owl new file mode 100644 index 0000000..d74b876 --- /dev/null +++ b/rxno_odk/src/ontology/imports/ro_import.owl @@ -0,0 +1,3607 @@ + + + + + + 2022-04-06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + If R <- P o Q is a defining property chain axiom, then it also holds that R -> P o Q. Note that this cannot be expressed directly in OWL + is a defining property chain axiom + + + + + + + + If R <- P o Q is a defining property chain axiom, then (1) R -> P o Q holds and (2) Q is either reflexive or locally reflexive. A corollary of this is that P SubPropertyOf R. + is a defining property chain axiom where second argument is reflexive + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + is part of + my brain is part of my body (continuant parthood, two material entities) + my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity) + this day is part of this year (occurrent parthood) + a core relation that holds between a part and its whole + Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other. + Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/ + Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) + +A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'. + part_of + + + + + + + + + + + + + part of + + + http://www.obofoundry.org/ro/#OBO_REL:part_of + + + + + + + + + + has part + my body has part my brain (continuant parthood, two material entities) + my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity) + this year has part this day (occurrent parthood) + a core relation that holds between a whole and its part + Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part. + Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/ + Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.) + +A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'. + has_part + + + + + has part + + + + + + + + + + + + + + + + + preceded by + x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point. + An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other. + is preceded by + preceded_by + http://www.obofoundry.org/ro/#OBO_REL:preceded_by + + preceded by + + + + + + + + + + + + + + + + precedes + x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point. + + precedes + + + + + + + + + + + inheres in + this fragility is a characteristic of this vase + this red color is a characteristic of this apple + a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence. + inheres_in + + Note that this relation was previously called "inheres in", but was changed to be called "characteristic of" because BFO2 uses "inheres in" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing. + characteristic of + + + + + + + + + + bearer of + this apple is bearer of this red color + this vase is bearer of this fragility + Inverse of characteristic_of + A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist. + bearer_of + is bearer of + + has characteristic + + + + + + + + + + + participates in + this blood clot participates in this blood coagulation + this input material (or this output material) participates in this process + this investigator participates in this investigation + a relation between a continuant and a process, in which the continuant is somehow involved in the process + participates_in + participates in + + + + + + + + + + + + + + has participant + this blood coagulation has participant this blood clot + this investigation has participant this investigator + this process has participant this input material (or this output material) + a relation between a process and a continuant, in which the continuant is somehow involved in the process + Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time. + has_participant + http://www.obofoundry.org/ro/#OBO_REL:has_participant + has participant + + + + + + + + + + + this catalysis function is a function of this enzyme + a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence + A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists. + function_of + is function of + This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020. + function of + + + + + + + + + + this red color is a quality of this apple + a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence + A quality inheres in its bearer at all times for which the quality exists. + is quality of + quality_of + This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020. + quality of + + + + + + + + + + this investigator role is a role of this person + a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence + A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists. + is role of + role_of + This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020. + role of + + + + + + + + + + + this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function) + a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence + A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists. + has_function + has function + + + + + + + + + + this apple has quality this red color + a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence + A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist. + has_quality + has quality + + + + + + + + + + + this person has role this investigator role (more colloquially: this person has this role of investigator) + a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence + A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists. + has_role + has role + + + + + + + + + + + + a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence + has disposition + + + + + + + + + inverse of has disposition + + This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020. + disposition of + + + + + + + + + + A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B. + dos + 2017-05-24T09:30:46Z + has regulatory component activity + + + + + + + + + + A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B. + dos + 2017-05-24T09:31:01Z + By convention GO molecular functions are classified by their effector function. Internal regulatory functions are treated as components. For example, NMDA glutmate receptor activity is a cation channel activity with positive regulatory component 'glutamate binding' and negative regulatory components including 'zinc binding' and 'magnesium binding'. + has negative regulatory component activity + + + + + + + + + + A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B. + dos + 2017-05-24T09:31:17Z + By convention GO molecular functions are classified by their effector function and internal regulatory functions are treated as components. So, for example calmodulin has a protein binding activity that has positive regulatory component activity calcium binding activity. Receptor tyrosine kinase activity is a tyrosine kinase activity that has positive regulatory component 'ligand binding'. + has positive regulatory component activity + + + + + + + + + dos + 2017-05-24T09:44:33Z + A 'has component activity' B if A is A and B are molecular functions (GO_0003674) and A has_component B. + has component activity + + + + + + + + + + + w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type. + dos + 2017-05-24T09:49:21Z + has component process + + + + + + + + + + dos + 2017-09-17T13:52:24Z + Process(P2) is directly regulated by process(P1) iff: P1 regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding regulates the kinase activity (P2) of protein B then P1 directly regulates P2. + directly regulated by + + + + + Process(P2) is directly regulated by process(P1) iff: P1 regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding regulates the kinase activity (P2) of protein B then P1 directly regulates P2. + GOC:dos + + + + + + + + + + Process(P2) is directly negatively regulated by process(P1) iff: P1 negatively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding negatively regulates the kinase activity (P2) of protein B then P2 directly negatively regulated by P1. + dos + 2017-09-17T13:52:38Z + directly negatively regulated by + + + + + Process(P2) is directly negatively regulated by process(P1) iff: P1 negatively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding negatively regulates the kinase activity (P2) of protein B then P2 directly negatively regulated by P1. + GOC:dos + + + + + + + + + + Process(P2) is directly postively regulated by process(P1) iff: P1 positively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding positively regulates the kinase activity (P2) of protein B then P2 is directly postively regulated by P1. + dos + 2017-09-17T13:52:47Z + directly positively regulated by + + + + + Process(P2) is directly postively regulated by process(P1) iff: P1 positively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding positively regulates the kinase activity (P2) of protein B then P2 is directly postively regulated by P1. + GOC:dos + + + + + + + + + + A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity. + dos + 2017-09-22T14:14:36Z + This relation is designed for constructing compound molecular functions, typically in combination with one or more regulatory component activity relations. + has effector activity + + + + + A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity. + GOC:dos + + + + + + + + + + David Osumi-Sutherland + + X ends_after Y iff: end(Y) before_or_simultaneous_with end(X) + ends after + + + + + + + + + + David Osumi-Sutherland + starts_at_end_of + X immediately_preceded_by Y iff: end(X) simultaneous_with start(Y) + immediately preceded by + + + + + + + + + David Osumi-Sutherland + ends_at_start_of + meets + + + X immediately_precedes_Y iff: end(X) simultaneous_with start(Y) + immediately precedes + + + + + + + + + + + + + + + + + + + + + + + + + + x overlaps y if and only if there exists some z such that x has part z and z part of y + http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y) + + + + + overlaps + + + + + + + + + true + + + + + + + + + + w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type. + The definition of 'has component' is still under discussion. The challenge is in providing a definition that does not imply transitivity. + For use in recording has_part with a cardinality constraint, because OWL does not permit cardinality constraints to be used in combination with transitive object properties. In situations where you would want to say something like 'has part exactly 5 digit, you would instead use has_component exactly 5 digit. + + + has component + + + + + + + + + + + + + + + + + + + + + + + process(P1) regulates process(P2) iff: P1 results in the initiation or termination of P2 OR affects the frequency of its initiation or termination OR affects the magnitude or rate of output of P2. + We use 'regulates' here to specifically imply control. However, many colloquial usages of the term correctly correspond to the weaker relation of 'causally upstream of or within' (aka influences). Consider relabeling to make things more explicit + Chris Mungall + David Hill + Tanya Berardini + + GO + Regulation precludes parthood; the regulatory process may not be within the regulated process. + regulates (processual) + false + + + + regulates + + + + + + + + + + + Process(P1) negatively regulates process(P2) iff: P1 terminates P2, or P1 descreases the the frequency of initiation of P2 or the magnitude or rate of output of P2. + Chris Mungall + + negatively regulates (process to process) + + + + + negatively regulates + + + + + + + + + + + + + + + + Process(P1) postively regulates process(P2) iff: P1 initiates P2, or P1 increases the the frequency of initiation of P2 or the magnitude or rate of output of P2. + Chris Mungall + + positively regulates (process to process) + + + + + positively regulates + + + + + + + + + + + mechanosensory neuron capable of detection of mechanical stimulus involved in sensory perception (GO:0050974) + osteoclast SubClassOf 'capable of' some 'bone resorption' + A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. + Chris Mungall + has function realized in + + + For compatibility with BFO, this relation has a shortcut definition in which the expression "capable of some P" expands to "bearer_of (some realized_by only P)". + + capable of + + + + + + + + + + + + + + c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p. + Chris Mungall + has function in + capable of part of + + + + + + + + + + true + + + + + + + + + + + Chris Mungall + + Do not use this relation directly. It is ended as a grouping for relations between occurrents involving the relative timing of their starts and ends. + https://docs.google.com/document/d/1kBv1ep_9g3sTR-SD3jqzFqhuwo9TPNF-l-9fUDbO6rM/edit?pli=1 + + A relation that holds between two occurrents. This is a grouping relation that collects together all the Allen relations. + temporally related to + + + + + + + + + + + + p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p. + Chris Mungall + consumes + + + + + has input + + + + + + + + + + + + + A faulty traffic light (material entity) whose malfunctioning (a process) is causally upstream of a traffic collision (a process): the traffic light acts upstream of the collision. + c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes. + + acts upstream of + + + + + + + + + + + + + + A gene product that has some activity, where that activity may be a part of a pathway or upstream of the pathway. + c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process. + affects + + acts upstream of or within + + + + + + + + + + + + cjm + + + holds between x and y if and only if x is causally upstream of y and the progression of x increases the frequency, rate or extent of y + causally upstream of, positive effect + + + + + + + + + + + cjm + holds between x and y if and only if x is causally upstream of y and the progression of x decreases the frequency, rate or extent of y + causally upstream of, negative effect + + + + + + + + + + + + + + + + + q characteristic of part of w if and only if there exists some p such that q inheres in p and p part of w. + Because part_of is transitive, inheres in is a sub-relation of characteristic of part of + Chris Mungall + inheres in part of + + + characteristic of part of + + + + + + + + + + true + + + + + + + + A mereological relationship or a topological relationship + Chris Mungall + Do not use this relation directly. It is ended as a grouping for a diverse set of relations, all involving parthood or connectivity relationships + + mereotopologically related to + + + + + + + + + + + + + + + + + + a particular instances of akt-2 enables some instance of protein kinase activity + Chris Mungall + catalyzes + executes + has + is catalyzing + is executing + This relation differs from the parent relation 'capable of' in that the parent is weaker and only expresses a capability that may not be actually realized, whereas this relation is always realized. + + enables + + + + + + + + A grouping relationship for any relationship directly involving a function, or that holds because of a function of one of the related entities. + Chris Mungall + This is a grouping relation that collects relations used for the purpose of connecting structure and function + functionally related to + + + + + + + + + + + + + this relation holds between c and p when c is part of some c', and c' is capable of p. + Chris Mungall + false + part of structure that is capable of + + + + + + + + + true + + + + + + + + + + + + + + + + + + c involved_in p if and only if c enables some process p', and p' is part of p + Chris Mungall + actively involved in + enables part of + involved in + + + + + + + + + + + inverse of enables + Chris Mungall + + enabled by + + + + + + + + + + + + inverse of regulates + Chris Mungall + regulated by (processual) + + regulated by + + + + + + + + + inverse of negatively regulates + Chris Mungall + + negatively regulated by + + + + + + + + + inverse of positively regulates + Chris Mungall + + positively regulated by + + + + + + + + + + inverse of has input + Chris Mungall + + + input of + + + + + + + + + + + + inverse of upstream of + Chris Mungall + causally downstream of + + + + + + + + + + + + Chris Mungall + immediately causally downstream of + + + + + + + + + This relation groups causal relations between material entities and causal relations between processes + This branch of the ontology deals with causal relations between entities. It is divided into two branches: causal relations between occurrents/processes, and causal relations between material entities. We take an 'activity flow-centric approach', with the former as primary, and define causal relations between material entities in terms of causal relations between occurrents. + +To define causal relations in an activity-flow type network, we make use of 3 primitives: + + * Temporal: how do the intervals of the two occurrents relate? + * Is the causal relation regulatory? + * Is the influence positive or negative + +The first of these can be formalized in terms of the Allen Interval Algebra. Informally, the 3 bins we care about are 'direct', 'indirect' or overlapping. Note that all causal relations should be classified under a RO temporal relation (see the branch under 'temporally related to'). Note that all causal relations are temporal, but not all temporal relations are causal. Two occurrents can be related in time without being causally connected. We take causal influence to be primitive, elucidated as being such that has the upstream changed, some qualities of the donwstream would necessarily be modified. + +For the second, we consider a relationship to be regulatory if the system in which the activities occur is capable of altering the relationship to achieve some objective. This could include changing the rate of production of a molecule. + +For the third, we consider the effect of the upstream process on the output(s) of the downstream process. If the level of output is increased, or the rate of production of the output is increased, then the direction is increased. Direction can be positive, negative or neutral or capable of either direction. Two positives in succession yield a positive, two negatives in succession yield a positive, otherwise the default assumption is that the net effect is canceled and the influence is neutral. + +Each of these 3 primitives can be composed to yield a cross-product of different relation types. + Chris Mungall + Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. + causally related to + + + + + + + + + + + + p is causally upstream of q if and only if p precedes q and p and q are linked in a causal chain + Chris Mungall + + + causally upstream of + + + + + + + + + + + p is immediately causally upstream of q iff both (a) p immediately precedes q and (b) p is causally upstream of q. In addition, the output of p must be an input of q. + Chris Mungall + + immediately causally upstream of + + + + + + + + + + + p 'causally upstream or within' q iff (1) the end of p is before the end of q and (2) the execution of p exerts some causal influence over the outputs of q; i.e. if p was abolished or the outputs of p were to be modified, this would necessarily affect q. + We would like to make this disjoint with 'preceded by', but this is prohibited in OWL2 + Chris Mungall + influences (processual) + affects + causally upstream of or within + + + + + + + + + + inverse of causally upstream of or within + Chris Mungall + + + causally downstream of or within + + + + + + + + + + + + + + + + + + c involved in regulation of p if c is involved in some p' and p' regulates some p + Chris Mungall + involved in regulation of + + + + + + + + + + + + + + + + + c involved in regulation of p if c is involved in some p' and p' positively regulates some p + Chris Mungall + + involved in positive regulation of + + + + + + + + + + + + + + + + + c involved in regulation of p if c is involved in some p' and p' negatively regulates some p + Chris Mungall + + involved in negative regulation of + + + + + + + + + + + c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p + OWL does not allow defining object properties via a Union + Chris Mungall + involved in or reguates + involved in or involved in regulation of + + + + + + + + + + + A relationship that holds between two entities in which the processes executed by the two entities are causally connected. + Considering relabeling as 'pairwise interacts with' + This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact. + Chris Mungall + Note that this relationship type, and sub-relationship types may be redundant with process terms from other ontologies. For example, the symbiotic relationship hierarchy parallels GO. The relations are provided as a convenient shortcut. Consider using the more expressive processual form to capture your data. In the future, these relations will be linked to their cognate processes through rules. + in pairwise interaction with + + interacts with + http://purl.obolibrary.org/obo/ro/docs/interaction-relations/ + http://purl.obolibrary.org/obo/MI_0914 + + + + + + + + + + An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other. + Chris Mungall + binds + molecularly binds with + molecularly interacts with + + http://purl.obolibrary.org/obo/MI_0915 + + + + + + + + + Axiomatization to GO to be added later + Chris Mungall + An interaction relation between x and y in which x catalyzes a reaction in which a phosphate group is added to y. + phosphorylates + + + + + + + + + + + + + + + + + The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B. + +A and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B. + Chris Mungall + Vasundra Touré + molecularly controls + directly regulates activity of + + + + + + + + + + + + + + + + The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. +For example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B. + Chris Mungall + Vasundra Touré + directly inhibits + molecularly decreases activity of + directly negatively regulates activity of + + + + + + + + + + + + + + + + The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. +For example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B. + Chris Mungall + Vasundra Touré + directly activates + molecularly increases activity of + directly positively regulates activity of + + + + + + + + Chris Mungall + This property or its subproperties is not to be used directly. These properties exist as helper properties that are used to support OWL reasoning. + helper property (not for use in curation) + + + + + + + + + Chris Mungall + is kinase activity + + + + + + + + + + A relationship between a material entity and a process where the material entity has some causal role that influences the process + + causal agent in process + + + + + + + + + + + p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one of direct activation or direct inhibition. p may be upstream, downstream, part of or a container of q. + Chris Mungall + + Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. + causal relation between processes + + + + + + + + Chris Mungall + depends on + + + + + + + + + + + + The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch + Chris Mungall + + Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. + causal relation between entities + + + + + + + + + + Chris Mungall + + causally influenced by (entity-centric) + causally influenced by + + + + + + + + + Chris Mungall + interaction relation helper property + + http://purl.obolibrary.org/obo/ro/docs/interaction-relations/ + + + + + + + + + Chris Mungall + molecular interaction relation helper property + + + + + + + + + + + + + + + + + + + + + The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size). + Chris Mungall + Vasundra Touré + + causally influences (entity-centric) + causally influences + + + + + + + + + + Process(P1) directly regulates process(P2) iff: P1 regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding regulates the kinase activity (P2) of protein B then P1 directly regulates P2. + Chris Mungall + + directly regulates (processual) + + + + + directly regulates + + + + + + + + + + + + + + gland SubClassOf 'has part structure that is capable of' some 'secretion by cell' + s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p + Chris Mungall + has part structure that is capable of + + + + + + + + + + + A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity. + Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect. + Chris Mungall + + causal relation between material entity and a process + + + + + + + + + + + + + pyrethroid -> growth + Holds between c and p if and only if c is capable of some activity a, and a regulates p. + + capable of regulating + + + + + + + + + + + + + Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p. + + capable of negatively regulating + + + + + + + + + + + + + renin -> arteriolar smooth muscle contraction + Holds between c and p if and only if c is capable of some activity a, and a positively regulates p. + + capable of positively regulating + + + + + + + + + Inverse of 'causal agent in process' + + process has causal agent + + + + + + + + + + Process(P1) directly postively regulates process(P2) iff: P1 positively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding positively regulates the kinase activity (P2) of protein B then P1 directly positively regulates P2. + + directly positively regulates (process to process) + + + + + directly positively regulates + + + + + + + + + + Process(P1) directly negatively regulates process(P2) iff: P1 negatively regulates P2 via direct physical interaction between an agent executing P1 (or some part of P1) and an agent executing P2 (or some part of P2). For example, if protein A has protein binding activity(P1) that targets protein B and this binding negatively regulates the kinase activity (P2) of protein B then P1 directly negatively regulates P2. + + directly negatively regulates (process to process) + + + + + directly negatively regulates + + + + + + + + + + + + + Holds between an entity and an process P where the entity enables some larger compound process, and that larger process has-part P. + cjm + 2018-01-25T23:20:13Z + enables subfunction + + + + + + + + + + + + + + cjm + 2018-01-26T23:49:30Z + + acts upstream of or within, positive effect + + + + + + + + + + + + + + + cjm + 2018-01-26T23:49:51Z + + acts upstream of or within, negative effect + + + + + + + + + + + + + + c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive + + cjm + 2018-01-26T23:53:14Z + + acts upstream of, positive effect + + + + + + + + + + + + + + + c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative + + cjm + 2018-01-26T23:53:22Z + + acts upstream of, negative effect + + + + + + + + + + + cjm + 2018-03-13T23:55:05Z + causally upstream of or within, negative effect + + + + + + + + + + cjm + 2018-03-13T23:55:19Z + causally upstream of or within, positive effect + + + + + + + + + + + The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B. + Vasundra Touré + regulates activity of + + + + + + + + + + + + A diagnostic testing device utilizes a specimen. + X utilizes Y means X and Y are material entities, and X is capable of some process P that has input Y. + Asiyah Lin + https://orcid.org/0000-0001-9625-1899 Bill Duncan + A diagnostic testing device utilizes a specimen means that the diagnostic testing device is capable of an assay, and this assay a specimen as its input. + See github ticket https://github.com/oborel/obo-relations/issues/497 + 2021-11-08 + utilizes + + + + + + + + + + + + + + + A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C. + + regulates characteristic + + + + + + + + + + + + + A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C. + + positively regulates characteristic + + + + + + + + + + + + + + + + + A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C. + + negatively regulates characteristic + + + + + + + + + + + + + + + + + + + + + + + + + + An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts. + continuant + + + + + + + + + + + + + + + + + + + + An entity that has temporal parts and that happens, unfolds or develops through time. + occurrent + + + + + + + + + + + + + + + + A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything. + independent continuant + + + + + + + + + An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. + process + + + + + + + + + + disposition + + + + + + + + + + + + + + + + A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances. + realizable entity + + + + + + + + + + + + + + + quality + + + + + + + + + + + + + + + A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same. + specifically dependent continuant + + + + + + + + + A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts. + role + + + + + + + + + function + + + + + + + + + An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time. + material entity + + + + + + + + + molecular process + molecular_function + + + + + + + + + catalytic activity + + + + + + + + + biological_process + + + + + + + + + + + + true + + + kinase activity + + + + + + + + + transferase activity + + + + + + + + + transferase activity, transferring phosphorus-containing groups + + + + + + + + + quality (PATO) + quality + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + MF(X)-directly_regulates->MF(Y)-enabled_by->GP(Z) => MF(Y)-has_input->GP(Y) e.g. if 'protein kinase activity'(X) directly_regulates 'protein binding activity (Y)and this is enabled by GP(Z) then X has_input Z + infer input from direct reg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + GP(X)-enables->MF(Y)-has_part->MF(Z) => GP(X) enables MF(Z), +e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase coupled transporter activity' has_part 'ATPase activity' then GP(X) enables 'ATPase activity' + enabling an MF enables its parts + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + GP(X)-enables->MF(Y)-part_of->BP(Z) => GP(X) involved_in BP(Z) e.g. if X enables 'protein kinase activity' and Y 'part of' 'signal tranduction' then X involved in 'signal transduction' + involved in BP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + If a molecular function (X) has a regulatory subfunction, then any gene product which is an input to that subfunction has an activity that directly_regulates X. Note: this is intended for cases where the regaultory subfunction is protein binding, so it could be tightened with an additional clause to specify this. + inferring direct reg edge from input to regulatory subfunction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inferring direct neg reg edge from input to regulatory subfunction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + inferring direct positive reg edge from input to regulatory subfunction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + effector input is compound function input + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Input of effector is input of its parent MF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + if effector directly regulates X, its parent MF directly regulates X + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + if effector directly positively regulates X, its parent MF directly positively regulates X + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + if effector directly negatively regulates X, its parent MF directly negatively regulates X + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 'causally downstream of' and 'overlaps' should be disjoint properties (a SWRL rule is required because these are non-simple properties). + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 'causally upstream of' and 'overlaps' should be disjoint properties (a SWRL rule is required because these are non-simple properties). + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rxno_odk/src/ontology/imports/ro_terms.txt b/rxno_odk/src/ontology/imports/ro_terms.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/rxno_odk/src/ontology/imports/ro_terms.txt @@ -0,0 +1 @@ + diff --git a/rxno_odk/src/ontology/run.bat b/rxno_odk/src/ontology/run.bat new file mode 100644 index 0000000..ce0179f --- /dev/null +++ b/rxno_odk/src/ontology/run.bat @@ -0,0 +1 @@ +docker run -v %cd%\..\..\:/work -w /work/src/ontology -e ROBOT_JAVA_ARGS='-Xmx8G' -e JAVA_OPTS='-Xmx8G' --rm -ti obolibrary/odkfull %* \ No newline at end of file diff --git a/rxno_odk/src/ontology/run.sh b/rxno_odk/src/ontology/run.sh new file mode 100755 index 0000000..e9c4f03 --- /dev/null +++ b/rxno_odk/src/ontology/run.sh @@ -0,0 +1,25 @@ +#!/bin/sh +# Wrapper script for docker. +# +# This is used primarily for wrapping the GNU Make workflow. +# Instead of typing "make TARGET", type "./run.sh make TARGET". +# This will run the make workflow within a docker container. +# +# The assumption is that you are working in the src/ontology folder; +# we therefore map the whole repo (../..) to a docker volume. +# +# See README-editors.md for more details. + +IMAGE=${IMAGE:-odkfull} + +ODK_DEBUG=${ODK_DEBUG:-no} + +TIMECMD= +if [ x$ODK_DEBUG = xyes ]; then + # If you wish to change the format string, take care of using + # non-breaking spaces (U+00A0) instead of normal spaces, to + # prevent the shell from tokenizing the format string. + TIMECMD="/usr/bin/time -f ### DEBUG STATS ###\nElapsed time: %E\nPeak memory: %M kb" +fi + +docker run -v $PWD/../../:/work -w /work/src/ontology -e ROBOT_JAVA_ARGS='-Xmx8G' -e JAVA_OPTS='-Xmx8G' --rm -ti obolibrary/$IMAGE $TIMECMD "$@" \ No newline at end of file diff --git a/rxno_odk/src/ontology/rxno-edit.owl b/rxno_odk/src/ontology/rxno-edit.owl new file mode 100644 index 0000000..34c8b86 --- /dev/null +++ b/rxno_odk/src/ontology/rxno-edit.owl @@ -0,0 +1,53 @@ + +Prefix(:=) +Prefix(dce:=) +Prefix(owl:=) +Prefix(rdf:=) +Prefix(xml:=) +Prefix(xsd:=) +Prefix(rdfs:=) +Prefix(dcterms:=) + + +Ontology( + +Import() + +Import() + +Import() + +Import() + +Import() + + +Annotation(dcterms:description "None") +Annotation(dcterms:license ) +Annotation(dcterms:title "Named Reaction Ontology") + + +Declaration(Class()) +Declaration(AnnotationProperty(dcterms:description)) +Declaration(AnnotationProperty(dcterms:license)) +Declaration(AnnotationProperty(dcterms:title)) + +############################ +# Annotation Properties +############################ + +AnnotationAssertion(rdfs:label dcterms:description "description") +AnnotationAssertion(rdfs:label dcterms:license "license") +AnnotationAssertion(rdfs:label dcterms:title "title") + +############################ +# Classes +############################ + +# Class: (root node) + +AnnotationAssertion(rdfs:label "root node"@en) + + +) + diff --git a/rxno_odk/src/ontology/rxno-idranges.owl b/rxno_odk/src/ontology/rxno-idranges.owl new file mode 100644 index 0000000..6a15fb5 --- /dev/null +++ b/rxno_odk/src/ontology/rxno-idranges.owl @@ -0,0 +1,53 @@ +## ID Ranges File +Prefix: rdf: +Prefix: idsfor: +Prefix: dce: +Prefix: xsd: +Prefix: allocatedto: +Prefix: xml: +Prefix: idprefix: +Prefix: iddigits: +Prefix: rdfs: +Prefix: idrange: +Prefix: owl: + +Ontology: + + +Annotations: + idsfor: "RXNO", + idprefix: "http://purl.obolibrary.org/obo/RXNO_", + iddigits: 7 + +AnnotationProperty: idprefix: + + +AnnotationProperty: iddigits: + + +AnnotationProperty: idsfor: + + +AnnotationProperty: allocatedto: + +Datatype: idrange:1 + + Annotations: + allocatedto: "ONTOLOGY-CREATOR" + + EquivalentTo: + xsd:integer[>= 0 , <= 999999] + + +Datatype: idrange:2 + + Annotations: + allocatedto: "ADDITIONAL EDITOR" + + EquivalentTo: + xsd:integer[>= 1000000 , <= 1999999] + + +Datatype: xsd:integer +Datatype: rdf:PlainLiteral + diff --git a/rxno_odk/src/ontology/rxno-odk.yaml b/rxno_odk/src/ontology/rxno-odk.yaml new file mode 100644 index 0000000..958d4c4 --- /dev/null +++ b/rxno_odk/src/ontology/rxno-odk.yaml @@ -0,0 +1,22 @@ +id: rxno +title: "Named Reaction Ontology" +github_org: rsc-ontologies +repo: rxno +report_fail_on: ERROR +edit_format: owl +export_formats: + - owl + - obo + - json +release_artefacts: + - base + - full +primary_release: full +import_group: + products: + - id: ro + - id: mop + - id: bfo + - id: obi + - id: omo +robot_java_args: '-Xmx8G' diff --git a/rxno_odk/src/ontology/rxno.Makefile b/rxno_odk/src/ontology/rxno.Makefile new file mode 100644 index 0000000..9c737ac --- /dev/null +++ b/rxno_odk/src/ontology/rxno.Makefile @@ -0,0 +1,6 @@ +## Customize Makefile settings for rxno +## +## If you need to customize your Makefile, make +## changes here rather than in the main Makefile + + diff --git a/rxno_odk/src/scripts/update_repo.sh b/rxno_odk/src/scripts/update_repo.sh new file mode 100644 index 0000000..87da690 --- /dev/null +++ b/rxno_odk/src/scripts/update_repo.sh @@ -0,0 +1,28 @@ +echo "This (experimental) update script will create a new repo according to your config file. It will:" +echo "(1) overwrite your repositories Makefile, ODK sparql queries (your custom queries wont be touched) and docker wrapper (run.sh)." +echo "(2) and add missing files, if any." + +set -e + +OID=rxno +ROOTDIR=../.. +SRCDIR=.. +CONFIG=$OID"-odk.yaml" + +rm -rf target +mkdir target +/tools/odk.py seed -c -g -C $CONFIG +ls -l target/$OID/src +ls -l $SRCDIR/ +cp target/$OID/src/scripts/update_repo.sh $SRCDIR/scripts/ +rsync -r -u --ignore-existing --exclude 'patterns/data/default/example.tsv' --exclude 'patterns/dosdp-patterns/example.yaml' target/$OID/src/ $SRCDIR/ +cp target/$OID/src/ontology/Makefile $SRCDIR/ontology/ +cp target/$OID/src/ontology/run.sh $SRCDIR/ontology/ +cp -r target/$OID/src/sparql/* $SRCDIR/sparql/ +mkdir -p $ROOTDIR/.github +mkdir -p $ROOTDIR/.github/workflows +cp -n target/$OID/.github/workflows/qc.yml $ROOTDIR/.github/workflows/qc.yml + + +echo "WARNING: These files should be manually migrated: mkdocs.yaml, .gitignore, src/ontology/catalog.xml (if you added a new import or component)" +echo "Update successfully completed." \ No newline at end of file diff --git a/rxno_odk/src/scripts/validate_id_ranges.sc b/rxno_odk/src/scripts/validate_id_ranges.sc new file mode 100644 index 0000000..1785e8d --- /dev/null +++ b/rxno_odk/src/scripts/validate_id_ranges.sc @@ -0,0 +1,75 @@ +import $ivy.`net.sourceforge.owlapi:owlapi-distribution:4.5.16` +import $ivy.`com.outr::scribe-slf4j:2.7.12` +import org.semanticweb.owlapi.apibinding.OWLManager +import org.semanticweb.owlapi.model._ +import org.semanticweb.owlapi.vocab.OWLFacet +import java.io.File +import scala.collection +import scala.collection.mutable +import scala.jdk.CollectionConverters._ +@main +def main(id_range_file: os.Path) = { + val o = OWLManager.createOWLOntologyManager().loadOntology(IRI.create(id_range_file.toIO)) + val allMyFacets = mutable.ListBuffer.empty[MyFacet] + for (dt <- o.getDatatypesInSignature().asScala) { + val defs = o.getAxioms(dt) + for (ax <- defs.asScala) { + val range = ax.getDataRange() + val f = new MyFacet() + f.id = dt.toString() + range.accept(new OWLDataRangeVisitor() { + override + def visit(owlDatatype: OWLDatatype) = () + override + def visit(owlDataOneOf: OWLDataOneOf) = () + override + def visit(owlDataComplementOf: OWLDataComplementOf) = () + override + def visit(owlDataIntersectionOf: OWLDataIntersectionOf) = () + override + def visit(owlDataUnionOf: OWLDataUnionOf) = () + override + def visit(owlDatatypeRestriction: OWLDatatypeRestriction) = { + for (fr <- owlDatatypeRestriction.getFacetRestrictions().asScala) { + var i = fr.getFacetValue().parseInteger() + if(fr.getFacet().equals(OWLFacet.MIN_INCLUSIVE)) { + f.min = i + } else if(fr.getFacet().equals(OWLFacet.MAX_INCLUSIVE)) { + f.max = i + } else if(fr.getFacet().equals(OWLFacet.MIN_EXCLUSIVE)) { + i += 1 + f.min = i + } else if(fr.getFacet().equals(OWLFacet.MAX_EXCLUSIVE)) { + i -= 1 + f.max = i + } else { + log("Unknown range restriction: "+fr) + } + } + } + }) + log("Testing range: "+f) + testFacetViolation(f,allMyFacets) + allMyFacets.append(f) + } + } +} +def testFacetViolation(f: MyFacet , allMyFacets: collection.Seq[MyFacet]) = { + for (f_p <- allMyFacets) { + if (((f.min <= f_p.max) && (f_p.min <= f.max))) { + throw new IllegalStateException(f + " overlaps with " + f_p + "!") + } + } +} +def log(o: Object) = { + println(o.toString()) +} +class MyFacet { + var min: Int = _ + var max: Int = _ + var id: String = _ + override + def toString(): String = { + return "Facet{" + id + "}[min:" + min + " max:" + max + "]" + } +} \ No newline at end of file diff --git a/rxno_odk/src/sparql/README.md b/rxno_odk/src/sparql/README.md new file mode 100644 index 0000000..3cb4b8a --- /dev/null +++ b/rxno_odk/src/sparql/README.md @@ -0,0 +1,32 @@ +# Sparql checks + +[SPARQL](https://www.w3.org/TR/rdf-sparql-query/) is a W3C standard +query language for RDF. This directory contains useful SPARQL queries +for perfoming over the ontology. + +SPARQL can be executed on a triplestore or directly on any OWL +file. The queries here are all executed on either rxno-edit.obo or +downstream products in the [ontology](../ontology/) folder. We use +`robot` as this allows easy execution over any Obo-format or OWL file. + +We break the queries into 3 categories: + +## Constraint Violation checks + +These are all named `*violation.sparql`. A subset of these are +configured to be executed via travis. If these return any results, +then the build will fail. + +Consult the individual sparql files to see the intent of the check + +## Construct queries + +These are named `construct*.sparql`, and always have the form `CONSTRUCT ...`. + +These are used to generate new OWL axioms that can be inserted back +into the ontology. + +## Reports + +The remaining SPARQL queries are for informative purposes. A subset +may be executed with each release. \ No newline at end of file diff --git a/rxno_odk/src/sparql/basic-report.sparql b/rxno_odk/src/sparql/basic-report.sparql new file mode 100644 index 0000000..cff9773 --- /dev/null +++ b/rxno_odk/src/sparql/basic-report.sparql @@ -0,0 +1,12 @@ +prefix oio: +prefix def: +prefix owl: + +SELECT ?cls ?def (group_concat(?xref) as ?xrefs) WHERE +{ + ?cls a owl:Class . + OPTIONAL { ?cls oio:hasDbXref ?xref } . + OPTIONAL { ?cls def: ?def } . + FILTER (!isBlank(?cls)) +} +GROUP BY ?cls ?def diff --git a/rxno_odk/src/sparql/class-count-by-prefix.sparql b/rxno_odk/src/sparql/class-count-by-prefix.sparql new file mode 100644 index 0000000..0c4d284 --- /dev/null +++ b/rxno_odk/src/sparql/class-count-by-prefix.sparql @@ -0,0 +1,10 @@ +prefix owl: +prefix obo: + +SELECT ?prefix (COUNT(DISTINCT ?cls) AS ?numberOfClasses) WHERE +{ + ?cls a owl:Class . + FILTER (!isBlank(?cls)) + BIND( STRBEFORE(STRAFTER(str(?cls),"http://purl.obolibrary.org/obo/"), "_") AS ?prefix) +} +GROUP BY ?prefix diff --git a/rxno_odk/src/sparql/edges.sparql b/rxno_odk/src/sparql/edges.sparql new file mode 100644 index 0000000..5fec04e --- /dev/null +++ b/rxno_odk/src/sparql/edges.sparql @@ -0,0 +1,19 @@ +prefix obo: +prefix owl: +prefix rdfs: +prefix rdf: + +SELECT ?x ?p ?y +WHERE { + {?x rdfs:subClassOf [ + a owl:Restriction ; + owl:onProperty ?p ; + owl:someValuesFrom ?y ] + } + UNION { + ?x rdfs:subClassOf ?y . + BIND(rdfs:subClassOf AS ?p) + } + ?x a owl:Class . + ?y a owl:Class . +} diff --git a/rxno_odk/src/sparql/inject-subset-declaration.ru b/rxno_odk/src/sparql/inject-subset-declaration.ru new file mode 100644 index 0000000..18a8430 --- /dev/null +++ b/rxno_odk/src/sparql/inject-subset-declaration.ru @@ -0,0 +1,11 @@ +PREFIX : +PREFIX rdf: +PREFIX rdfs: + +INSERT { ?y rdfs:subPropertyOf . } + +WHERE { + ?x ?y . + FILTER(isIRI(?y)) + FILTER(regex(str(?y),"^(http://purl.obolibrary.org/obo/)") || regex(str(?y),"^(http://www.ebi.ac.uk/efo/)") || regex(str(?y),"^(https://w3id.org/biolink/)")) +} \ No newline at end of file diff --git a/rxno_odk/src/sparql/iri-range-violation.sparql b/rxno_odk/src/sparql/iri-range-violation.sparql new file mode 100644 index 0000000..33c582e --- /dev/null +++ b/rxno_odk/src/sparql/iri-range-violation.sparql @@ -0,0 +1,19 @@ +PREFIX never_in_taxon: +PREFIX present_in_taxon: +PREFIX oboInOwl: +PREFIX dcterms: +PREFIX foaf: + +SELECT ?term ?property ?value +WHERE { + VALUES ?property { + never_in_taxon: + present_in_taxon: + foaf:depicted_by + oboInOwl:inSubset + dcterms:contributor } + ?term ?property ?value . + FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/RXNO_"))) + FILTER (!isIRI(?value)) +} + diff --git a/rxno_odk/src/sparql/label-with-iri-violation.sparql b/rxno_odk/src/sparql/label-with-iri-violation.sparql new file mode 100644 index 0000000..98c9fff --- /dev/null +++ b/rxno_odk/src/sparql/label-with-iri-violation.sparql @@ -0,0 +1,9 @@ +PREFIX rdfs: + +SELECT ?term ?value +WHERE { + ?term rdfs:label ?value . + FILTER (REGEX(?value, "http[s]?[:]")) + FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/RXNO_"))) +} + diff --git a/rxno_odk/src/sparql/labels.sparql b/rxno_odk/src/sparql/labels.sparql new file mode 100644 index 0000000..89e9ec7 --- /dev/null +++ b/rxno_odk/src/sparql/labels.sparql @@ -0,0 +1,9 @@ +PREFIX owl: +PREFIX rdf: +PREFIX rdfs: + +SELECT ?x (STR(?lab) AS ?label) WHERE { + ?x rdf:type owl:Class . + OPTIONAL {?x rdfs:label ?lab} +} +ORDER BY ?x diff --git a/rxno_odk/src/sparql/obsoletes.sparql b/rxno_odk/src/sparql/obsoletes.sparql new file mode 100644 index 0000000..7aff433 --- /dev/null +++ b/rxno_odk/src/sparql/obsoletes.sparql @@ -0,0 +1,14 @@ +prefix xsd: +PREFIX owl: +PREFIX rdf: +PREFIX rdfs: +PREFIX replaced_by: +PREFIX consider: + +SELECT ?cls ?replCls ?consCls WHERE { + ?cls a owl:Class ; + owl:deprecated "true"^^xsd:boolean . + OPTIONAL {?cls replaced_by: ?replCls} + OPTIONAL {?cls consider: ?consCls} +} +ORDER BY ?cls diff --git a/rxno_odk/src/sparql/owldef-self-reference-violation.sparql b/rxno_odk/src/sparql/owldef-self-reference-violation.sparql new file mode 100644 index 0000000..b04f9cd --- /dev/null +++ b/rxno_odk/src/sparql/owldef-self-reference-violation.sparql @@ -0,0 +1,12 @@ +PREFIX rdf: +PREFIX oio: +PREFIX owl: +PREFIX rdfs: + +SELECT ?term WHERE { + { ?term owl:equivalentClass [ owl:intersectionOf [ rdf:rest*/rdf:first ?term ] ] } + UNION + { ?term owl:equivalentClass [ owl:intersectionOf [ rdf:rest*/rdf:first [ owl:someValuesFrom ?term ] ] ] } + FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/RXNO_"))) +} + diff --git a/rxno_odk/src/sparql/postprocess-module.ru b/rxno_odk/src/sparql/postprocess-module.ru new file mode 100644 index 0000000..0767af1 --- /dev/null +++ b/rxno_odk/src/sparql/postprocess-module.ru @@ -0,0 +1,16 @@ +PREFIX rdf: +PREFIX rdfs: +PREFIX dc: +PREFIX owl: + + +DELETE { + ?ontology ?ontology_annotation_property ?ontology_annotation_value . +} + +WHERE { + ?ontology rdf:type owl:Ontology . + ?ontology ?ontology_annotation_property ?ontology_annotation_value . + FILTER(?ontology_annotation_property != dc:source && ?ontology_annotation_property != rdf:type) + +} \ No newline at end of file diff --git a/rxno_odk/src/sparql/preprocess-module.ru b/rxno_odk/src/sparql/preprocess-module.ru new file mode 100644 index 0000000..99120a0 --- /dev/null +++ b/rxno_odk/src/sparql/preprocess-module.ru @@ -0,0 +1,22 @@ +PREFIX rdf: +PREFIX rdfs: +PREFIX dc: +PREFIX owl: + + +#DELETE { +# ?ontology ?ontology_annotation_property ?ontology_annotation_value . +#} + +INSERT { + ?ontology dc:source ?version_iri . +} + +WHERE { + ?ontology rdf:type owl:Ontology ; + owl:versionIRI ?version_iri . + #OPTIONAL { + # ?ontology ?ontology_annotation_property ?ontology_annotation_value . + #} + +} \ No newline at end of file diff --git a/rxno_odk/src/sparql/rxno_terms.sparql b/rxno_odk/src/sparql/rxno_terms.sparql new file mode 100644 index 0000000..3ebc727 --- /dev/null +++ b/rxno_odk/src/sparql/rxno_terms.sparql @@ -0,0 +1,7 @@ +SELECT DISTINCT ?term +WHERE { + { ?s1 ?p1 ?term . } + UNION + { ?term ?p2 ?o2 . } + FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/RXNO_"))) +} diff --git a/rxno_odk/src/sparql/simple-seed.sparql b/rxno_odk/src/sparql/simple-seed.sparql new file mode 100644 index 0000000..a96d263 --- /dev/null +++ b/rxno_odk/src/sparql/simple-seed.sparql @@ -0,0 +1,14 @@ +prefix owl: +prefix obo: + +SELECT DISTINCT ?cls WHERE +{ + {?cls a owl:AnnotationProperty .} + UNION + {?cls a owl:ObjectProperty .} + UNION + {?x ?cls} + UNION + {?x ?cls} + FILTER (!isBlank(?cls)) +} diff --git a/rxno_odk/src/sparql/subsets-labeled.sparql b/rxno_odk/src/sparql/subsets-labeled.sparql new file mode 100644 index 0000000..7bc992f --- /dev/null +++ b/rxno_odk/src/sparql/subsets-labeled.sparql @@ -0,0 +1,14 @@ +prefix oio: +prefix def: +prefix owl: +prefix inSubset: +prefix rdfs: + +SELECT ?subset ?clsLabel +WHERE +{ + ?cls a owl:Class ; + inSubset: ?subset ; + rdfs:label ?clsLabel +} +ORDER BY ?subset ?cls diff --git a/rxno_odk/src/sparql/synonyms.sparql b/rxno_odk/src/sparql/synonyms.sparql new file mode 100644 index 0000000..ba6b03a --- /dev/null +++ b/rxno_odk/src/sparql/synonyms.sparql @@ -0,0 +1,26 @@ +prefix owl: +prefix oboInOwl: +prefix rdfs: + +SELECT ?cls ?pred ?val ?synType +WHERE + { ?cls ?pred ?val ; + a owl:Class . + FILTER ( + ?pred = rdfs:label || + ?pred = oboInOwl:hasRelatedSynonym || + ?pred = oboInOwl:hasNarrowSynonym || + ?pred = oboInOwl:hasBroadSynonym || + ?pred = oboInOwl:hasExactSynonym + ) + + OPTIONAL { + [ + a owl:Axiom ; + owl:annotatedSource ?cls ; + owl:annotatedProperty ?pred ; + owl:annotatedTarget ?val ; + oboInOwl:hasSynonymType ?synType + ] + } + } diff --git a/rxno_odk/src/sparql/terms.sparql b/rxno_odk/src/sparql/terms.sparql new file mode 100644 index 0000000..ec58b4c --- /dev/null +++ b/rxno_odk/src/sparql/terms.sparql @@ -0,0 +1,15 @@ +PREFIX rdf: +prefix owl: +SELECT DISTINCT ?term +WHERE { + { + ?s1 ?p1 ?term . + FILTER(?p1!=rdf:type) + } + UNION + { + ?term ?p2 ?o2 . + FILTER(?o2!=owl:Ontology) + } + FILTER(isIRI(?term)) +} \ No newline at end of file diff --git a/rxno_odk/src/sparql/xrefs.sparql b/rxno_odk/src/sparql/xrefs.sparql new file mode 100644 index 0000000..bde8fc9 --- /dev/null +++ b/rxno_odk/src/sparql/xrefs.sparql @@ -0,0 +1,8 @@ +prefix oio: +prefix owl: + +SELECT ?cls ?xref WHERE +{ + ?cls a owl:Class ; + oio:hasDbXref ?xref +}