You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+32-20
Original file line number
Diff line number
Diff line change
@@ -19,37 +19,49 @@ This repository contains:
19
19
- a example of [a protocol based on the reproschema](./examples)
20
20
- the [documentation](./docs)
21
21
22
+
## Developing ReproSchema
22
23
23
-
##Licenses
24
+
### Updating the schema
24
25
25
-
### Code
26
+
As of release 1.0.0, a linked data modeling language, [LinkML](https://linkml.io/linkml/), is used to create
27
+
a [YAML file](linkml-schema/reproschema.yaml) with the schema.
26
28
27
-
The content of this repository is distributed under the [Apache 2.0 license](./LICENSE).
29
+
The [context file](contexts/reproschema) was automatically generated using LinkML,
30
+
and then manually curated in order to support all the reproschema feature.
28
31
29
-
###Documentation
32
+
#### Style
30
33
31
-
<arel="license"href="http://creativecommons.org/licenses/by/4.0/"><imgalt="Creative Commons License"style="border-width:0"src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />The corresponding documentation is licensed under a <arel="license"href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
34
+
This repo uses pre-commit to check styling.
35
+
- Install pre-commit with pip: `pip install pre-commit`
36
+
- In order to use it with the repository, you have to run `run pre-commit install` in the root directory the first time you use it.
Upon release, there are additional formats, `jsonsld`, `turtle`, `n-triples`
41
+
and `pydantic` that are created using `LinkML` tools, `reproschema-py`,
42
+
and [reproschema-specific script](./scripts/fix_pydantic.py) to "fix" the `pydantic` format.
43
+
The entire process is automated in the GitHub Action Workflow:
44
+
[Validate and Release](.github/workflows/validate_and_release.yml).
45
+
This workflow must be manually triggered by the core developers once a new release is ready.
46
+
All the releases can be found in [releases directory](./releases).
47
+
48
+
### Updating model in reproschema-py
49
+
Another GitHub Action Workflow: [ Create Pull Request to reproschema-py](.github/workflows/push_reproschema_py.yml)
50
+
is responsible for creating pull request to the `reproschema-py` Python library with
51
+
the new version of pydantic model and context.
52
+
The workflow is currently also triggered manually by the core developers.
36
53
37
-
### Developer notes
38
-
To run the Python scripts in the scripts directory, you will need to install the
39
-
following libraries via pip
40
54
41
-
- reproschema (makeRelease.py)
42
-
- pytablewriter (editProperties.py)
55
+
## Licenses
56
+
57
+
### Code
43
58
44
-
To make a new release:
59
+
The content of this repository is distributed under the [Apache 2.0 license](./LICENSE).
45
60
46
-
```bash
47
-
python scripts/makeRelease.py <version>
48
-
python scripts/editProperties.py <version>
49
-
```
61
+
### Documentation
50
62
51
-
In addition, this repo uses pre-commit to check styling.
63
+
<arel="license"href="http://creativecommons.org/licenses/by/4.0/"><imgalt="Creative Commons License"style="border-width:0"src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />The corresponding documentation is licensed under a <arel="license"href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
52
64
53
-
Install: `pip install pre-commit`
65
+
## Contributors
54
66
55
-
Use: run `pre-commit install` in the root directory of the repo.
0 commit comments