use Bio::MAGE::Description::DatabaseEntry;
# creating an empty instance my $databaseentry = Bio::MAGE::Description::DatabaseEntry->new();
# creating an already populated instance my $databaseentry = Bio::MAGE::Description::DatabaseEntry->new(URI=>$URI_value, accession=>$accession_value, accessionVersion=>$accessionVersion_value, database=>$database_value, type=>$type_value);
# setting and retrieving object attributes my $URI_val = $databaseentry->URI(); $databaseentry->URI($value);
my $accession_val = $databaseentry->accession(); $databaseentry->accession($value);
my $accessionVersion_val = $databaseentry->accessionVersion(); $databaseentry->accessionVersion($value);
# setting and retrieving object associations my $database_val = $databaseentry->database(); $databaseentry->database($value);
my $type_val = $databaseentry->type(); $databaseentry->type($value);
From the MAGE-OM documentation for the DatabaseEntry
class:
A reference to a record in a database.
Bio::MAGE::Description::DatabaseEntry has the following super classes
The following methods can all be called without first having an
instance of the class via the Bio::MAGE::Description::DatabaseEntry->methodname()
syntax.
new()
new(%args)
new()
accepts the following optional
named-value style arguments:
Bio::MAGE::Description::DatabaseEntry
).
Bio::MAGE::Description::DatabaseEntry
).
Bio::MAGE::Description::DatabaseEntry
).
Bio::MAGE::Description::DatabaseEntry
).
Bio::MAGE::Description::DatabaseEntry
).
Bio::MAGE::Extendable
).
set_slots(%parameters)
set_slots()
method is used to set a number of slots at the same
time. It has two different invocation methods. The first takes a named
parameter list, and the second takes two array references.
Return value: none
Side effects: will call croak()
if a slot_name is used that the class
does not define.
get_slots(@name_list)
get_slots()
method is used to get the values of a number of
slots at the same time.
Return value: a list of instance objects
Side effects: none
set_slot($name,$val)
set_slot()
method sets the slot $name
to the value $val
Return value: the new value of the slot, i.e. $val
Side effects: none
get_slot($name)
get_slot()
method is used to get the values of a number of
slots at the same time.
Return value: a single slot value, or undef if the slot has not been initialized.
Side effects: none
get_slot_names()
get_slot_names()
method is used to retrieve the name of all
slots defined for a given object.
Return value: a single slot value, or undef if the slot has not been initialized.
Side effects: none
class_name()
package()
subclasses()
superclasses()
attribute_methods()
association_methods()
associations()
Bio::MAGE::Association
objects that provide the meta-information for the association.
Attributes are simple data types that belong to a single instance of a class. In the Perl implementation of the MAGE-OM classes, the interface to attributes is implemented using separate setter and getter methods for each attribute.
Bio::MAGE::Description::DatabaseEntry: has the following attribute accessor methods:
URI
attribute:
The location of the record.
setURI($val)
Input parameters: the value to which the URI attribute will be set
Return value: the current value of the URI attribute
Side effects: none
Exceptions: will call croak()
if no input parameters are specified, or
if too many input parameters are specified
getURI()
Input parameters: none
Return value: the current value of the URI attribute
Side effects: none
Exceptions: will call croak()
if any input parameters are specified
accession
attribute:
The identifier used to look up the record.
setAccession($val)
Input parameters: the value to which the accession attribute will be set
Return value: the current value of the accession attribute
Side effects: none
Exceptions: will call croak()
if no input parameters are specified, or
if too many input parameters are specified
getAccession()
Input parameters: none
Return value: the current value of the accession attribute
Side effects: none
Exceptions: will call croak()
if any input parameters are specified
accessionVersion
attribute:
The appropriate version of the accession (if applicable).
setAccessionVersion($val)
Input parameters: the value to which the accessionVersion attribute will be set
Return value: the current value of the accessionVersion attribute
Side effects: none
Exceptions: will call croak()
if no input parameters are specified, or
if too many input parameters are specified
getAccessionVersion()
Input parameters: none
Return value: the current value of the accessionVersion attribute
Side effects: none
Exceptions: will call croak()
if any input parameters are specified
Associations are references to other class objects which can be shared by multiple class instances at the same time. In the Perl implementation of MAGE-OM classes, associations are implemented using three separate methods:
Bio::MAGE::Description::DatabaseEntry: has the following association accessor methods:
database
association:
Reference to the database where the DataEntry instance can be found.
setDatabase($val)
Input parameters: the value to which the database association will be set : an instance of type Bio::MAGE::Description::Database
.
Return value: the current value of the database association : an instance of type Bio::MAGE::Description::Database
.
Side effects: none
Exceptions: will call croak()
if no input parameters are specified, or
if too many input parameters are specified , or if $val is not an instance of class Bio::MAGE::Description::Database
getDatabase()
Input parameters: none
Return value: the current value of the database association : an instance of type Bio::MAGE::Description::Database
.
Side effects: none
Exceptions: will call croak()
if any input parameters are specified
type
association:
The type of record (e.g. a protein in SwissProt, or a yeast strain in SGD).
setType($val)
Input parameters: the value to which the type association will be set : an instance of type Bio::MAGE::Description::OntologyEntry
.
Return value: the current value of the type association : an instance of type Bio::MAGE::Description::OntologyEntry
.
Side effects: none
Exceptions: will call croak()
if no input parameters are specified, or
if too many input parameters are specified , or if $val is not an instance of class Bio::MAGE::Description::OntologyEntry
getType()
Input parameters: none
Return value: the current value of the type association : an instance of type Bio::MAGE::Description::OntologyEntry
.
Side effects: none
Exceptions: will call croak()
if any input parameters are specified
Associations Inherited from Bio::MAGE::Extendable
propertySets
association:
Allows specification of name/value pairs. Meant to primarily help in-house, pipeline processing of instances by providing a place for values that aren't part of the specification proper.
setPropertySets($array_ref)
Input parameters: the value to which the propertySets association will be set : a reference to an array of objects of type Bio::MAGE::NameValueType
Return value: the current value of the propertySets association : a reference to an array of objects of type Bio::MAGE::NameValueType
Side effects: none
Exceptions: will call croak()
if no input parameters are specified, or
if too many input parameters are specified , or if $array_ref is not a reference to an array class Bio::MAGE::NameValueType
instances
getPropertySets()
Input parameters: none
Return value: the current value of the propertySets association : a reference to an array of objects of type Bio::MAGE::NameValueType
Side effects: none
Exceptions: will call croak()
if any input parameters are specified
addPropertySets(@vals)
Input parameters: the list of values @vals
to add to the propertySets
association. NOTE: submitting a single value is permitted.
Return value: none
Side effects: none
Exceptions: will call croak()
if no input parameters are specified
, or if any of the objects in @vals is not an instance of class Bio::MAGE::NameValueType
Please send bug reports to mged-mage@lists.sf.net
Jason E. Stewart (www.openinformatics.com)
perl(1).