create sql module.
[biolisp.git] / graphics / panel.lisp
blob559c3dab285103e43cb893fc7782b030f5ab0e5a
1 (in-package :bio-graphics)
3 (defclass panel ()
4 ((title :initarg :title :accessor title-of)
5 (width :initarg :width :accessor width-of)
6 (height :initarg :height :accessor height-of)
7 (tracks :initarg :tracks :accessor tracks-of))
8 (:documentation "A panel to draw sequence alignment and informations, in the style of Bio::Graphics of bioperl"))