X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=composite.lisp;h=9b5f60199a65eede49754dfa5d8624bf178cc0a6;hb=48b70ea69d92b01f3e3795855581f8af8869b01f;hp=4dcc194f03fb0cbae8693c429b465a78518aa6e5;hpb=77d1409857f947a3fd9e8a07d19ff937952a25b5;p=umlisp.git diff --git a/composite.lisp b/composite.lisp index 4dcc194..9b5f601 100644 --- a/composite.lisp +++ b/composite.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: composite.lisp,v 1.5 2002/10/14 15:03:43 kevin Exp $ +;;;; $Id: composite.lisp,v 1.6 2002/10/16 16:05:23 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -113,6 +113,13 @@ (:fields (tui :string fmt-tui) (freq :fixnum) (sty :string)) (:documentation "Composite object of usty/freq")) +(defmethod tui ((s usty_freq)) + (usty-tui (usty_freq-usty s))) + +(defmethod sty ((s usty_freq)) + (usty-sty (usty_freq-usty s))) + + (defun find-usty_freq-all () (let ((usty_freqs '())) (dolist (tuple (mutex-sql-query "select distinct TUI from MRSTY")) @@ -123,11 +130,6 @@ (push (make-instance 'usty_freq :usty (find-usty-tui tui) :freq freq) usty_freqs))) (sort usty_freqs #'> :key #'freq))) -(defun usty_freq-tui (s) - (tui (usty s))) - -(defun usty_freq-sty (s) - (sty (usty s))) (defclass usrl_freq (umlsclass) ((usrl :type usrl :initarg :usrl :reader usrl) @@ -139,14 +141,25 @@ (:fields (sab :string) (freq :commainteger) (srl :fixnum)) (:documentation "Composite object of usrl/freq")) -(defun usrl_freq-sab (s) +(defmethod sab ((s usrl_freq)) (sab (usrl s))) -(defun usrl_freq-srl (s) +(defmethod srl ((s usrl_freq)) (srl (usrl s))) ;; Frequency finding functions + +(defun find-usrl_freq-all () + (let ((freqs '())) + (dolist (usrl (find-usrl-all)) + (let ((freq (ensure-integer + (caar (mutex-sql-query + (format nil "select count(*) from MRSO where SAB='~a'" + (sab usrl))))))) + (push (make-instance 'usrl_freq :usrl usrl :freq freq) freqs))) + (sort freqs #'> :key #'usrl_freq-freq))) + (defun find-ucon2_freq-coc-tui (ucon tui) "Return sorted list of tuples with ucon and freq that have co-occuring concepts of semantic type tui" (let ((ucon_freqs '()))