diff options
author | Munyoki Kilyungi | 2023-10-20 16:33:54 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-10-20 16:33:54 +0300 |
commit | 5889bd3ceb5143b54388ac55926917b48c0b6766 (patch) | |
tree | f28ee58d271a922751077d71d73b8ecb308c5ab5 | |
parent | fb4fe01ffd2053a8e4e70c38c3c2c65a3d4bdb81 (diff) | |
download | gn-transform-databases-5889bd3ceb5143b54388ac55926917b48c0b6766.tar.gz |
Use the correct URL for "gnt:" prefix.
* examples/phenotype.scm (option-spec): Replace
http://genenetwork.org/terms/ with http://genenetwork.org/term/.
* examples/publication.scm (option-spec): Ditto.
* examples/tissue.scm (option-spec): Ditto.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rwxr-xr-x | examples/phenotype.scm | 2 | ||||
-rwxr-xr-x | examples/publication.scm | 2 | ||||
-rwxr-xr-x | examples/tissue.scm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/phenotype.scm b/examples/phenotype.scm index 2745e95..4378809 100755 --- a/examples/phenotype.scm +++ b/examples/phenotype.scm @@ -121,7 +121,7 @@ ("gn:" "<http://genenetwork.org/id/>") ("owl:" "<http://www.w3.org/2002/07/owl#>") ("gnc:" "<http://genenetwork.org/category/>") - ("gnt:" "<http://genenetwork.org/terms/>") + ("gnt:" "<http://genenetwork.org/term/>") ("sdmx-measure:" "<http://purl.org/linked-data/sdmx/2009/measure#>") ("skos:" "<http://www.w3.org/2004/02/skos/core#>") ("rdf:" "<http://www.w3.org/1999/02/22-rdf-syntax-ns#>") diff --git a/examples/publication.scm b/examples/publication.scm index 81606b2..eab4da7 100755 --- a/examples/publication.scm +++ b/examples/publication.scm @@ -70,7 +70,7 @@ (connection %connection-settings) (table-metadata? #f) (prefixes - '(("gnt:" "<http://genenetwork.org/terms/>") + '(("gnt:" "<http://genenetwork.org/term/>") ("fabio:" "<http://purl.org/spar/fabio/>") ("dct:" "<http://purl.org/dc/terms/>") ("prism:" "<http://prismstandard.org/namespaces/basic/2.0/>") diff --git a/examples/tissue.scm b/examples/tissue.scm index ce9f345..2659b66 100755 --- a/examples/tissue.scm +++ b/examples/tissue.scm @@ -43,7 +43,7 @@ (table-metadata? #f) (prefixes '(("gn:" "<http://genenetwork.org/id/>") - ("gnt:" "<http://genenetwork.org/terms/>") + ("gnt:" "<http://genenetwork.org/term/>") ("skos:" "<http://www.w3.org/2004/02/skos/core#>") ("gnc:" "<http://genenetwork.org/category/>") ("rdf:" "<http://www.w3.org/1999/02/22-rdf-syntax-ns#>") |