diff options
author | Munyoki Kilyungi | 2024-08-16 11:38:53 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-08-16 11:38:53 +0300 |
commit | c81e764186a73b67538a3a4bd227475b546a699e (patch) | |
tree | fae42d66eb754bbbd759f5402d8ab5f815b34255 /examples/generif.scm | |
parent | cacaa1463eb37bcddd16e1e1c813dd39229e7928 (diff) | |
download | gn-transform-databases-c81e764186a73b67538a3a4bd227475b546a699e.tar.gz |
Delete un-used functions during generif transform.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'examples/generif.scm')
-rwxr-xr-x | examples/generif.scm | 16 |
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") |