j@287: (cl:in-package #:amuse-database-admin) j@287: j@287: (defclass amuse-dataset-identifier (identifier) j@287: ((dataset-id :reader dataset-id j@287: :initarg :dataset-id)) j@287: (:documentation "A dataset is a set of pieces used for a particualar j@287: analytical task. A dataset is not necessarily the same thing as a j@287: corpus or collection (are these things different?). Corpus indicates j@287: that a set of pieces have been curated in some way and in that sense j@287: `belong together'. A dataset is just simply a set of pieces gathered j@287: together to analyse, and the pieces can be from any corpus or j@287: backend (hence the amuse- prefix")) j@287: j@287: (defclass amuse-dataset (list-slot-sequence) j@287: ((identifier :initarg :identifier j@287: :reader identifier) j@287: (description :initarg :description j@287: :reader description)))