rosalind.asd @ 23151d9021cf

REVP
author Steve Losh <steve@stevelosh.com>
date Thu, 08 Nov 2018 22:06:36 -0500
parents b3598dc7ef5c
children 7fd1feb477de
(asdf:defsystem :rosalind
  :name "rosalind"
  :description "Rosalind solutions."

  :author "Steve Losh <steve@stevelosh.com>"
  :maintainer "Steve Losh <steve@stevelosh.com>"

  :license "MIT"
  :version "0.0.1"

  :depends-on (

               :1am
               :alexandria
               :cl-digraph
               :cl-ppcre
               :drakma
               :iterate
               :losh
               :str

               )

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components ((:file "utils")
                             (:module "problems"
                              :components (

                                           (:file "cons")
                                           (:file "dna")
                                           (:file "fib")
                                           (:file "fibd")
                                           (:file "gc")
                                           (:file "grph")
                                           (:file "hamm")
                                           (:file "iev")
                                           (:file "iprb")
                                           (:file "lcsm")
                                           (:file "lia")
                                           (:file "mprt")
                                           (:file "mrna")
                                           (:file "orf")
                                           (:file "perm")
                                           (:file "prot")
                                           (:file "prtm")
                                           (:file "revc")
                                           (:file "revp")
                                           (:file "rna")
                                           (:file "splc")
                                           (:file "subs")

                                           ))))))