r11478: generate custom columns by dynamically finding position of dependant columns...
[umlisp.git] / parse-rrf.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: umlisp -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:     parse-rrf.lisp
6 ;;;; Purpose:  Parsing and SQL insertion routines for UMLisp which may
7 ;;;;           change from year to year
8 ;;;; Author:   Kevin M. Rosenberg
9 ;;;; Created:  Apr 2000
10 ;;;;
11 ;;;; $Id$
12 ;;;;
13 ;;;; This file, part of UMLisp, is
14 ;;;;    Copyright (c) 2000-2006 by Kevin M. Rosenberg, M.D.
15 ;;;;
16 ;;;; UMLisp users are granted the rights to distribute and use this software
17 ;;;; as governed by the terms of the GNU General Public License.
18 ;;;; *************************************************************************
19
20 (in-package #:umlisp)
21
22 ;;; Pre-read data for custom fields into hash tables
23 (defvar *preparse-hash-init?* nil)
24
25 (eval-when (:compile-toplevel :load-toplevel :execute)
26
27 (declaim (inline srl-to-srlus))
28 (defun srl-to-srlus (srl)
29   "Convert the standard SRL category to one oriented for use in the United States.
30 Specifically, SRL 4 in the USA has license restrictions between SRL 1 and 2 when
31 used in the United States. We create a new scale (SRLUS) where SRL to SRLUS mapping is:
32 (0->0, 1->1, 4->2, 2->3, 3->4)."
33   (declare (fixnum srl))
34   (cond
35     ((= srl 4) 2)
36     ((= srl 2) 3)
37     ((= srl 3) 4)
38     (t srl)))
39
40 (let ((pfstr-hash nil)      ;; Preferred concept strings by CUI
41       (cui-lrl-hash nil)    ;; LRL by CUI
42       (lui-lrl-hash nil)    ;; LRL by LUI
43       (sui-lrl-hash nil)    ;; LRL by SUI
44       (cuisui-lrl-hash nil) ;; LRL by CUISUI
45       (cui-lrlus-hash nil)  ;; LRLUS by CUI
46       (lui-lrlus-hash nil)  ;; LRLUS by LUI
47       (sui-lrlus-hash nil)  ;; LRLUS by SUI
48       (cuisui-lrlus-hash nil) ;; LRL by CUISUI
49
50       (sab-srl-hash nil)
51       (sab-srlus-hash nil))   ;; SRL by SAB
52
53   (defun clear-preparse-hash-tables ()
54     (clrhash pfstr-hash)
55     (clrhash cui-lrl-hash)
56     (clrhash lui-lrl-hash)
57     (clrhash sui-lrl-hash)
58     (clrhash cuisui-lrl-hash)
59     (clrhash cui-lrlus-hash)
60     (clrhash lui-lrlus-hash)
61     (clrhash sui-lrlus-hash)
62     (clrhash cuisui-lrlus-hash)
63     (clrhash sab-srl-hash)
64     (clrhash sab-srlus-hash))
65
66   (defun make-preparse-hash-table ()
67     (if sui-lrl-hash
68         (clear-preparse-hash-tables)
69       (setf
70           pfstr-hash (make-hash-table :size 1500000)
71           cui-lrl-hash (make-hash-table :size 1500000)
72           lui-lrl-hash (make-hash-table :size 5000000)
73           sui-lrl-hash (make-hash-table :size 6000000)
74           cuisui-lrl-hash (make-hash-table :size 6000000)
75           cui-lrlus-hash (make-hash-table :size 1500000)
76           lui-lrlus-hash (make-hash-table :size 5000000)
77           sui-lrlus-hash (make-hash-table :size 6000000)
78           cuisui-lrlus-hash (make-hash-table :size 6000000)
79           sab-srl-hash (make-hash-table :size 200 :test 'equal)
80           sab-srlus-hash (make-hash-table :size 200 :test 'equal))))
81
82   (defun ensure-preparse (&optional (force-read nil))
83     (when (and *preparse-hash-init?* (not force-read))
84       (return-from ensure-preparse 'already-done))
85     (make-preparse-hash-table)
86     (let ((counter 0))
87       (declare (fixnum counter)
88                (ignorable counter))
89       (with-umls-file (line "MRCONSO.RRF")
90         (let* ((cui (parse-ui (nth 0 line)))
91                (lui (parse-ui (nth 3 line)))
92                (sui (parse-ui (nth 5 line)))
93                (sab (nth 11 line))
94                (srl (parse-integer (nth 15 line)))
95                (srlus (srl-to-srlus srl)))
96           #+sbcl
97           (when (= 0 (mod (incf counter) 100000)) (sb-ext:gc :full t))
98
99           ;; pfstr deprecated by KPFENG field in MRCONSO
100           #+nil
101           (unless (gethash cui pfstr-hash)  ;; if haven't stored pfstr for cui
102             (when (and (string-equal (nth 1 line) "ENG") ; LAT
103                        (string-equal (nth 2 line) "P") ; ts
104                        (string-equal (nth 4 line) "PF")) ; stt
105               (setf (gethash cui pfstr-hash) (nth 14 line))))
106           (set-lrl-hash cui srl cui-lrl-hash)
107           (set-lrl-hash lui srl lui-lrl-hash)
108           (set-lrl-hash sui srl sui-lrl-hash)
109           (set-lrl-hash (make-cuisui cui sui) srl cuisui-lrl-hash)
110           (set-lrl-hash cui srlus cui-lrlus-hash)
111           (set-lrl-hash lui srlus lui-lrlus-hash)
112           (set-lrl-hash sui srlus sui-lrlus-hash)
113           (set-lrl-hash (make-cuisui cui sui) srlus cuisui-lrlus-hash)
114           (multiple-value-bind (val found) (gethash sab sab-srl-hash)
115             (declare (ignore val))
116             (unless found
117               (setf (gethash sab sab-srl-hash) srl)))
118           (multiple-value-bind (val found) (gethash sab sab-srlus-hash)
119             (declare (ignore val))
120             (unless found
121               (setf (gethash sab sab-srlus-hash) srlus))))))
122     (setq *preparse-hash-init?* t)
123     t)
124
125   #+nil (defun pfstr-hash (cui) (gethash cui pfstr-hash))
126   (defun cui-lrl (cui)       (gethash cui cui-lrl-hash))
127   (defun lui-lrl (lui)       (gethash lui lui-lrl-hash))
128   (defun sui-lrl (sui)       (gethash sui sui-lrl-hash))
129   (defun cuisui-lrl (cuisui) (gethash cuisui cuisui-lrl-hash))
130   (defun cui-lrlus (cui)     (gethash cui cui-lrlus-hash))
131   (defun lui-lrlus (lui)     (gethash lui lui-lrlus-hash))
132   (defun sui-lrlus (sui)     (gethash sui sui-lrlus-hash))
133   (defun cuisui-lrlus (cuisui) (gethash cuisui cuisui-lrlus-hash))
134   (defun sab-srl (sab)      (aif (gethash sab sab-srl-hash) it 0))
135   (defun sab-srlus (sab)    (aif (gethash sab sab-srlus-hash) it 0))
136
137 )) ;; closure
138
139
140 (defun set-lrl-hash (key srl hash)
141   "Set the least restrictive level in hash table"
142   (declare (fixnum srl))
143   (multiple-value-bind (hash-lrl found) (gethash key hash)
144     (declare (type (or null fixnum) hash-lrl)
145              (boolean found))
146     (if (or (not found) (< srl hash-lrl))
147         (setf (gethash key hash) srl))))
148
149 ;; UMLS file and column structures
150 ;;; SQL datatypes symbols
151 ;;; sql-u - Unique identifier
152 ;;; sql-t - Tiny integer (8-bit)
153 ;;; sql-s - Small integer (16-bit)
154 ;;; sql-i - Integer (32-bit)
155 ;;; sql-l - Big integer (64-bit)
156 ;;; sql-f - Floating point
157 ;;; sql-c - Character data
158
159 (defparameter +col-datatypes+
160     '(("AV" sql-f) ("BTS" sql-i) ("CLS" sql-i) ("COF" sql-i) ("CUI1" sql-u)
161       ("AUI" sql-u) ("AUI1" sql-u) ("AUI2" sql-u) ("PCUI" sql-u)
162       ("PLUI" sql-u) ("PAUI" sql-u) ("RUI" sql-u)
163       ("CUI2" sql-u) ("CUI" sql-u) ("CXN" sql-s) ("FR" sql-i)
164       ("LUI" sql-u) ("MAX" sql-s) ("MIN" sql-s) ("RANK" sql-s) ("REF" sql-c)
165       ("PTR" sql-c)
166       ("RNK" sql-s) ("RWS" sql-i) ("SRL" sql-t) ("SUI" sql-u) ("TUI" sql-u)
167       ("MAPRANK" sql-s)
168       ;;; Custom columns
169       ("KCUISUI" sql-l) ("KCUILUI" sql-l)
170       ("KSRL" sql-t) ("KSRLUS" sql-t) ("LRL" sql-t) ("LRLUS" sql-t)
171       ("KCUILRL" sql-t) ("KLUILRL" sql-t) ("KSUILRL" sql-t) ("KLRL" sql-t)
172       ("KCUILRLUS" sql-t) ("KLUILRLUS" sql-t) ("KSUILRLUS" sql-t) ("KLRLUS" sql-t)
173       ;;; LEX columns
174       ("EUI" sql-u) ("EUI2" sql-u)
175       ;;; Semantic net columns
176       ("UI" sql-u) ("UI2" sql-u) ("UI3" sql-u)
177       ;; New fields for 2002AD
178       ("RCUI" sql-u) ("VCUI" sql-u) ("CFR" sql-i) ("TFR" sql-i)
179       ;; New fields for 2004AA
180       ("MAPSETCUI" sql-u)
181       )
182     "SQL data types for each non-string column")
183
184 (defparameter +custom-tables+
185     nil
186   #+ignore
187   '(("KCON" "SELECT CUI,STR FROM MRCONSO WHERE STT='PF' AND TS='P' AND ISPREF='Y' AND LAT='ENG'"))
188   "Custom tables to create")
189
190 (declaim (inline vff))
191 (defun vff (filename fieldname record)
192   (let ((pos (position-field-file filename fieldname)))
193     (unless pos
194       (error "Did not find fieldname ~A in filename ~A." fieldname filename))
195     (locally (declare (fixnum pos))
196       (nth pos record))))
197
198 (defparameter +custom-cols+
199     '(#+nil ("MRCONSO.RRF" "KPFSTR" "TEXT"
200              (slot-value (find-ucol "STR" "MRCONSO.RRF") 'max)
201              (lambda (x) (pfstr-hash (parse-ui (nth 0 x)))))
202       ;; Set to 1 if term is prefered term for english
203       ("MRCONSO.RRF" "KPFENG" "TINYINT" 0
204        (lambda (x)  (if (and (string-equal (nth 1 x) "ENG") ; LAT
205                              (string-equal (nth 2 x) "P") ; ts
206                              (string-equal (nth 4 x) "PF")) ; stt
207                       "1"
208                       "0")))
209       ("MRCONSO.RRF" "KCUISUI" "BIGINT" 0
210        (lambda (x) (write-to-string (make-cuisui (parse-ui (vff "MRCONSO.RRF" "CUI" x))
211                                                  (parse-ui (vff "MRCONSO.RRF" "SUI" x))))))
212       ("MRCONSO.RRF" "KCUILUI" "BIGINT" 0
213        (lambda (x) (write-to-string (make-cuilui (parse-ui (vff "MRCONSO.RRF" "CUI" x))
214                                                  (parse-ui (vff "MRCONSO.RRF" "SUI" x))))))
215       ("MRCONSO.RRF" "KCUILRL" "TINYINT" 0
216        (lambda (x) (write-to-string (cui-lrl (parse-ui (vff "MRCONSO.RRF" "CUI" x))))))
217       ("MRCONSO.RRF" "KCUILRLUS" "TINYINT" 0
218        (lambda (x) (write-to-string (cui-lrlus (parse-ui (vff "MRCONSO.RRF" "CUI" x))))))
219       ("MRCONSO.RRF" "KLUILRL" "TINYINT" 0
220        (lambda (x) (write-to-string (lui-lrl (parse-ui (vff "MRCONSO.RRF" "LUI" x))))))
221       ("MRCONSO.RRF" "KLUILRLUS" "TINYINT" 0
222        (lambda (x) (write-to-string (lui-lrlus (parse-ui (vff "MRCONSO.RRF" "LUI" x))))))
223       ("MRCONSO.RRF" "KSUILRL" "TINYINT" 0
224        (lambda (x) (write-to-string (sui-lrl (parse-ui (vff "MRCONSO.RRF" "SUI" x))))))
225       ("MRCONSO.RRF" "KSUILRLUS" "TINYINT" 0
226        (lambda (x) (write-to-string (sui-lrlus (parse-ui (vff "MRCONSO.RRF" "SUI" x))))))
227       ("MRCONSO.RRF" "KSRLUS" "TINYINT" 0
228        (lambda (x) (write-to-string (srl-to-srlus (parse-integer (vff "MRCONSO.RRF" "SRL" x))))))
229       ("MRSAB.RRF" "KSRLUS" "TINYINT" 0
230        (lambda (x) (write-to-string (srl-to-srlus (parse-integer (vff "MRSAB.RRF" "SRL" x))))))
231       ("MRSTY.RRF" "KLRL" "TINYINT" 0
232        (lambda (x) (write-to-string (cui-lrl (parse-ui (vff "MRSTY.RRF" "CUI" x))))))
233       ("MRSTY.RRF" "KLRLUS" "TINYINT" 0
234        (lambda (x) (write-to-string (cui-lrlus (parse-ui (vff "MRSTY.RRF" "CUI" x))))))
235       ("MRCOC.RRF" "KLRL" "TINYINT" 0
236        (lambda (x) (write-to-string
237                     (max (cui-lrl (parse-ui (vff "MRCOC.RRF" "CUI1" x)))
238                          (kmrcl:aif (cui-lrl (parse-ui (vff "MRCOC.RRF" "CUI2" x))) kmrcl::it 0)))))
239       ("MRCOC.RRF" "KLRLUS" "TINYINT" 0
240        (lambda (x) (write-to-string
241                     (max (cui-lrlus (parse-ui (vff "MRCOC.RRF" "CUI1" x)))
242                          (kmrcl:aif (cui-lrl (parse-ui (vff "MRCOC.RRF" "CUI2" x))) kmrcl::it 0)))))
243       ("MRSAT.RRF" "KSRL" "TINYINT" 0
244        (lambda (x) (write-to-string (sab-srl (vff "MRSAT.RRF" "SAB" x)))))
245       ("MRSAT.RRF" "KSRLUS" "TINYINT" 0
246        (lambda (x) (write-to-string (sab-srlus (vff "MRSAT.RRF" "SAB" x)))))
247       ("MRREL.RRF" "KSRL" "TINYINT" 0
248        (lambda (x) (write-to-string (sab-srl (vff "MRREL.RRF" "SAB" x)))))
249       ("MRREL.RRF" "KSRLUS" "TINYINT" 0
250        (lambda (x) (write-to-string (sab-srlus (vff "MRREL.RRF" "SAB" x)))))
251       ("MRRANK.RRF" "KSRL" "TINYINT" 0
252        (lambda (x) (write-to-string (sab-srl (vff "MRRANK.RRF" "SAB" x)))))
253       ("MRRANK.RRF" "KSRLUS" "TINYINT" 0
254        (lambda (x) (write-to-string (sab-srlus (vff "MRRANK.RRF" "SAB" x)))))
255       ("MRHIER.RRF" "KSRL" "TINYINT" 0
256        (lambda (x) (write-to-string (sab-srl (vff "MRHIER.RRF" "SAB" x)))))
257       ("MRHIER.RRF" "KSRLUS" "TINYINT" 0
258        (lambda (x) (write-to-string (sab-srlus (vff "MRHIER.RRF" "SAB" x)))))
259       ("MRMAP.RRF" "KSRL" "TINYINT" 0
260        (lambda (x) (write-to-string (sab-srl (vff "MRMAP.RRF" "MAPSETSAB" x)))))
261       ("MRMAP.RRF" "KSRLUS" "TINYINT" 0
262        (lambda (x) (write-to-string (sab-srlus (vff "MRMAP.RRF" "MAPSETSAB" x)))))
263       ("MRSMAP.RRF" "KSRL" "TINYINT" 0
264        (lambda (x) (write-to-string (sab-srl (vff "MRSMAP.RRF" "MAPSETSAB" x)))))
265       ("MRSMAP.RRF" "KSRLUS" "TINYINT" 0
266        (lambda (x) (write-to-string (sab-srlus (vff "MRSMAP.RRF" "MAPSETSAB" x)))))
267       ("MRDEF.RRF" "KSRL" "TINYINT" 0
268        (lambda (x) (write-to-string (sab-srl (vff "MRDEF.RRF" "SAB" x)))))
269       ("MRDEF.RRF" "KSRLUS" "TINYINT" 0
270        (lambda (x) (write-to-string (sab-srlus (vff "MRDEF.RRF" "SAB" x)))))
271       ("MRXW_ENG.RRF" "KLRL" "TINYINT" 0
272        (lambda (x) (write-to-string (cuisui-lrl (make-cuisui
273                                                  (parse-ui (vff "MRXW_ENG.RRF" "CUI" x))
274                                                  (parse-ui (vff "MRXW_ENG.RRF" "SUI" x)))))))
275       ("MRXW_ENG.RRF" "KLRLUS" "TINYINT" 0
276        (lambda (x) (write-to-string (cuisui-lrlus (make-cuisui
277                                                  (parse-ui (vff "MRXW_ENG.RRF" "CUI" x))
278                                                  (parse-ui (vff "MRXW_ENG.RRF" "SUI" x)))))))
279       ("MRXW_NONENG.RRF" "KLRL" "TINYINT" 0
280        (lambda (x) (write-to-string (cuisui-lrl (make-cuisui
281                                                  (parse-ui (vff "MRXW_NONENG.RRF" "CUI" x))
282                                                  (parse-ui (vff "MRXW_NONENG.RRF" "SUI" x)))))))
283       ("MRXW_NONENG.RRF" "KLRLUS" "TINYINT" 0
284        (lambda (x) (write-to-string (cuisui-lrlus (make-cuisui
285                                                  (parse-ui (vff "MRXW_NONENG.RRF" "CUI" x))
286                                                  (parse-ui (vff "MRXW_NONENG.RRF" "SUI" x)))))))
287       ("MRXNW_ENG.RRF" "KLRL" "TINYINT" 0
288        (lambda (x) (write-to-string (cuisui-lrl (make-cuisui
289                                                  (parse-ui (vff "MRXNW_ENG.RRF" "CUI" x))
290                                                  (parse-ui (vff "MRXNW_ENG.RRF" "SUI" x)))))))
291       ("MRXNW_ENG.RRF" "KLRLUS" "TINYINT" 0
292        (lambda (x) (write-to-string (cuisui-lrlus (make-cuisui
293                                                  (parse-ui (vff "MRXNW_ENG.RRF" "CUI" x))
294                                                  (parse-ui (vff "MRXNW_ENG.RRF" "SUI" x)))))))
295       ("MRXNS_ENG.RRF" "KLRL" "TINYINT" 0
296        (lambda (x) (write-to-string (cuisui-lrl (make-cuisui
297                                                  (parse-ui (vff "MRXNS_ENG.RRF" "CUI" x))
298                                                  (parse-ui (vff "MRXNS_ENG.RRF" "SUI" x)))))))
299       ("MRXNS_ENG.RRF" "KLRLUS" "TINYINT" 0
300        (lambda (x) (write-to-string (cuisui-lrlus (make-cuisui
301                                                  (parse-ui (vff "MRXNS_ENG.RRF" "CUI" x))
302                                                  (parse-ui (vff "MRXNS_ENG.RRF" "SUI" x)))))))
303
304       #+nil  ("MRREL.RRF" "KPFSTR2" "TEXT" 1024 (lambda (x) (pfstr-hash (parse-ui (nth 4 x)))))
305       #+nil  ("MRCOC.RRF" "KPFSTR2" "TEXT" 1024 (lambda (x) (pfstr-hash (parse-ui (nth 2 x)))))
306
307       ("MRSAT.RRF" "KCUILUI" "BIGINT" 0
308        (lambda (x) (write-to-string (make-cuilui
309                                      (parse-ui (vff "MRSAT.RRF" "CUI" x))
310                                      (parse-ui (vff "MRSAT.RRF" "LUI" x))))))
311       ("MRSAT.RRF" "KCUISUI" "BIGINT" 0
312        (lambda (x) (write-to-string (make-cuisui
313                                      (parse-ui (vff "MRSAT.RRF" "CUI" x))
314                                      (parse-ui (vff "MRSAT.RRF" "SUI" x))))))
315       ("MRXW_ENG.RRF" "KCUISUI" "BIGINT" 0
316        (lambda (x) (write-to-string (make-cuisui
317                                      (parse-ui (vff "MRXW_ENG.RRF" "CUI" x))
318                                      (parse-ui (vff "MRXW_ENG.RRF" "SUI" x))))))
319       ("MRXNW_ENG.RRF" "KCUISUI" "BIGINT" 0
320        (lambda (x) (write-to-string (make-cuisui
321                                      (parse-ui (vff "MRXNW_ENG.RRF" "CUI" x))
322                                      (parse-ui (vff "MRXNW_ENG.RRF" "SUI" x))))))
323       ("MRXNS_ENG.RRF" "KCUISUI" "BIGINT" 0
324        (lambda (x) (write-to-string (make-cuisui
325                                      (parse-ui (vff "MRXNS_ENG.RRF" "CUI" x))
326                                      (parse-ui (vff "MRXNS_ENG.RRF" "SUI" x))))))
327       ("MRXW_NONENG.RRF" "LAT" "VARCHAR" 3 (lambda (x) (vff "MRXW_NONENG.RRF" "LAT" x)))
328       ("MRXW_NONENG.RRF" "WD"  "VARCHAR" 200  (lambda (x) (vff "MRXW_NONENG.RRF" "WD" x)))
329       ("MRXW_NONENG.RRF" "CUI" "INTEGER" 0 (lambda (x) (write-to-string (parse-ui (vff "MRXW_NONENG.RRF" "CUI" x)))))
330       ("MRXW_NONENG.RRF" "LUI" "INTEGER" 0 (lambda (x) (write-to-string (parse-ui (vff "MRXW_NONENG.RRF" "LUI" x)))))
331       ("MRXW_NONENG.RRF" "SUI" "INTEGER" 0 (lambda (x) (write-to-string (parse-ui (vff "MRXW_NONENG.RRF" "SUI" x)))))
332       ("MRXW_NONENG.RRF" "KCUISUI" "BIGINT" 0
333        (lambda (x) (write-to-string (make-cuisui
334                                      (parse-ui (vff "MRXW_NONENG.RRF" "CUI" x))
335                                      (parse-ui (vff "MRXW_NONENG.RRF" "SUI" x)))))))
336     "Custom columns to create.(filename, col, sqltype, value-func).")
337
338 (defparameter +index-cols+
339     '(("CUI1" "MRCOC") ("CUI" "MRCONSO") ("LUI" "MRCONSO")
340       ("SRL" "MRCONSO") ("KSRLUS" "MRCONSO") ("AUI" "MRCONSO") ("KPFENG" "MRCONSO")
341       ("SUI" "MRCONSO") ("SAUI" "MRCONSO") ("CODE" "MRCONSO")
342       ("SCUI" "MRCONSO")
343       ("CUI" "MRDEF")
344       ("CUI1" "MRREL") ("CUI2" "MRREL") ("SAB" "MRREL")
345       ("RUI" "MRREL") ("AUI1" "MRREL") ("AUI2" "MRREL")
346       ("CUI" "MRSAT") ("LUI" "MRSAT") ("SUI" "MRSAT")
347       ("METAUI" "MRSAT") ("ATN" "MRSAT")
348       ("CUI" "MRSTY")  ("TUI" "MRSTY") ("CUI" "MRXNS_ENG")
349       ("AUI" "MRHIER") ("CUI" "MRHIER") ("CXN" "MRHIER") ("RELA" "MRHIER") ("PAUI" "MRHIER")
350       ("SAB" "MRHIER")
351       #+ignore ("NSTR" "MRXNS_ENG" 10)
352       ("CUI" "MRXNW_ENG") ("NWD" "MRXNW_ENG") ("WD" "MRXW_ENG")
353       ("KCUISUI" "MRCONSO") ("KCUILUI" "MRCONSO")
354       ("KCUILRL" "MRCONSO") ("KLUILRL" "MRCONSO") ("KSUILRL" "MRCONSO")
355       ("KCUILRLUS" "MRCONSO") ("KLUILRLUS" "MRCONSO") ("KSUILRLUS" "MRCONSO")
356       ("KCUISUI" "MRSAT")  ("KCUILUI" "MRSAT")
357       ("KCUISUI" "MRXW_ENG") ("KCUISUI" "MRXNW_ENG")
358       ("KCUISUI" "MRXNS_ENG") ("KCUISUI" "MRXW_NONENG")
359       ("KSRL" "MRDEF") ("KSRL" "MRRANK")("KSRL" "MRREL") ("KSRL" "MRSAT")
360       ("KSRLUS" "MRDEF") ("KSRLUS" "MRRANK")("KSRLUS" "MRREL") ("KSRLUS" "MRSAT")
361       ("KLRL" "MRCOC") ("KLRL" "MRSTY") ("KLRL" "MRXW_ENG") ("KLRL" "MRXNW_ENG")
362       ("KLRLUS" "MRCOC") ("KLRLUS" "MRSTY") ("KLRLUS" "MRXW_ENG") ("KLRLUS" "MRXNW_ENG")
363       ("KLRL" "MRXNS_ENG") ("KLRL" "MRXW_NONENG")
364       ("KLRLUS" "MRXNS_ENG") ("KLRLUS" "MRXW_NONENG")
365       ;; LEX indices
366       ("EUI" "LRABR") ("EUI2" "LRABR") ("EUI" "LRAGR") ("EUI" "LRCMP") ("EUI" "LRMOD")
367       ("EUI" "LRNOM") ("EUI2" "LRNOM") ("EUI" "LRPRN") ("EUI" "LRPRP") ("EUI" "LRSPL")
368       ("EUI" "LRTRM") ("EUI" "LRTYP") ("EUI" "LRWD") ("WRD" "LRWD")
369       ("BAS" "LRABR")
370       ;; Semantic NET indices
371       ("UI" "SRSTRE1") ("UI2" "SRSTRE1") ("UI3" "SRSTRE1")
372       ("STY_RL" "SRDEF") ("RT" "SRDEF") ("STY_RL" "SRSTR") ("STY_RL2" "SRSTR")
373       ("RL" "SRSTR")
374
375       ("SRL" "MRSAB") ("KSRLUS" "MRSAB") ("RSAB" "MRSAB") ("VSAB" "MRSAB") ("RCUI" "MRSAB")
376       ("VCUI" "MRSAB") ("LAT" "MRSAB") ("MAPSETCUI" "MRMAP")  ("MAPSETCUI" "MRSMAP")
377       ("CUI" "MRHIER"))
378   "Columns in files to index")
379
380
381 (defparameter +custom-index-cols+
382   nil
383   #+ignore
384   '(("CUI" "KCON") ("LRL" "KCON"))
385   "Indexes to custom tables")
386
387 ;; File & Column functions
388
389 (defun gen-ucols ()
390   (add-ucols (gen-ucols-meta))
391   (add-ucols (gen-ucols-generic "LRFLD"))
392   (add-ucols (gen-ucols-generic "SRFLD"))
393   (add-ucols (gen-ucols-custom)))
394
395 (defun gen-ucols-meta ()
396 "Initialize all umls columns"
397   (let ((cols '()))
398     (with-umls-file (line "MRCOLS.RRF")
399       (destructuring-bind (col des ref min av max fil dty) line
400         (push (make-ucol col des ref (parse-integer min) (read-from-string av)
401                          (parse-integer max) fil dty)
402               cols)))
403     (nreverse cols)))
404
405 (defun gen-ucols-custom ()
406 "Initialize umls columns for custom columns"
407   (loop for customcol in +custom-cols+
408         collect
409         (make-ucol (nth 1 customcol) "" 0 0 0 (eval (nth 3 customcol))
410                    (nth 0 customcol) nil :sqltype (canonicalize-column-type (nth 2 customcol))
411                    :custom-value-fun (compile nil (nth 4 customcol)))))
412
413 (defun gen-ucols-generic (col-filename)
414 "Initialize for generic (LEX/NET) columns"
415   (let ((cols '()))
416     (with-umls-file (line col-filename)
417       (destructuring-bind (nam des ref fil) line
418         (setq nam (escape-column-name nam))
419         (dolist (file (delimited-string-to-list fil #\,))
420           (push
421            (make-ucol nam des ref nil nil nil file nil)
422            cols))))
423     (nreverse cols)))
424
425
426 (defun gen-ufiles ()
427   (add-ufiles (gen-ufiles-generic "MRFILES.RRF" "META"))
428   (add-ufiles (gen-ufiles-generic "LRFIL" "LEX"))
429   (add-ufiles (gen-ufiles-generic "SRFIL" "NET"))
430   ;; needs to come last
431   (add-ufiles (gen-ufiles-custom)))
432
433
434 (defun gen-ufiles-generic (files-filename dir)
435 "Initialize generic UMLS file structures"
436   (let ((files '()))
437     (with-umls-file (line files-filename)
438       (destructuring-bind (fil des fmt cls rws bts) line
439         (push (make-ufile
440                dir fil des
441                (parse-integer cls)
442                (parse-integer rws) (parse-integer bts)
443                (concatenate 'list (umls-field-string-to-list fmt)
444                             (custom-colnames-for-filename fil)))
445               files)))
446     (nreverse files)))
447
448 (defun gen-ufiles-custom ()
449   (make-ufile "META" "MRXW_NONENG.RRF" "Custom NonEnglish Index"
450               5 0 0 (fields (find-ufile "MRXW_ENG.RRF"))))
451
452
453