aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMunyoki Kilyungi2024-08-16 11:38:53 +0300
committerMunyoki Kilyungi2024-08-16 11:38:53 +0300
commitc81e764186a73b67538a3a4bd227475b546a699e (patch)
treefae42d66eb754bbbd759f5402d8ab5f815b34255
parentcacaa1463eb37bcddd16e1e1c813dd39229e7928 (diff)
downloadgn-transform-databases-c81e764186a73b67538a3a4bd227475b546a699e.tar.gz
Delete un-used functions during generif transform.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rwxr-xr-xexamples/generif.scm16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/generif.scm b/examples/generif.scm
index ea095f4..d214cd1 100755
--- a/examples/generif.scm
+++ b/examples/generif.scm
@@ -16,22 +16,6 @@
-(define (fix-email-id email)
- (string-delete #\space email))
-
-(define (investigator-attributes->id first-name last-name email)
- ;; There is just one record corresponding to "Evan Williams" which
- ;; does not have an email ID. To accommodate that record, we
- ;; construct the investigator ID from not just the email ID, but
- ;; also the first and the last names. It would be preferable to just
- ;; find Evan Williams' email ID and insert it into the database.
- (string->identifier "investigator"
- (string-join
- (list first-name last-name (fix-email-id email))
- "_")))
-
-
-
(define-transformer genewiki-symbols
(tables (GeneRIF_BASIC)
"GROUP BY BINARY symbol")