;;;; -*- Mode: LISP -*- ;;;; (in-package :asdf) (setf (logical-pathname-translations "molbio") `(("**;*.*" ,(make-pathname :directory (append (pathname-directory *load-pathname*) '(:wild-inferiors)) :name :wild :type :wild)))) (defsystem :molbio :name "Molecular biology stuff" :author "Alan Ruttenberg" :components ((:module databases :pathname "" :components ((:file "entrez-gene") (:file "omim") (:file "enzyme") (:file "hugo") (:file "match-gene-name") (:file "name-rules") ) :depends-on ())) :depends-on (util)) ;;;; eof