diff options
author | Munyoki Kilyungi | 2023-06-09 14:59:35 +0300 |
---|---|---|
committer | BonfaceKilz | 2023-06-12 19:06:36 +0300 |
commit | 13a22740634c33b5e04a1319b1d4beb24d56a0d2 (patch) | |
tree | b61447ef9b9a8d7190a370643f1ad94976892073 /examples | |
parent | aede661b55eb6b2f4b4b9eeb8972ab2a73a98d83 (diff) | |
download | gn-transform-databases-13a22740634c33b5e04a1319b1d4beb24d56a0d2.tar.gz |
Replace "Unknown" in Publication fields with an empty string
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/dump-publication.scm | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/examples/dump-publication.scm b/examples/dump-publication.scm index ba77256..784d815 100755 --- a/examples/dump-publication.scm +++ b/examples/dump-publication.scm @@ -44,11 +44,16 @@ (ontology 'publication: pmid))) (set rdf:type 'gn:publication) (set gn:pubMedId (ontology 'pubmed: (field ("IFNULL(PubMed_ID, '')" pubmedId)))) - (set gn:title (field Publication Title)) - (set gn:journal (field Publication Journal)) - (set gn:volume (field Publication Volume)) - (set gn:pages (field Publication Pages)) - (set gn:month (field Publication Month)) + (set gn:title (delete-substrings (field Publication Title) + "Unknown")) + (set gn:journal (delete-substrings (field Publication Journal) + "Unknown")) + (set gn:volume (delete-substrings (field Publication Volume) + "Unknown")) + (set gn:pages (delete-substrings (field Publication Pages) + "Unknown")) + (set gn:month (delete-substrings (field Publication Month) + "Unknown")) (set gn:year (field Publication Year)) (multiset gn:author ;; The authors field is a comma |