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