NAME

OME::Project - a collection of datasets

Back to Top


DESCRIPTION

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".

Back to Top


METHODS (Project)

The following methods are available to Project in addition to those defined by the OME::DBObject manpage.

name

        my $name = $project->name();
        $project->name($name);

Returns or sets the name of this project.

description

        my $description = $project->description();
        $project->description($description);

Returns or sets the description of this project.

owner

        my $owner = $project->owner();
        $project->owner($owner);

Returns or sets the owner of this project.

group

        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.

Back to Top