Skip to content

Commit

Permalink
Added frictionless importer (#79)
Browse files Browse the repository at this point in the history
* Added frictionless importer. Fixes #861

* Fixing descriptions

* Adding FKs

* prefixes
  • Loading branch information
cmungall authored Jul 13, 2022
1 parent 8e2fc76 commit 36cd42b
Show file tree
Hide file tree
Showing 11 changed files with 4,477 additions and 945 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
RUN = poetry run
VERSION = $(shell git tag | tail -1)

.PHONY: all clean test
Expand All @@ -12,7 +13,10 @@ clean:
rm -rf target/availabilities_g_s_strain_202112151116_org_meanings.yaml

test:
poetry run pytest tests/
$(RUN) pytest tests/

schema_automator/metamodels/%.py: schema_automator/metamodels/%.yaml
$(RUN) gen-python $< > $@.tmp && mv $@.tmp $@

# tried to find a single meaning for each permissible value
# unlike term mapping, which can tolerate multiple mapped terms
Expand Down
Loading

0 comments on commit 36cd42b

Please sign in to comment.