OME::Project - a collection of datasets
The Project class represents OME projects, which are a collection
of datasets. Projects and datasets form a many-to-many map, as do
images and datasets. A user's session usually has a single project
selected as the "active project".
Project)The following methods are available to Project in addition to those
defined by the OME::DBObject manpage.
my $name = $project->name();
$project->name($name);
Returns or sets the name of this project.
my $description = $project->description();
$project->description($description);
Returns or sets the description of this project.
my $owner = $project->owner();
$project->owner($owner);
Returns or sets the owner of this project.
my $group = $project->group();
$project->group($group);
Returns or sets the group that this project belongs to.
other methods exist. check out the code to see them.