diff options
| -rwxr-xr-x | examples/datasets.scm | 2 | ||||
| -rwxr-xr-x | load-rdf.scm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/examples/datasets.scm b/examples/datasets.scm index e4f35da..85a5aee 100755 --- a/examples/datasets.scm +++ b/examples/datasets.scm @@ -25,7 +25,7 @@ (set rdf:type 'dcat:Dataset) (set dct:title (normalize-string-field (field InfoFiles InfoPageName))) (set dct:identifier (format #f "GN~a" (field InfoFiles GN_AccesionId))) - (set gnt:has_genotype_files (string->symbol (format #f "gn-files:GN~a" (field InfoFiles GN_AccesionId)))) + (set gnt:has_genotype_files (string->symbol (format #f "gn-files:GN~a%2F" (field InfoFiles GN_AccesionId)))) (set gnt:has_strain (string->identifier "set" (field InbredSet Name InbredSetName) #:separator "_")) (set gnt:has_experiment_type diff --git a/load-rdf.scm b/load-rdf.scm index 590fbc0..d747b26 100755 --- a/load-rdf.scm +++ b/load-rdf.scm @@ -111,6 +111,8 @@ DB.DBA.XML_SET_NS_DECL ('v', 'http://www.w3.org/2006/vcard/ns#', 2); DB.DBA.XML_SET_NS_DECL ('xkos', 'http://rdf-vocabulary.ddialliance.org/xkos#', 2); DB.DBA.XML_SET_NS_DECL ('schema', 'https://schema.org/', 2); DB.DBA.XML_SET_NS_DECL ('foaf', 'http://xmlns.com/foaf/0.1/#term_', 2); +DB.DBA.XML_SET_NS_DECL ('gnd', 'https://cd.genenetwork.org/lmdb/v1/data/traits/', 2); +DB.DBA.XML_SET_NS_DECL ('gn-files', 'http://files.genenetwork.org/current/', 2); " port password)) |
