Skip to content

Commit

Permalink
Merge pull request #638 from GenomicsStandardsConsortium/issue-637
Browse files Browse the repository at this point in the history
Term pages should resolve based on ids
  • Loading branch information
turbomam authored Oct 18, 2023
2 parents afdc9d8 + 92fcff8 commit 54a7ae8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ $(DOCDIR):

gendoc: $(DOCDIR)
cp $(SRC)/docs/*md $(DOCDIR) ; \
$(RUN) gen-doc ${GEN_DARGS} -d $(DOCDIR) $(SOURCE_SCHEMA_PATH) --template-directory $(TEMPLATEDIR)
$(RUN) gen-doc ${GEN_DARGS} -d $(DOCDIR) $(SOURCE_SCHEMA_PATH) --template-directory $(TEMPLATEDIR) --use-slot-uris
$(RUN) python $(SRC)/scripts/term_list_generator.py $(TERM_LIST_FILE)
$(RUN) python $(SRC)/scripts/combinations_list_generator.py $(COMBINATIONS_FILE)
mkdir -p $(DOCDIR)/javascripts
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/term_list_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

output_file = sys.argv[1]

docgen = DocGenerator("src/mixs/schema/mixs.yaml", directory="docs")
docgen = DocGenerator("src/mixs/schema/mixs.yaml", template_directory="src/doc-templates", directory="docs", use_slot_uris=True)
terms = list(docgen.all_slot_objects())

try:
Expand Down

0 comments on commit 54a7ae8

Please sign in to comment.