Skip to content

Commit

Permalink
Merge branch 'master' into 510-term-request-photocatalytic-activity
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillanacosta authored Apr 19, 2024
2 parents 32da592 + bbe5472 commit b13d866
Show file tree
Hide file tree
Showing 68 changed files with 18,071 additions and 1,803 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
pull_request:
paths:
- './config/*'
- 'config/*'
push:
paths:
- 'config.yaml'
Expand Down Expand Up @@ -53,7 +53,6 @@ jobs:
run: wget ${{ env.slimmer }}
- name: get robot
run: |
cd ./scripts/src/build-workflow
wget ${{ env.robot }}
wget ${{ env.robot_jar}}
Expand Down Expand Up @@ -206,21 +205,23 @@ jobs:
run: bash scripts/src/build-workflow/props.sh ro
# Commit and push
- name: Commit OWL files
if: always()
run: |
if [[ "${{ github.ref_name }}" == *"merge"* ]]; then
exit 0
fi
git checkout "${{ github.ref_name }}"
git pull
git add external-dev/*.owl
git add -f external-dev/*.owl
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git config --local user.name "Slimmer bot"
# Check if there are changes to commit
if git diff-index --quiet HEAD --; then
echo "No changes to commit."
else
git commit -m "Actions - slim updated" ./external-dev/*.owl || true
fi
# Check if there are changes to push
if [[ $(git rev-parse --abbrev-ref HEAD) == "master" ]]; then
if [[ $(git rev-parse --abbrev-ref HEAD) == "${{ github.ref_name }}" ]]; then
if [ -n "$(git cherry -v)" ]; then
git push || echo "Push failed."
else
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dev-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,5 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: .github/action-issue-template.md
update_existing: true

1 change: 1 addition & 0 deletions .github/workflows/on-push-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: .github/action-issue-template.md
update_existing: true
1 change: 1 addition & 0 deletions .github/workflows/prerelease-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: .github/action-issue-template.md
update_existing: true
32 changes: 32 additions & 0 deletions .github/workflows/term-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Suggest IRI upon term request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
on:
issues:
types:
- labeled
jobs:
add-comment:
if: github.event.label.name == 'term request'
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/checkout@v4


- name: generate IRI
run: |
new_iri=$(bash scripts/src/generate_iri.sh)
echo "NEW_IRI=$new_iri" >> $GITHUB_ENV
echo $new_iri
- name: Add comment
run: gh issue comment "$NUMBER" --body "$BODY"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
BODY: >
**Available IRI**: ${{ env.NEW_IRI }}
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ The eNanoMapper Ontology
============

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8139894.svg)](https://doi.org/10.5281/zenodo.8139894)
[![Build slims](https://github.com/enanomapper/ontologies/actions/workflows/build.yml/badge.svg)](https://github.com/enanomapper/ontologies/actions/workflows/build.yml)
[![On push file integrity tests](https://github.com/enanomapper/ontologies/actions/workflows/on-push-tests.yml/badge.svg)](https://github.com/enanomapper/ontologies/actions/workflows/on-push-tests.yml)
[![ROBOT enanomapper-dev build test](https://github.com/enanomapper/ontologies/actions/workflows/dev-tests.yml/badge.svg)](https://github.com/enanomapper/ontologies/actions/workflows/dev-tests.yml)
[![Pre-release tests](https://github.com/enanomapper/ontologies/actions/workflows/prerelease-tests.yml/badge.svg)](https://github.com/enanomapper/ontologies/actions/workflows/prerelease-tests.yml)
[![Build slims](https://github.com/enanomapper/ontologies/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/enanomapper/ontologies/actions/workflows/build.yml)
[![On push file integrity tests](https://github.com/enanomapper/ontologies/actions/workflows/on-push-tests.yml/badge.svg?branch=master)](https://github.com/enanomapper/ontologies/actions/workflows/on-push-tests.yml)
[![ROBOT enanomapper-dev build test](https://github.com/enanomapper/ontologies/actions/workflows/dev-tests.yml/badge.svg?branch=master)](https://github.com/enanomapper/ontologies/actions/workflows/dev-tests.yml)
[![Pre-release tests](https://github.com/enanomapper/ontologies/actions/workflows/prerelease-tests.yml/badge.svg?branch=master)](https://github.com/enanomapper/ontologies/actions/workflows/prerelease-tests.yml)


The eNanoMapper ontologies aim to provide a comprehensive suite of ontologies for the nanomaterial safety assessment domain (see http://www.enanomapper.net for project information). The full suite of ontologies can be found in a modular file assembled by imports using `owl:imports`, [enanomapper.owl](enanomapper.owl).

The ontology is being developed and maintained by the following EU H2020 projects (see also the below
[funding](README.md#funding) info):

* [NanoSolveIT](https://www.nanosolveit.eu/)
* [NanoSolveIT](https://www.nanosolveit.eu/) (project ended)
* [NanoCommons](https://www.nanocommons.eu/) (project ended)
* [OpenRiskNet](https://openrisknet.org/) (project ended)
* [eNanoMapper](http://enanomapper.net/) (project ended)
Expand Down
14 changes: 13 additions & 1 deletion config/bao-term-file.txt
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
http://www.bioassayontology.org/bao#BAO_0000209
http://www.bioassayontology.org/bao#BAO_0000209
http://www.bioassayontology.org/bao#BAO_0002833
http://www.bioassayontology.org/bao#BAO_0002921
http://www.bioassayontology.org/bao#BAO_0000208
http://www.bioassayontology.org/bao#BAO_0002669
http://www.bioassayontology.org/bao#BAO_0002668
http://www.bioassayontology.org/bao#BAO_0000182
http://www.bioassayontology.org/bao#BAO_0000108
http://www.bioassayontology.org/bao#BAO_0002666
http://www.bioassayontology.org/bao#BAO_0000183
http://www.bioassayontology.org/bao#BAO_0000335
http://www.bioassayontology.org/bao#BAO_0090006
http://www.bioassayontology.org/bao#BAO_0095013
2 changes: 2 additions & 0 deletions config/bao.iris
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@
+D(http://purl.obolibrary.org/obo/IAO_0000030):http://www.bioassayontology.org/bao#BAO_0000026 bioassay specification
+(http://www.bioassayontology.org/bao#BAO_0000008):http://www.bioassayontology.org/bao#BAO_0002810 physicochemical
+(http://purl.bioontology.org/ontology/npo#NPO_1420):http://www.bioassayontology.org/bao#BAO_0010019 PAGE
+D(http://purl.obolibrary.org/obo/IAO_0000030):http://www.bioassayontology.org/bao#BAO_0003113 assay format component
+(http://purl.obolibrary.org/obo/IAO_0000030):http://www.bioassayontology.org/bao#BAO_0000040 measure group
20 changes: 14 additions & 6 deletions config/bto.iris
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
+(http://purl.obolibrary.org/obo/CL_0000003):http://purl.obolibrary.org/obo/BTO_0003151 HPAEC cell
+(http://purl.obolibrary.org/obo/CL_0000003):http://purl.obolibrary.org/obo/BTO_0002900 monocyte-derived dendritic cell
+(http://purl.obolibrary.org/obo/CL_0000003):http://purl.obolibrary.org/obo/BTO_0001025 peripheral blood mononuclear cell
+(http://purl.obolibrary.org/obo/CL_0000003):http://purl.obolibrary.org/obo/BTO_0002922 bronchial epithelial cell
+(http://purl.obolibrary.org/obo/CL_0000003):http://purl.obolibrary.org/obo/BTO_0001141 pulmonary artery endothelial cell
+(http://purl.obolibrary.org/obo/CL_0000003):http://purl.obolibrary.org/obo/BTO_0004602 human aortic endothelial cell
+(http://purl.obolibrary.org/obo/CL_0000010):http://purl.obolibrary.org/obo/BTO_0003151 HPAEC cell
+D(http://purl.obolibrary.org/obo/CL_0000010):http://purl.obolibrary.org/obo/BTO_0002042 dendritic cell
+(http://purl.obolibrary.org/obo/CL_0000010):http://purl.obolibrary.org/obo/BTO_0001025 peripheral blood mononuclear cell
+(http://purl.obolibrary.org/obo/CL_0000010):http://purl.obolibrary.org/obo/BTO_0002922 bronchial epithelial cell
+(http://purl.obolibrary.org/obo/CL_0000010):http://purl.obolibrary.org/obo/BTO_0001141 pulmonary artery endothelial cell
+(http://purl.obolibrary.org/obo/CL_0000010):http://purl.obolibrary.org/obo/BTO_0004602 human aortic endothelial cell
+(http://purl.obolibrary.org/obo/UBERON_0000062):http://purl.obolibrary.org/obo/BTO_0000763 lung
+(http://purl.obolibrary.org/obo/UBERON_0000062):http://purl.obolibrary.org/obo/BTO_0001279 spinal cord
+(http://purl.obolibrary.org/obo/UBERON_0000062):http://purl.obolibrary.org/obo/BTO_0000269 colon
+(http://purl.obolibrary.org/obo/UBERON_0000062):http://purl.obolibrary.org/obo/BTO_0000341 diaphragm
+(http://purl.obolibrary.org/obo/UBERON_0000062):http://purl.obolibrary.org/obo/BTO_0000759 liver
+(http://www.ebi.ac.uk/efo/EFO_0002888):http://purl.obolibrary.org/obo/BTO_0004433 HET-1A cell line
+(http://www.ebi.ac.uk/efo/EFO_0002888):http://www.ebi.ac.uk/efo/EFO_0002888 liver cell line
+(http://www.ebi.ac.uk/efo/EFO_0002009):http://purl.obolibrary.org/obo/BTO_0001619 Human dermal fibroblast
+(http://www.ebi.ac.uk/efo/EFO_0002888):http://purl.obolibrary.org/obo/BTO_0001619 Human dermal fibroblast
+(http://purl.enanomapper.net/onto/ENM_0617835):http://purl.obolibrary.org/obo/BTO_0000745 Lewis lung carcinoma cell LLC
+(http://purl.obolibrary.org/obo/BTO_0002278):http://purl.obolibrary.org/obo/BTO_0001034 PMO macrophage
+(http://www.ebi.ac.uk/efo/EFO_0002009):http://purl.obolibrary.org/obo/BTO_0000331 L929
+(http://www.ebi.ac.uk/efo/EFO_0002887):http://purl.obolibrary.org/obo/BTO_0000331 L929
+(http://www.ebi.ac.uk/efo/EFO_0002887):http://purl.obolibrary.org/obo/BTO_0001957 MC3T3
+(http://www.ebi.ac.uk/efo/EFO_0002009):http://purl.obolibrary.org/obo/BTO_0001957 MC3T3
2 changes: 1 addition & 1 deletion config/cheminf.iris
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
+(http://purl.obolibrary.org/obo/BFO_0000019):http://semanticscience.org/resource/CHEMINF_000247 surface area
+(http://www.bioassayontology.org/bao#BAO_0002128):http://semanticscience.org/resource/CHEMINF_000247 surface area as a physical property endpoint
+D(http://purl.obolibrary.org/obo/BFO_0000019):http://semanticscience.org/resource/CHEMINF_000101 chemical substance quality
+D(http://purl.obolibrary.org/obo/BFO_0000019):http://semanticscience.org/resource/CHEMINF_000031 molecular entity quality
+D(http://purl.obolibrary.org/obo/IAO_0000030):http://semanticscience.org/resource/CHEMINF_000014 chemical entity information format description
Expand Down
13 changes: 12 additions & 1 deletion config/clo.iris
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,15 @@
+(http://purl.obolibrary.org/obo/CL_0000003):http://purl.obolibrary.org/obo/CL_1001603 lung macrophage
+(http://purl.obolibrary.org/obo/CL_0000000):http://purl.obolibrary.org/obo/CL_0001034 cell in vitro
+(http://purl.obolibrary.org/obo/CL_0001034):http://purl.obolibrary.org/obo/CL_0000010 cultured cell (including cell lines)
-:http://purl.org/spar/cito/citesAsAuthority
-:http://purl.org/spar/cito/citesAsAuthority
+(http://purl.obolibrary.org/obo/NCIT_C20222):http://purl.obolibrary.org/obo/CLO_0002029 BRL 3a
+(http://www.ebi.ac.uk/efo/EFO_0002009):http://purl.obolibrary.org/obo/CLO_0002029 BRL 3a
+(http://www.ebi.ac.uk/efo/EFO_0002887):http://purl.obolibrary.org/obo/CLO_0007721 MH-S
+(http://purl.enanomapper.net/onto/ENM_0951914):http://purl.obolibrary.org/obo/CLO_0007721 MH-S
+(http://purl.obolibrary.org/obo/CL_0000010):http://purl.obolibrary.org/obo/CL_0001035 bone cell
+(http://purl.obolibrary.org/obo/CL_0001035):http://purl.obolibrary.org/obo/CL_0007010 preosteoblast
+(http://purl.obolibrary.org/obo/CL_0007010):http://purl.obolibrary.org/obo/CLO_0007582 MC3T3-E1
+(http://www.ebi.ac.uk/efo/EFO_0002887):http://purl.obolibrary.org/obo/CLO_0007582 MC3T3-E1
+(http://www.ebi.ac.uk/efo/EFO_0002887):http://purl.obolibrary.org/obo/CLO_0007746 MLE 12 cell
+(http://purl.enanomapper.net/onto/ENM_0951914):http://purl.obolibrary.org/obo/CLO_0007746 MLE 12 cell
+(http://purl.obolibrary.org/obo/CL_0000010):http://purl.obolibrary.org/obo/CL_0000081 blood cells
1 change: 1 addition & 0 deletions config/efo.iris
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
+(http://www.ebi.ac.uk/efo/EFO_0002694):http://www.ebi.ac.uk/efo/EFO_0000487 exposure
+(http://purl.obolibrary.org/obo/BFO_0000019):http://www.ebi.ac.uk/efo/EFO_0000399 developmental stage
+(http://www.ebi.ac.uk/efo/EFO_0000399):http://www.ebi.ac.uk/efo/EFO_0001272 adult;adult stage
+(http://purl.enanomapper.org/onto/ENM_0000113):http://purl.obolibrary.org/obo/NCBITaxon_35525 Daphnia magna
22 changes: 21 additions & 1 deletion config/go.iris
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
+(http://purl.obolibrary.org/obo/OBI_0000070):http://purl.obolibrary.org/obo/GO_0009293 transduction
+(http://purl.obolibrary.org/obo/OBI_0000070):http://purl.obolibrary.org/obo/GO_0050663 cytokine secretion
+(http://purl.obolibrary.org/obo/BFO_0000034):http://purl.obolibrary.org/obo/GO_0003824 catalytic activity
+(http://purl.obolibrary.org/obo/BFO_0000034):http://purl.obolibrary.org/obo/GO_0003824 catalytic activity
+(http://purl.obolibrary.org/obo/BFO_0000015):http://purl.obolibrary.org/obo/GO_0008150 biological process
+(http://purl.obolibrary.org/obo/GO_0008150):http://purl.obolibrary.org/obo/GO_0009987 cellular process
+(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_0006914 autophagy
+D(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_0043281 regulation of cysteine-type endopeptidase activity involved in apoptotic process
+(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_0098739 import across plasma membrane
+(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_0032060 formation of blebs
+(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_1903786 regulation GSH
+(http://purl.obolibrary.org/obo/GO_0098739):http://purl.obolibrary.org/obo/GO_0097553 calcium import across membrane
+D(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_0061136 regulation of proteasomal protein catabolic process
+D(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_1905165 regulation of lysosomal protein catabolic process
+D(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_1903786 regulation of glutathione biosynthetic process
+D(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_1902806 regulation of cell cycle G1/S phase transition
+D(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_0051493 regulation of cytoskeleton organization
+D(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_0141085 regulation of inflammasome-mediated signaling pathway
+(http://purl.obolibrary.org/obo/GO_0003824):http://purl.obolibrary.org/obo/GO_0016175 superoxide-generating NAD(P)H oxidase activity
+D(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO:0016192 vesicle-mediated transport
+D(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_0002433 immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
+(http://purl.obolibrary.org/obo/GO_0003824):http://purl.obolibrary.org/obo/GO_0004457 lactate dehydrogenase activity
+(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_0070527 platelet aggregation
+D(http://purl.obolibrary.org/obo/GO_0009987):http://purl.obolibrary.org/obo/GO_0034121 regulation of TLR pathway
Loading

0 comments on commit b13d866

Please sign in to comment.