Bio::Annotation OntologyTerm
SummaryIncluded librariesPackage variablesSynopsisDescriptionGeneral documentationMethods
Summary
Bio::Annotation::OntologyTerm - An ontology term adapted to AnnotationI
Package variables
No package variables defined.
Included modules
Bio::AnnotationI
Bio::Ontology::Term
Bio::Ontology::TermI
Bio::Root::Root
Inherit
Bio::AnnotationI Bio::Ontology::TermI Bio::Root::Root
Synopsis
   use Bio::Annotation::OntologyTerm;
   use Bio::Annotation::Collection;
   use Bio::Ontology::Term;

   my $coll = new Bio::Annotation::Collection;

   # this also implements a tag/value pair, where tag _and_ value are treated
   # as ontology terms
   my $annterm = new Bio::Annotation::OntologyTerm(-label => 'ABC1',
                                                   -tagname => 'Gene Name');
   # ontology terms can be added directly - they implicitly have a tag
   $coll->add_Annotation($annterm);

   # implementation is by composition - you can get/set the term object
   # e.g.
   my $term = $annterm->term(); # term is-a Bio::Ontology::TermI
   print "ontology term ",$term->name()," (ID ",$term->identifier(),
         "), category ",$term->category()->name(),"\n";
   $term = Bio::Ontology::Term->new(-name => 'ABC2', -category => 'Gene Name');
   $annterm->term($term);
Description
Ontology term annotation object
Methods
newDescriptionCode
as_textDescriptionCode
hash_treeDescriptionCode
tagnameDescriptionCode
termDescriptionCode
identifierDescriptionCode
nameDescriptionCode
definitionDescriptionCode
categoryDescriptionCode
is_obsoleteDescriptionCode
commentDescriptionCode
each_synonymDescriptionCode
add_synonymsDescriptionCode
remove_synonymsDescriptionCode
Methods description
newcode    nextTop
 Title   : new
 Usage   : my $sv = new Bio::Annotation::OntologyTerm;
 Function: Instantiate a new OntologyTerm object
 Returns : Bio::Annotation::OntologyTerm object
 Args    : -term => $term to initialize the term data field [optional]
           Most named arguments that Bio::Ontology::Term accepts will work
           here too. -label is a synonym for -name, -tagname is a synonym for
           -category.
as_textcodeprevnextTop
 Title   : as_text
 Usage   : my $text = $obj->as_text
 Function: return the string "Name: $v" where $v is the name of the term
 Returns : string
 Args    : none
hash_treecodeprevnextTop
 Title   : hash_tree
 Usage   : my $hashtree = $value->hash_tree
 Function: For supporting the AnnotationI interface just returns the value
           as a hashref with the key 'value' pointing to the value
 Returns : hashrf
 Args    : none
tagnamecodeprevnextTop
 Title   : tagname
 Usage   : $obj->tagname($newval)
 Function: Get/set the tagname for this annotation value.

           Setting this is optional. If set, it obviates the need to provide
           a tag to AnnotationCollection when adding this object.

           This is aliased to category() here.
 Example : 
 Returns : value of tagname (a scalar)
 Args    : new value (a scalar, optional)
termcodeprevnextTop
 Title   : term
 Usage   : $obj->term($newval)
 Function: Get/set the Bio::Ontology::TermI implementing object.

           We implement TermI by composition, and this method sets/gets the
           object we delegate to.
 Example : 
 Returns : value of term (a Bio::Ontology::TermI compliant object)
 Args    : new value (a Bio::Ontology::TermI compliant object, optional)
identifiercodeprevnextTop
 Title   : identifier
 Usage   : $term->identifier( "0003947" );
           or
           print $term->identifier();
 Function: Set/get for the identifier of this Term.
 Returns : The identifier [scalar].
 Args    : The identifier [scalar] (optional).
namecodeprevnextTop
 Title   : name
 Usage   : $term->name( "N-acetylgalactosaminyltransferase" );
           or
           print $term->name();
 Function: Set/get for the name of this Term.
 Returns : The name [scalar].
 Args    : The name [scalar] (optional).
definitioncodeprevnextTop
 Title   : definition
 Usage   : $term->definition( "Catalysis of ..." );
           or
           print $term->definition();
 Function: Set/get for the definition of this Term.
 Returns : The definition [scalar].
 Args    : The definition [scalar] (optional).
categorycodeprevnextTop
 Title   : category
 Usage   : $term->category( $top );
           or 
           $top = $term->category();
 Function: Set/get for a relationship between this Term and
           another Term (e.g. the top level of the ontology).
 Returns : The category of this Term [TermI].
 Args    : The category of this Term [TermI or scalar -- which
           becomes the name of the catagory term] (optional).
is_obsoletecodeprevnextTop
 Title   : is_obsolete
 Usage   : $term->is_obsolete( 1 );
           or
           if ( $term->is_obsolete() )
 Function: Set/get for the obsoleteness of this Term.
 Returns : the obsoleteness [0 or 1].
 Args    : the obsoleteness [0 or 1] (optional).
commentcodeprevnextTop
 Title   : comment
 Usage   : $term->comment( "Consider the term ..." );
           or 
           print $term->comment();
 Function: Set/get for an arbitrary comment about this Term.
 Returns : A comment.
 Args    : A comment (optional).
each_synonymcodeprevnextTop
 Title   : each_synonym()
 Usage   : @aliases = $term->each_synonym();                 
 Function: Returns a list of aliases of this Term.
 Returns : A list of aliases [array of [scalar]].
 Args    :
add_synonymscodeprevnextTop
 Title   : add_synonyms
 Usage   : $term->add_synonyms( @asynonyms );
           or
           $term->add_synonyms( $synonym );                  
 Function: Pushes one or more synonyms into the list of synonyms.
 Returns : 
 Args    : One synonym [scalar] or a list of synonyms [array of [scalar]].
remove_synonymscodeprevnextTop
 Title   : remove_synonyms()
 Usage   : $term->remove_synonyms();
 Function: Deletes (and returns) the synonyms of this Term.
 Returns : A list of synonyms [array of [scalar]].
 Args    :
Methods code
newdescriptionprevnextTop
sub new {
    my ($class,@args) = @_;
    
    my $self = $class->SUPER::new(@args);
    
    my ($term,$name,$label,$identifier,$definition,$cat,$tag) =
	$self->_rearrange([qw(TERM
			      NAME
			      LABEL
			      IDENTIFIER
			      DEFINITION
			      CATEGORY
			      TAGNAME)],
			  @args);
    if($term) {
	$self->term($term);
    } else {
	$self->name($name || $label) if $name || $label;
	$self->identifier($identifier) if $identifier;
	$self->definition($definition) if $definition;
    }
    $self->category($cat || $tag) if $cat || $tag;

    return $self;
}
as_textdescriptionprevnextTop
sub as_text {
   my ($self) = @_;

   return $self->tagname()."|".$self->name()."|".$self->identifier();
}
hash_treedescriptionprevnextTop
sub hash_tree {
   my ($self) = @_;
   
   my $h = {};
   $h->{'name'} = $self->name();
   $h->{'identifier'} = $self->identifier();
   $h->{'definition'} = $self->definition();
   $h->{'synonyms'} = [$self->each_synonym()];
}
tagnamedescriptionprevnextTop
sub tagname {
    my $self = shift;

    return $self->category(@_) if @_;
    # if in get mode we need to get the name from the category term
my $cat = $self->category(); return ref($cat) ? $cat->name() : $cat;
}
termdescriptionprevnextTop
sub term {
    my ($self,$value) = @_;
    if( defined $value) {
	$self->{'term'} = $value;
    }
    if(! exists($self->{'term'})) {
	$self->{'term'} = Bio::Ontology::Term->new();
    }
    return $self->{'term'};
}
identifierdescriptionprevnextTop
sub identifier {
    return shift->term()->identifier(@_);
} # identifier
}
namedescriptionprevnextTop
sub name {
    return shift->term()->name(@_);
} # name
}
definitiondescriptionprevnextTop
sub definition {
    return shift->term()->definition(@_);
} # definition
}
categorydescriptionprevnextTop
sub category {
    return shift->term()->category(@_);
}
is_obsoletedescriptionprevnextTop
sub is_obsolete {
    return shift->term()->is_obsolete(@_);
} # is_obsolete
}
commentdescriptionprevnextTop
sub comment {
    return shift->term()->comment(@_);
} # comment
}
each_synonymdescriptionprevnextTop
sub each_synonym {
    return shift->term()->each_synonym(@_);
} # each_synonym
}
add_synonymsdescriptionprevnextTop
sub add_synonyms {
    return shift->term()->add_synonyms(@_);
} # add_synonyms
}
remove_synonymsdescriptionprevnextTop
sub remove_synonyms {
    return shift->term()->remove_synonyms(@_);
} # remove_synonyms
}
General documentation
FEEDBACKTop
Mailing ListsTop
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to one
of the Bioperl mailing lists. Your participation is much appreciated.
  bioperl-l@bioperl.org              - General discussion
  http://bio.perl.org/MailList.html  - About the mailing lists
Reporting BugsTop
Report bugs to the Bioperl bug tracking system to help us keep track
the bugs and their resolution. Bug reports can be submitted via email
or the web:
  bioperl-bugs@bioperl.org
  http://bugzilla.bioperl.org/
AUTHOR - Hilmar LappTop
Email bioperl-l@bio.perl.org
Email hlapp at gmx.net
APPENDIXTop
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _
AnnotationI implementing functionsTop
Methods for Bio::Ontology::TermI complianceTop