annotate base/datasets/classes.lisp @ 251:6a3adca16910
Refactor dataset stuff out of amuse-database-admin, and add midifile-dataset.
author |
Jamie Forth <j.forth@gold.ac.uk> |
date |
Thu, 24 Feb 2011 11:23:18 +0000 |
parents |
b3260d1d2419 |
children |
|
rev |
line source |
j@251
|
1 (cl:in-package #:amuse-datasets)
|
j@250
|
2
|
j@251
|
3 ;;; Abstract classes for datasets.
|
j@251
|
4
|
j@251
|
5 (defclass dataset-identifier (identifier) ()
|
j@250
|
6 (:documentation "A dataset is a set of pieces used for a particualar
|
j@250
|
7 analytical task. A dataset is not necessarily the same thing as a
|
j@250
|
8 corpus or collection (are these things different?). Corpus indicates
|
j@250
|
9 that a set of pieces have been curated in some way and in that sense
|
j@250
|
10 `belong together'. A dataset is just simply a set of pieces gathered
|
j@250
|
11 together to analyse, and the pieces can be from any corpus or
|
j@251
|
12 backend."))
|
j@250
|
13
|
j@251
|
14 (defclass dataset (list-slot-sequence) ())
|