-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from obophenotype/ODK-ification
ODK-ification of BSPO
- Loading branch information
Showing
50 changed files
with
28,532 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 master branch | ||
push: | ||
branches: [ master ] | ||
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: | ||
# 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.2.29 | ||
|
||
# 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: master | ||
run: cd src/ontology && make ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx6G' test IMP=false PAT=false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,42 @@ | ||
.DS_Store | ||
semantic.cache | ||
bin/ | ||
|
||
*.tmp | ||
*.tmp.obo | ||
*.tmp.owl | ||
*.tmp.json | ||
|
||
src/ontology/mirror | ||
src/ontology/mirror/* | ||
src/ontology/reports/* | ||
src/ontology/bspo.owl | ||
src/ontology/bspo.obo | ||
src/ontology/bspo.json | ||
src/ontology/bspo-base.* | ||
src/ontology/bspo-basic.* | ||
src/ontology/bspo-full.* | ||
src/ontology/bspo-simple.* | ||
src/ontology/bspo-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-bspo-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 | ||
src/ontology/bspo-base.owl | ||
src/ontology/bspo.obo | ||
src/ontology/bspo.owl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/bspo) | ||
|
||
## 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 Biological Spatial Ontology editorial team, Thanks! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
![Build Status](https://github.com/obophenotype/biological-spatial-ontology/workflows/CI/badge.svg) | ||
# Biological Spatial Ontology | ||
|
||
An ontology for respresenting spatial concepts, anatomical axes, gradients, regions, planes, sides, and surfaces. These concepts can be used at multiple biological scales and in a diversity of taxa, including plants, animals and fungi. The BSPO is used to provide a source of anatomical location descriptors for logically defining anatomical entity classes in anatomy ontologies. | ||
|
||
|
||
More information can be found at http://obofoundry.org/ontology/bspo | ||
|
||
## Versions | ||
|
||
### Stable release versions | ||
|
||
The latest version of the ontology can always be found at: | ||
|
||
http://purl.obolibrary.org/obo/bspo.owl | ||
|
||
### Editors' version | ||
|
||
Editors of this ontology should use the edit version, [src/ontology/bspo-edit.owl](src/ontology/bspo-edit.owl) | ||
|
||
## Contact | ||
|
||
Please use this GitHub repository's [Issue tracker](https://github.com/obophenotype/biological-spatial-ontology/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). |
Oops, something went wrong.