forked from Bohdan-Khomtchouk/Biochat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
biochat.asd
34 lines (33 loc) · 1.15 KB
/
biochat.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
;;; Biochat system definition
;;; see LICENSE file for permissions
(asdf:defsystem #:biochat
:name "Biochat"
:version (:read-file-line "version.txt")
:author "Bohdan Khomtchouk <[email protected]>, Vsevolod Dyomkin <[email protected]>"
:maintainer "Bohdan Khomtchouk <[email protected]>, Vsevolod Dyomkin <[email protected]>"
:license "MIT license"
:description
"A system to pair, organize, and group together different biological datasets."
:depends-on (#:rutilsx #:drakma #:cl-ppcre #:eager-future2
#:yason #:cl-json #:crawlik #:hunchentoot #:cl-who
#:mgl-mat #:cl-nlp #:cl-nlp-contrib
#:lparallel
#:postmodern #:local-time
#+dev #:should-test)
:components
((:module #:src
:serial t
:components
((:file "hunch")
(:file "package")
(:module "GEO"
:serial t
:components ((:file "util")
(:file "geo")
(:file "search")
(:file "bow")
(:file "doc2vec")
(:file "user")
(:file "filter")))
(:file "db")
(:file "web")))))