Mercurial > hg > amuse
comparison base/database/classes.lisp @ 216:e1842efb1dd4
amuse-database-admin add implementation and dataset functionality
Ignore-this: 787cc01acf2d6a58640fec017de16c17
darcs-hash:20090716145807-16a00-6fe5ad4a2b6252b2c1f3d109a16455bb32243965.gz
committer: Jamie Forth <j.forth@gold.ac.uk>
author | j.forth <j.forth@gold.ac.uk> |
---|---|
date | Thu, 24 Feb 2011 11:23:18 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
215:4eceac78e7c6 | 216:e1842efb1dd4 |
---|---|
1 (cl:in-package #:amuse-database-admin) | |
2 | |
3 (defclass amuse-dataset-identifier (identifier) | |
4 ((dataset-id :reader dataset-id | |
5 :initarg :dataset-id)) | |
6 (:documentation "A dataset is a set of pieces used for a particualar | |
7 analytical task. A dataset is not necessarily the same thing as a | |
8 corpus or collection (are these things different?). Corpus indicates | |
9 that a set of pieces have been curated in some way and in that sense | |
10 `belong together'. A dataset is just simply a set of pieces gathered | |
11 together to analyse, and the pieces can be from any corpus or | |
12 backend (hence the amuse- prefix")) | |
13 | |
14 (defclass amuse-dataset (list-slot-sequence) | |
15 ((identifier :initarg :identifier | |
16 :reader identifier) | |
17 (description :initarg :description | |
18 :reader description))) |