Change macro charater to #{
[biolisp.git] / bioinfo.asd
blob9fe6ba9cbb247e334ca10ba1459a27ce2cf6ebac
1 (defpackage #:bioinfo-system
2   (:use :cl :asdf))
4 (in-package #:bioinfo-system)
6 (defsystem :bioinfo  
7   :description "A (hope so) complete system for bioinformatics analysis."
8   :version "0.1"
9   :author "Leonardo Varuzza <varuzza@gmail.com>"
10   :licence "GPL"
11   :depends-on (:cl-ppcre :cl-fad :postmodern :cxml :cl-utilities :lambda-utils :vecto)
12   :serial t
13   :components ((:file "packages")
14                (:file "os")
15                (:file "dataset")
16                (:file "bioinfo")
17                (:file "sagemap")
18                (:module "graphics"
19                         :components ((:file "packages")
20                                      (:file "util")
21                                      (:file "panel")))
22                (:module "cluster"
23                         :components ((:file "packages")
24                                      (:file "distance")))))