diff options
author | Munyoki Kilyungi | 2023-03-29 00:14:58 +0300 |
---|---|---|
committer | BonfaceKilz | 2023-04-05 16:17:11 +0300 |
commit | 16421480e90b4a6f97595bf7835dbde90285fd25 (patch) | |
tree | b29cdd7d84789f83f424dc41ce03d356e133116f | |
parent | 33fa6f87c4739bc2225dff861f07156faa099c6b (diff) | |
download | gn-transform-databases-16421480e90b4a6f97595bf7835dbde90285fd25.tar.gz |
Avoid prefixing 'pubmed: to an empty string
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rwxr-xr-x | dump.scm | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -903,7 +903,9 @@ is a <table> object." (blank-node (set gn:category genecategory) (multiset gn:pubMedId - (map (cut ontology 'pubmed: <>) + (map (lambda (el) (if (string-null? el) + "" + (ontology 'pubmed: el))) (string-split pmid #\space))) (set gn:author (regexp-substitute/global #f "@.*$" email |