removing liblispstat. We don't need this anymore, code is worn out
[CommonLispStat.git] / TODO.org
blob3956657a323c1ecf0179194c046a059634bf1709
2 Time-stamp: <2012-10-04 04:10:12 tony>
3 Creation:   <2008-09-08 08:06:30 tony>
5 * Intro and Metadata
7 File:       TODO.lisp
8 Author:     AJ Rossini <blindglobe@gmail.com>
9 Copyright:  (c) 2007-2010, AJ Rossini <blindglobe@gmail.com>.  BSD.
10 Purpose:    Stuff that needs to be made working sits inside the
11             Task sections.
13             This file contains the current challenges to solve,
14             including a description of the setup and the work to
15             solve.  Solutions welcome.
17 What is this talk of 'release'? Klingons do not make software
18 'releases'.  Our software 'escapes', leaving a bloody trail of
19 designers and quality assurance people in its wake.
21 * Design Documentation
23 This section provides some of the details regarding infrastructure of
24 the system, as a means of including TODO statements.
26 ** (Internal) Package and (External) System Hierarchy
28 current (possibly incomplete) set of lisp dependencies <2012-10-04 Thu>
30  0  ~/sandbox/xarray.git
31  1  ~/sandbox/foreign-numeric-vector.git
32  2  ~/sandbox/trivial-features.git
33  3  ~/sandbox/alexandria.git
34  4  ~/sandbox/babel.git
35  5  ~/sandbox/cffi.git
36  6  ~/sandbox/cl-utilities
37  7  ~/sandbox/metabang-bind.git
38  8  ~/sandbox/iterate.git
39  9  ~/sandbox/array-operations.git
42 *** Singletons (primary building blocks)
43     
44     These are packages as well as 
46     | asdf          | common system loader                          |
47     | xarray        | common access structure to array-like         |
48     |               | (matrix, vector) structures.                  |
49     | cls-config    | initialization of Lisp state, variables, etc, |
50     |               | localization to the particular lisp.          |
51     | lift          | unit-testing                                  |
52     | cffi          | foriegn function library                      |
53     | alexandria    |                                               |
54     | babel         |                                               |
55     | iterate       |                                               |
56     | metabang-bind |                                               |
58     as of now, all are in QL heirarchy
60 *** Dependency structure
62     | lisp-matrix     | general purpose matrix package, linking to lapack |      |
63     |                 | for numerics. Depends on:                         |      |
64     |                 | ffa                                               | cffi |
65     |                 | fnv                                               | cffi |
66     |                 | cl-blapack                                        | cffi |
67     |                 | xarray                                            |      |
68     | cls-dataframe   | in the same spirit as lisp-matrix, a means to     |      |
69     |                 | create tables.  Perhaps better called datatables? |      |
70     | cls-probability | depends on gsll, cl-variates, cl-? initially,     |      |
72 *** Need to integrate
74 **** Random number streams and probability calculus
77      Something for random numbers, that has a settable seed.  However,
78      we could pass on the "right thing" in favor of something that
79      will "work for now".  
80      cl-randist
82 **** import of data in text files
84      CSV and similar specialized imports
86      rsm-string
88 **** Graphics
90      ?? cl-2d  : 
91                cl-cairo2 : cffi
93      ?? cl-plplot : cffi
96 * Tasks to Do [4/21]
98   Usually, we need to load it before going on.
100 #+name: loadit
101 #+begin_src lisp
102       (ql:quickload :cls)
103 #+end_src
105   though sometimes we might want to recompile fully.  (Can this be
106   done via QL?  Need to check)
108 #+name: compile-it-all
109 #+begin_src lisp
110   (asdf:oos 'asdf:compile-op :cls :force T)
111 #+end_src
114 ** DONE [#B] SET UP
115    - State "DONE"       from "CURR"       [2010-10-12 Tue 13:48] \\
116      setup is mostly complete
117    - State "CURR"       from "TODO"       [2010-10-12 Tue 13:47]
118    - State "TODO"       from ""           [2010-10-12 Tue 13:47]
119    This is an example of a custom setup, not really interesting at
120    this point except to remind Tony how to program.
121 #+name: loader
122 #+begin_src lisp
123   (in-package :cl-user)
124   (progn 
125     (defun init-CLS (&key (compile 'nil))
126       (let ((packagesToLoad (list ;; core system
127                                   :lift :lisp-matrix :cls
128                                   ;; visualization
129                                   ;; :cl-cairo2-x11 :iterate
130                                   :cl-2d
131                                   ;; doc reporting
132                                   :cl-pdf :cl-typesetting
133                                   ;;INFRA
134                                   :asdf-system-connections :xarray
135                                   ;;DOCS
136                                   :metatilities-base :anaphora :tinaa
137                                   :cl-ppcre :cl-markdown :docudown
138                                   ;; version and validate CLOS objects
139                                   ;; :versioned-objects :validations
140                                   ;;VIZ
141                                   ;; :cl-opengl
142                                   ;; :cl-glu :cl-glut :cl-glut-examples
143   
144                                   :bordeaux-threads
145                                   ;; :cells :cells-gtk
146                                   )))
147         (mapcar #'(lambda (x)
148                     (if compile
149                         (asdf:oos 'asdf:compile-op x :force T)
150                         (asdf:oos 'asdf:load-op x)))
151                 packagesToLoad)))
152   
153     (init-CLS)) ;; vs (init-CLS :compile T)
154 #+end_src
156 #+results:
157 |   | #<PACKAGE "COMMON-LISP-USER"> |
159 ** TODO [#A] Integrate with quicklist support.
160    - State "TODO"       from ""           [2010-11-30 Tue 18:00]
161    
162    important to merge with quicklisp system loader support.
163 ** CURR [#A] Testing: unit, regression, examples. [0/3]
164    - State "CURR"       from "TODO"       [2010-10-12 Tue 13:51]
165    - State "TODO"       from ""           [2010-10-12 Tue 13:51]
166    Testing consists of unit tests, which internally verify subsets of
167    code, regression tests, and functional tests (in increasing order
168    of scale).
169 *** CURR [#B] Unit tests
170     - State "CURR"       from "TODO"       [2010-11-04 Thu 18:33]
171    - State "CURR"       from "TODO"       [2010-10-12 Tue 13:48]
172    - State "TODO"       from ""           [2010-10-12 Tue 13:48]
173    Unit tests have been started using LIFT.  Need to consider some of
174    the other systems that provide testing, when people add them to the
175    mix of libraries that we need, along with examples of how to use.
177 #+name: ex-cls-unittest
178 #+begin_src lisp
179   (in-package :lisp-stat-unittests)
180   (run-tests :suite 'lisp-stat-ut)
181 #+end_src
183 #+results:
184 : #<Results for LISP-STAT-UT 78 Tests, 7 Failures, 20 Errors>
186   ;; => tests = 78, failures = 7, errors = 20
190 The following needs to be solved in order to have a decent
191 installation qualification (IQ) and performance qualification (PQ)
193 #+name: cls-unittest
194 #+begin_src lisp
195   (in-package :lisp-stat-unittests)
196   (asdf:oos 'asdf:test-op 'cls)
197   ;; which runs (describe (run-tests :suite 'lisp-stat-ut))
198 #+end_src
202    and check documentation to see if it is useful.
203 #+name: unittest-ex
204 #+begin_src lisp
205    (in-package :lisp-stat-unittests)
207    (describe 'lisp-stat-ut)
208    (documentation 'lisp-stat-ut 'type)
210    ;; FIXME: Example: currently not relevant, yet
211    ;;   (describe (lift::run-test :test-case  'lisp-stat-unittests::create-proto
212    ;;                             :suite 'lisp-stat-unittests::lisp-stat-ut-proto))
214    (describe (lift::run-tests :suite 'lisp-stat-ut-dataframe))
215    (lift::run-tests :suite 'lisp-stat-ut-dataframe)
217    (describe (lift::run-test
218                :test-case  'lisp-stat-unittests::create-proto
219                :suite 'lisp-stat-unittests::lisp-stat-ut-proto))
220 #+end_src
222 *** TODO [#B] Regression Tests
223     - State "TODO"       from ""           [2010-10-12 Tue 13:54]
225 *** TODO [#B] Functional Tests
226     - State "TODO"       from ""           [2010-10-12 Tue 13:54]
228 ** CURR [#B] Functional Examples that need to work [1/3]
229    - State "CURR"       from "TODO"       [2010-11-30 Tue 17:57]
230    - State "TODO"       from ""           [2010-10-12 Tue 13:55]
232    These examples should be functional forms within CLS, describing
233    working functionality which is needed for work.
234 *** TODO [#A] Dataframe creation
235     Illustration via a file, that we need to get working so that we
236     can get data in-and-out of CLS structures.
238 #+BEGIN_SRC lisp :export examples/example-DF-creation.lisp
239   ;;; -*- mode: lisp -*-
240   ;;; Copyright (c) 2006-2012, by A.J. Rossini <blindglobe@gmail.com>
241   ;;; See COPYRIGHT file for any additional restrictions (BSD license).
242   ;;; Since 1991, ANSI was finally finished.  Edited for ANSI Common Lisp. 
243   
244   ;;; Time-stamp: <2012-10-04 02:16:45 tony>
245   ;;; Creation:   <2012-07-01 11:29:42 tony>
246   ;;; File:       example.lisp
247   ;;; Author:     AJ Rossini <blindglobe@gmail.com>
248   ;;; Copyright:  (c) 2012, AJ Rossini.  BSD.
249   ;;; Purpose:    example of possible usage.
250   
251   ;;; What is this talk of 'release'? Klingons do not make software
252   ;;; 'releases'.  Our software 'escapes', leaving a bloody trail of
253   ;;; designers and quality assurance people in its wake.
254   
255   
256   ;; Load system
257   (ql:quickload "cls")
258   
259   ;; use the example package...
260   (in-package :cls-user)
261   
262   
263   ;; or better yet, create a package/namespace for the particular problem being attacked.
264   (defpackage :my-package-user
265     (:documentation "demo of how to put serious work should be placed in
266       a similar package elsewhere for reproducibility.  This hints as to
267       what needs to be done for a user- or analysis-package.")
268     (:nicknames :my-clswork-user)
269     (:use :common-lisp ; always needed for user playgrounds!
270           :lisp-matrix ; we only need the packages that we need...
271           :common-lisp-statistics
272           :lisp-stat-data-examples) ;; this ensures access to a data package
273     (:export summarize-data summarize-results this-data this-report)
274     (:shadowing-import-from :lisp-stat call-method call-next-method
275   
276         expt + - * / ** mod rem abs 1+ 1- log exp sqrt sin cos tan
277         asin acos atan sinh cosh tanh asinh acosh atanh float random
278         truncate floor ceiling round minusp zerop plusp evenp oddp 
279         < <= = /= >= > > ;; complex
280         conjugate realpart imagpart phase
281         min max logand logior logxor lognot ffloor fceiling
282         ftruncate fround signum cis
283   
284         <= float imagpart)) 
285   
286   (in-package :my-clswork-user)
287   
288   ;; create some data by hand using arrays, and demonstrate access. 
289   
290   (let ((myArray #2A((1 2 3)(4 5 6)))
291         (myDF    (make-dataframe #2A((1 2 3)(4 5 6))))
292         (myLOL   (list (list 1 2 3) (list 4 5 6)))
293         ;; FIXME: listoflist conversion does not work.
294         ;; (myDFlol (make-dataframe  '(list ((1 2 3)(4 5 6)))))
295         )
296   
297     (= (xref myArray 1 1)
298        (xref myDF    1 1)
299        (xref myLOL   1 1)))
300   
301 #+END_SRC
302 *** TODO [#B] Scoping with datasets
303     - State "TODO"       from ""           [2010-11-04 Thu 18:46]
305     The following needs to work, and a related syntax for resampling
306     and similar synthetic data approaches (bootstrapping, imputation)
307     ought to use similar syntax as well.
308 #+name: DataSetNameScoping
309 #+begin_src lisp
310   (in-package :ls-user)
311   (progn
312     ;; Syntax examples using lexical scope, closures, and bindings to
313     ;; ensure a clean communication of results
314     ;; This is actually a bit tricky, since we need to clarify whether
315     ;; it is line-at-a-time that we are considering or if there is
316     ;; another mapping strategy.  In particular, one could imagine a
317     ;; looping-over-observations function, or a
318     ;; looping-over-independent-observations function which leverages a
319     ;; grouping variable which provides guidance for what is considered
320     ;; independent from the sampling frame being considered. The frame
321     ;; itself (definable via some form of metadata to clarify scope?)
322     ;; could clearly provide a bit of relativity for clarifying what
323     ;; statistical independence means.
324     
325     (with-data dataset ((dsvarname1 [usevarname1])
326                         (dsvarname2 [usevarname2]))
327         @body)
328   
329     ;; SAS-centric approach to spec'ing work 
330     (looping-over-observations
331        dataset ((dsvarname1 [usevarname1])
332                 (dsvarname2 [usevarname2]))
333          @body)
334   
335     ;; SAS plus "statistical sensibility"... for example, if an
336     ;; independent observation actually consists of many observations so
337     ;; that a dataframe of independence results -- for example,
338     ;; longitudinal data or spatial data or local-truncated network data
339     ;; are clean examples of such happening -- then we get the data
340     ;; frame or row representing the independent result.
341     (looping-over-independent-observations
342        dataset independence-defining-variable
343          ((dsvarname1 [usevarname1])
344           (dsvarname2 [usevarname2]))
345          @body)
346     )
347 #+end_src
349 *** DONE [#B] Dataframe variable typing
350     - State "DONE"       from "CURR"       [2010-11-30 Tue 17:56] \\
351       check-type approach works, we would just have to throw a catchable
352       error if we want to use it in a reliable fashion.
353     - State "CURR"       from "TODO"       [2010-11-30 Tue 17:56]
354     - State "TODO"       from ""           [2010-11-04 Thu 18:48]
356     Seems to generally work, need to ensure that we use this for
357     appropriate typing.
359 #+name: DFvarTyping
360 #+begin_src lisp
361   (in-package :ls-user)
362   (defparameter *df-test*
363     (make-instance 'dataframe-array
364                    :storage #2A (('a "test0" 0 0d0)
365                                  ('b "test1" 1 1d0)
366                                  ('c "test2" 2 2d0)
367                                  ('d "test3" 3 3d0)
368                                  ('e "test4" 4 4d0))
369                    :doc "test reality"
370                    :case-labels (list "0" "1" 2 "3" "4")
371                    :var-labels (list "symbol" "string" "integer" "double-float")
372                    :var-types (list 'symbol 'string 'integer 'double-float)))
373   
374   ;; with SBCL, ints become floats?  Need to adjust output
375   ;; representation appropriately..
376   ,*df-test* 
377   
378   (defun check-var (df colnum)
379     (let ((nobs (xdim (dataset df) 0)))
380       (dotimes (i nobs)
381         (check-type (xref df i colnum) (elt (var-types df) i)))))
382   
383   (xdim (dataset *df-test*) 1)
384   (xdim (dataset *df-test*) 0)
385   
386   (check-var *df-test* 0)
387   
388   (class-of
389     (xref *df-test* 1 1))
390   
391   (check-type (xref *df-test* 1 1)
392               string) ;; => nil, so good.
393   (check-type (xref *df-test* 1 1)
394               vector) ;; => nil, so good.
395   (check-type (xref *df-test* 1 1)
396               real) ;; => simple-error type thrown, so good.
397   
398   ;; How to nest errors within errors?
399   (check-type (check-type (xref *df-test* 1 1) real) ;; => error thrown, so good.
400               simple-error)
401   (xref *df-test* 1 2)
402   
403   (check-type *df-test*
404               dataframe-array) ; nil is good.
405   
406   (integerp (xref *df-test* 1 2))
407   (floatp (xref *df-test* 1 2))
408   (integerp (xref *df-test* 1 3))
409   (type-of (xref *df-test* 1 3))
410   (floatp (xref *df-test* 1 3))
411   
412   (type-of (vector 1 1d0))
413   (type-of *df-test*)
414   
415   (xref *df-test* 2 1)
416   (xref *df-test* 0 0)
417   (xref *df-test* 1 0)
418   (xref *df-test* 1 '*)
419 #+end_src
420   
421 ** CURR [#A] Random Numbers [2/6]
422    - State "CURR"       from "TODO"       [2010-11-05 Fri 15:41]
423    - State "TODO"       from ""           [2010-10-14 Thu 00:12]
425    Need to select and choose a probability system (probability
426    functions, random numbers).  Goal is to have a general framework
427    for representing probability functions, functionals on
428    probabilities, and reproducible random streams based on such
429    numbers. 
430 *** CURR [#B] CL-VARIATES system evaluation [2/3]
431     - State "CURR"       from "TODO"       [2010-11-05 Fri 15:40]
432     - State "TODO"       from ""           [2010-10-12 Tue 14:16]
433     
434     CL-VARIATES is a system developed by Gary W King.  It uses streams
435     with seeds, and is hence reproducible.  (Random comment: why do CL
436     programmers as a class ignore computational reproducibility?)
438     The main problem with this system is licensing.  It has a weird
439     licensing schema which prevents 
441 #+name: Loading-CL-VARIATES
442 #+begin_src lisp
443   (in-package :cl-user)
444   (ql:quickload :cl-variates)
445   ;;(ql:quickload :cl-variates-test)
446 #+end_src
448 #+name: CL-VARIATES-UNITTESTS
449 #+begin_src lisp
450   (in-package :cl-variates-test)
451   ;; check tests
452   (run-tests :suite 'cl-variates-test)
453   (describe (run-tests :suite 'cl-variates-test))
454 #+end_src
456     basic example of reproducible draws from the uniform and normal
457     random number streams.
459 #+name: CL-VARIATES-REPRO
460 #+begin_src lisp
461   
462   (in-package :cl-variates-user)
463   
464   (defparameter state (make-random-number-generator))
465   (setf (random-seed state) 44)
466   
467   (random-seed state)
468   (loop for i from 1 to 10 collect
469                     (random-range state 0 10))
470   ;; => (1 5 1 0 7 1 2 2 8 10)
471   (setf (random-seed state) 44)
472   (loop for i from 1 to 10 collect
473                     (random-range state 0 10))
474   ;; => (1 5 1 0 7 1 2 2 8 10)
475   
476   (setf (random-seed state) 44)
477   (random-seed state)
478   (loop for i from 1 to 10 collect
479                     (normal-random state 0 1))
480   ;; => 
481   ;; (-1.2968656102820426 0.40746363934173213 -0.8594712469518473 0.8795681301148328
482   ;;  1.0731526250004264 -0.8161629082481728 0.7001813608754809 0.1078045427044097
483   ;;  0.20750134211656893 -0.14501914108452274)
484   
485   (setf (random-seed state) 44)
486   (loop for i from 1 to 10 collect
487                     (normal-random state 0 1))
488   ;; => 
489   ;; (-1.2968656102820426 0.40746363934173213 -0.8594712469518473 0.8795681301148328
490   ;;  1.0731526250004264 -0.8161629082481728 0.7001813608754809 0.1078045427044097
491   ;;  0.20750134211656893 -0.14501914108452274)
492   
493 #+end_src
495 **** CURR [#B] Full example of general usage 
496      - State "CURR"       from "TODO"       [2010-11-05 Fri 15:40]
497      - State "TODO"       from ""           [2010-11-05 Fri 15:40]
499      What we want to do here is describe the basic available API that
500      is present.  So while the previous work describes what the basic
501      reproducibility approach would be in terms of generating lists of
502      reproducible pRNG streams, we need the full range of possible
503      probability laws that are present. 
505      One of the good things about cl-variates is that it provides for
506      reproducibility.  One of the bad things is that it has a mixed
507      bag for an API.
509 *** TODO [#B] CL-RANDOM system evaluation
510     - State "TODO"       from ""           [2010-11-05 Fri 15:40]
512     Problems:
513     1. no seed setting for random numbers
514     2. contamination of a probability support with optimization and
515        linear algebra.
517     Positives:
518     1. good code
519     2. nice design for generics.
520        
521 *** TODO [#B] Native CLS (from XLS)
522     - State "TODO"       from ""           [2010-11-05 Fri 15:40]
523       
524 ** TODO [#B] Numerical Linear Algebra
525    - State "TODO"       from ""           [2010-10-14 Thu 00:12]
527 *** TODO [#B] LLA evaluation
528     - State "TODO"       from ""           [2010-10-12 Tue 14:13]
530 LLA is an SBCL targetted linear algebra library from Tamas Papp
532 #+NAME LLA-experiments
533 #+BEGIN_SRC lisp
534 (in-package :cl-user)
535 (asdf:oos 'asdf:load-op 'lla)
536 (in-package :lla-user)
537 ;;; experiment here
538 #+END_SRC
540 *** CURR [#B] Lisp-Matrix system evaluation
541     - State "CURR"       from "TODO"       [2010-10-12 Tue 14:13]
542     - State "TODO"       from ""           [2010-10-12 Tue 14:13]
544       in progress
546 *** TODO [#B] LispLab system evaluation
547     - State "TODO"       from ""           [2010-10-12 Tue 14:13]
549 LL is an SBCL targetted linear algebra library from ---
551 ** TODO [#B] Statistical Procedures to implement
552    - State "TODO"       from ""           [2010-10-14 Thu 00:12]
554 *** TODO [#C] PFIM 
556 #+BEGIN_SRC lisp
558 (in-package :cls-user)
559 ;;;; PFIM notes
561 ;; PFIM 3.2 
563 ;; population design eval and opt
564 #| 
565 issues: 
566 - # individuals
567 - # sampling times
568 - sampling times?
570 constraints:
571 number of samples/cost of lab analysis and collection
572 expt constraints
575 (defun pfim (&key model ( constraints ( summary-function )
577   (list num-subjects num-times list-times))))
580 N individuals i
581 Each individal has a deisgn psi_i
582    nubmer of samples n_i and sampling times t_{i{1}} t_{i{n_1}}
583    individuals can differ
585 Model:
587 individual-level model 
590 (=model y_i (+ (f \theta_i \psi_i) epsilion_i ))
591 (=var \epsilion_i \sigma_between \sigma_within  )
593 ;; Information Matrix for pop deisgn 
595 (defparameter IM (sum  (i 1 N) (MF \psi_i \phi_i)))
598 For nonlinear structureal models, expand around RE=0
600 Cramer-Rao : MF^{-1} is lower bound for estimation variance.
602 Design comparisons: 
604 - smallest SE, but is a matrix, so
605 - criteria for matrix comparison
606 -- D-opt, (power (determinant MF) (/ 1 P))
609 find design maxing D opt, (power (determinant MF) (/ 1 P))
610 Design varialables 
611  -- contin vars for smapling times within interval or set -- number of groups for cat vars
613 Stat in Med 2009, expansion around post-hoc RE est, not necessarily zero.
615 Example binary covariate C
618 (if (= i reference-class) 
619     (setf (aref C i) 0)
620     (setf (aref C i) 1))
622 ;; Exponential RE,
623 (=model (log \theta) (  ))
625 ;; extensions
627 ;; outputs
630 PFIM provides for a given design and values of \beta: 
631  compute extended FIM
632  SE/RSE for \beta of each class of each covar
633  eval influence of design on SE(\beta)
635 inter-occassion variability (IOV)
636 - patients sampled more than once, H occassions
637 - RE for IOV
638 - additional vars to estimate
642 ;;; comparison criteria
644 functional of conc/time curve which is used for comparison, i.e. 
645 (AUC conc/time-curve)
646 (Cmax conc/time-curve)
647 (Tmax conc/time-curve)
649 where 
651 (defun conc/time-curve (t) 
652   ;; computation
653 #| 
654   (let ((conc (exp (* t \beta1))))
655      conc)
657   )
659 ;;See
660 (url-get "www.pfim.biostat.fr")
663 ;;; Thinking of generics...
664 (information-matrix model parameters)
665 (information-matrix variance-matrix)
666 (information-matrix model data)
667 (information-matrix list-of-individual-IMs)
670 (defun IM (loglikelihood parameters times)
671   "Does double work.  Sum up the resulting IMs to form a full IM."
672   (let ((IM (make-matrix (length parameters)
673                          (length parameters)
674                          :initial-value 0.0d0)))
675     (dolist (parameterI parameters)
676       (dolist (parameterJ parameters)
677         (setf (aref IM I J)
678               (differentiate (differentiate loglikelihood parameterI) parameterJ))))))
679 #+END_SRC
681 *** difference between empirical, fisherian, and ...? information.
682 *** TODO [#C] Example of Integration with CL-GENOMIC
683     - State "TODO"       from ""           [2010-10-12 Tue 14:03]
684     
685     CL-GENOMIC is a very interesting data-structure strategy for
686     manipulating sequence data.
688 #+name: CL-GENOMIC
689 #+begin_src lisp
690     (in-package :cl-user)
691     (asdf:oos 'asdf:compile-op :ironclad)
692     (asdf:oos 'asdf:load-op :cl-genomic)
694     (in-package :bio-sequence)
695     (make-dna "agccg") ;; fine
696     (make-aa "agccg")  ;; fine
697     (make-aa "agc9zz") ;; error expected
698 #+end_src
701 ** TODO [#B] Documentation and Examples [0/3]
702    - State "TODO"       from ""           [2010-10-14 Thu 00:12]
704 *** TODO [#B] Docudown
705     - State "TODO"       from ""           [2010-11-05 Fri 15:34]
707 *** TODO [#A] CLDOC
708     - State "TODO"       from ""           [2010-11-05 Fri 15:34]
710 *** TODO [#B] CLPDF, and literate data analysis
711     - State "TODO"       from ""           [2010-11-05 Fri 15:34]
713 * Proposals
714   Place proposals for features, work, etc here...
715 ** <2011-12-29 Thu> new stuff
716    First new proposal is to track proposals.
718 * Rejoinder
720   This project is dedicated to all the lisp hackers out there who
721   provided the basic infrastructure to get so far so fast with minimal
722   effort on my part.
724   And to all the people trying to help to get this off the ground.