Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Artifacts for version 3.0 #53

Merged
merged 14 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/workflows/widoco.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: widoco

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for all branches
on:
push:
branches: [ '*' ]

# 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 "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Deploy Java
uses: actions/[email protected]
with:
java-version: 1.8
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout repo
uses: actions/checkout@v2

- name: Download widoco
run: mkdir widoco && wget -O widoco/widoco.jar https://github.com/dgarijo/Widoco/releases/download/v1.4.14/widoco-1.4.14-jar-with-dependencies.jar

- name: Compile documentation
run: |
cd widoco
java -jar ./widoco.jar \
-ontFile ../mod.ttl \
-oops \
-webVowl \
-includeAnnotationProperties \
-outFolder doc/ \
-rewriteAll \
-includeImportedOntologies \
-uniteSections \
-excludeIntroduction
cd ..

- name: Publish on Github Pages
uses: crazy-max/[email protected]
with:
build_dir: widoco/doc
publish_dir: target/site
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MOD-Ontology
# MOD Ontology
Metadata for Ontology Description and Publication Ontology

This project consists in building an OWL ontology and application profile to capture metadata information for ontologies, vocabularies or semantic resources/artefacts in general.
Expand All @@ -12,10 +12,17 @@ MOD is discussed within the [RDA](http://rd-alliance.org)'s [Vocabulary Services

See the RDA VSSIG "ontology metadata" TG's working folder: https://drive.google.com/drive/folders/1EqEHwnhjQef9EtjhNifMYVREmdtD26BQ

## Resources

- mod.ttl - the MOD vocabulary

- profile.ttl - the profile declaration. A description of all of the items in this profile (the formal model, validating resources, documentation etc.) according to the W3C's Profiles Ontology which describes how all the parts related to one another, the roles they play (to give guidance for use, to validate data etc.) and how this profile profiles the various standards listed above.


## Versions
MOD3 - Design issues are being documented and discussed under the [Discussions](https://github.com/FAIR-IMPACT/MOD/discussions) section - feel free to join the conversation!
MOD 3.0 - Design issues for this version are documented and discussed under the [Discussions](https://github.com/FAIR-IMPACT/MOD/discussions) section. See also, [FAIR-IMPACT milestone](https://doi.org/10.5281/zenodo.10725304).

MOD2.0 alpha was presented during the 16th RDA plenary (November 2020) and H2020 FAIRsFAIR workshop (June 2021). [See presentation](https://drive.google.com/drive/folders/1kSF0XuSr9mwBk-daR6RYut_1Dzzko33v).
MOD 2.0 alpha was presented during the 16th RDA plenary (November 2020) and H2020 FAIRsFAIR workshop (June 2021). [See presentation](https://drive.google.com/drive/folders/1kSF0XuSr9mwBk-daR6RYut_1Dzzko33v).

* [https://w3id.org/mod/2.0](https://w3id.org/mod/2.0) (2021-12-06)

Expand Down
Loading
Loading