File Coverage

Bio/Ontology/Ontology.pm
Criterion Covered Total %
statement 76 105 72.3
branch 28 52 53.8
condition 5 12 41.6
subroutine 22 28 78.5
pod 26 26 100.0
total 157 223 70.4


line stmt bran cond sub pod time code
1             #
2             # BioPerl module for Bio::Ontology::Ontology
3             #
4             # Please direct questions and support issues to
5             #
6             # Cared for by Hilmar Lapp
7             #
8             # Copyright Hilmar Lapp
9             #
10             # You may distribute this module under the same terms as perl itself
11              
12             #
13             # (c) Hilmar Lapp, hlapp at gmx.net, 2003.
14             # (c) GNF, Genomics Institute of the Novartis Research Foundation, 2003.
15             #
16             # You may distribute this module under the same terms as perl itself.
17             # Refer to the Perl Artistic License (see the license accompanying this
18             # software package, or see http://www.perl.com/language/misc/Artistic.html)
19             # for the terms under which you may use, modify, and redistribute this module.
20             #
21             # THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
22             # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
23             # MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
24             #
25              
26             # POD documentation - main docs before the code
27              
28             =head1 NAME
29              
30             Bio::Ontology::Ontology - standard implementation of an Ontology
31              
32             =head1 SYNOPSIS
33              
34             use Bio::Ontology::Ontology;
35             use Bio::Ontology::Term;
36              
37             # create ontology object
38             my $ont = Bio::Ontology::Ontology->new(-name => "OBF");
39              
40             # add terms, relationships ...
41             my $bp = Bio::Ontology::Term->new(-identifier => '02', -name => "Bioperl");
42             my $obf = Bio::Ontology::Term->new(-identifier => '01', -name => "OBF");
43             my $partof = Bio::Ontology::RelationshipType->get_instance("PART_OF");
44             $ont->add_term($bp);
45             $ont->add_term($obf);
46             $ont->add_relationship($bp, $obf, $partof);
47              
48             # then query
49             my @terms = $ont->get_root_terms(); # "OBF"
50             my @desc = $ont->get_descendant_terms($terms[0], $partof); # "Bioperl"
51             # ... see methods for other ways to query
52              
53             # for advanced users, you can re-use the query engine outside of an
54             # ontology to let one instance manage multiple ontologies
55             my $ont2 = Bio::Ontology::Ontology->new(-name => "Foundations",
56             -engine => $ont->engine());
57              
58              
59             =head1 DESCRIPTION
60              
61             This is a no-frills implementation of L.
62              
63             The query functions are implemented by delegation to an
64             OntologyEngineI implementation.
65              
66             =head1 FEEDBACK
67              
68             =head2 Mailing Lists
69              
70             User feedback is an integral part of the evolution of this and other
71             Bioperl modules. Send your comments and suggestions preferably to
72             the Bioperl mailing list. Your participation is much appreciated.
73              
74             bioperl-l@bioperl.org - General discussion
75             http://bioperl.org/wiki/Mailing_lists - About the mailing lists
76              
77             =head2 Support
78              
79             Please direct usage questions or support issues to the mailing list:
80              
81             I
82              
83             rather than to the module maintainer directly. Many experienced and
84             reponsive experts will be able look at the problem and quickly
85             address it. Please include a thorough description of the problem
86             with code and data examples if at all possible.
87              
88             =head2 Reporting Bugs
89              
90             Report bugs to the Bioperl bug tracking system to help us keep track
91             of the bugs and their resolution. Bug reports can be submitted via
92             the web:
93              
94             https://github.com/bioperl/bioperl-live/issues
95              
96             =head1 AUTHOR - Hilmar Lapp
97              
98             Email hlapp at gmx.net
99              
100             =head1 APPENDIX
101              
102             The rest of the documentation details each of the object methods.
103             Internal methods are usually preceded with a _
104              
105             =cut
106              
107              
108             # Let the code begin...
109              
110              
111             package Bio::Ontology::Ontology;
112 10     10   36 use strict;
  10         10  
  10         278  
113              
114             # Object preamble - inherits from Bio::Root::Root
115              
116             #use Bio::Ontology::SimpleOntologyEngine; # loaded dynamically now!
117              
118 10     10   60 use base qw(Bio::Root::Root Bio::Ontology::OntologyI Bio::AnnotatableI);
  10         13  
  10         3416  
119              
120             =head2 new
121              
122             Title : new
123             Usage : my $obj = Bio::Ontology::Ontology->new();
124             Function: Builds a new Bio::Ontology::Ontology object
125             Returns : an instance of Bio::Ontology::Ontology
126             Args : any number of named arguments. The following names will be
127             recognized by this module:
128              
129             -name the name of the ontology
130             -authority the name of the authority for the ontology
131             -identifier an identifier for the ontology, if any
132             -engine the Bio::Ontology::OntologyEngineI
133             implementation that this instance should use;
134             default is Bio::Ontology::SimpleOntologyEngine
135              
136             See the corresponding get/set methods for further documentation
137             on individual properties.
138              
139             =cut
140              
141             sub new {
142 39     39 1 315 my($class,@args) = @_;
143              
144 39         127 my $self = $class->SUPER::new(@args);
145 39         163 my ($name,$auth,$def,$id,$engine) =
146             $self->_rearrange([qw(NAME
147             AUTHORITY
148             DEFINITION
149             IDENTIFIER
150             ENGINE)
151             ],
152             @args);
153 39 100       143 defined($name) && $self->name($name);
154 39 50       65 defined($auth) && $self->authority($auth);
155 39 50       66 defined($def) && $self->definition($def);
156 39 50       58 defined($id) && $self->identifier($id);
157 39 100       76 defined($engine) && $self->engine($engine);
158              
159 39         72 return $self;
160             }
161              
162             =head1 Methods from L
163              
164             =cut
165              
166             =head2 name
167              
168             Title : name
169             Usage : $obj->name($newval)
170             Function: Get/set the name of the ontology.
171             Example :
172             Returns : value of name (a scalar)
173             Args : on set, new value (a scalar or undef, optional)
174              
175              
176             =cut
177              
178             sub name{
179 1474     1474 1 3799 my $self = shift;
180              
181 1474 100       1842 return $self->{'name'} = shift if @_;
182 1435         2627 return $self->{'name'};
183             }
184              
185             =head2 authority
186              
187             Title : authority
188             Usage : $obj->authority($newval)
189             Function: Get/set the authority for this ontology, for instance the
190             DNS base for the organization granting the name of the
191             ontology and identifiers for the terms.
192              
193             This attribute is optional and should not generally
194             expected by applications to have been set. It is here to
195             follow the rules for namespaces, which ontologies serve as
196             for terms.
197              
198             Example :
199             Returns : value of authority (a scalar)
200             Args : on set, new value (a scalar or undef, optional)
201              
202              
203             =cut
204              
205             sub authority{
206 0     0 1 0 my $self = shift;
207              
208 0 0       0 return $self->{'authority'} = shift if @_;
209 0         0 return $self->{'authority'};
210             }
211              
212             =head2 definition
213              
214             Title : definition
215             Usage : $obj->definition($newval)
216             Function: Get/set a descriptive definition of the ontology.
217             Example :
218             Returns : value of definition (a scalar)
219             Args : on set, new value (a scalar or undef, optional)
220              
221              
222             =cut
223              
224             sub definition{
225 0     0 1 0 my $self = shift;
226              
227 0 0       0 return $self->{'definition'} = shift if @_;
228 0         0 return $self->{'definition'};
229             }
230              
231             =head2 identifier
232              
233             Title : identifier
234             Usage : $id = $obj->identifier()
235             Function: Get an identifier for this ontology.
236              
237             This is primarily intended for look-up purposes. The value
238             is not modifiable and is determined automatically by the
239             implementation. Also, the identifier's uniqueness will only
240             hold within the scope of a particular application's run
241             time since it is derived from a memory location.
242              
243             Example :
244             Returns : value of identifier (a scalar)
245             Args :
246              
247              
248             =cut
249              
250             sub identifier{
251 0     0 1 0 my $self = shift;
252              
253 0 0       0 if(@_) {
254             $self->throw("cannot modify identifier for ".ref($self))
255 0 0       0 if exists($self->{'identifier'});
256 0         0 my $id = shift;
257 0 0       0 $self->{'identifier'} = $id if $id;
258             }
259 0 0       0 if(! exists($self->{'identifier'})) {
260 0         0 ($self->{'identifier'}) = "$self" =~ /(0x[0-9a-fA-F]+)/;
261             }
262 0         0 return $self->{'identifier'};
263             }
264              
265             =head2 close
266              
267             Title : close
268             Usage :
269             Function: Release any resources this ontology may occupy. In order
270             to efficiently release unused memory or file handles, you
271             should call this method once you are finished with an
272             ontology.
273              
274             Example :
275             Returns : TRUE on success and FALSE otherwise
276             Args : none
277              
278              
279             =cut
280              
281             sub close{
282 0     0 1 0 my $self = shift;
283              
284             # if it is in the ontology store, remove it from there
285 0         0 my $store = Bio::Ontology::OntologyStore->get_instance();
286 0         0 $store->remove_ontology($self);
287             # essentially we need to dis-associate from the engine here
288 0         0 $self->engine(undef);
289 0         0 return 1;
290             }
291              
292             =head1 Implementation-specific public methods
293              
294             =cut
295              
296             =head2 engine
297              
298             Title : engine
299             Usage : $engine = $obj->engine()
300             Function: Get/set the ontology engine to which all the query methods
301             delegate.
302             Example :
303             Returns : an object implementing Bio::Ontology::OntologyEngineI
304             Args : on set, new value (an object implementing
305             Bio::Ontology::OntologyEngineI, or undef)
306              
307             See L.
308              
309             =cut
310              
311             sub engine{
312 134     134 1 2564 my $self = shift;
313              
314 134 100       405 if (@_) {
    50          
315 10         12 my $engine = shift;
316 10 50 33     76 if($engine &&
      33        
317             (! (ref($engine) &&
318             $engine->isa("Bio::Ontology::OntologyEngineI")))) {
319 0         0 $self->throw("object of class ".ref($engine)." does not implement".
320             " Bio::Ontology::OntologyEngineI. Bummer!");
321             }
322 10         19 $self->{'engine'} = $engine;
323             } elsif (! exists($self->{'engine'})) {
324             # instantiate on demand
325 0         0 eval {
326             # this introduces a dependency on Graph.pm, so load dynamically
327 0         0 require Bio::Ontology::SimpleOntologyEngine;
328             };
329 0 0       0 if ($@) {
330 0         0 $self->throw("failed to load SimpleOntologyEngine, possibly "
331             ."Graph.pm is not installed; either install or supply "
332             ."another OntologyEngineI implementation:\n"
333             .$@);
334             }
335 0         0 $self->{'engine'} = Bio::Ontology::SimpleOntologyEngine->new();
336             }
337 134         445 return $self->{'engine'};
338             }
339              
340             =head1 Methods defined in L
341              
342             =cut
343              
344             =head2 add_term
345              
346             Title : add_term
347             Usage : add_term(TermI term): TermI
348             Function: Adds TermI object to the ontology engine term store
349              
350             If the ontology property of the term object was not set,
351             this implementation will set it to itself upon adding the
352             term.
353              
354             Example : $oe->add_term($term)
355             Returns : its argument.
356             Args : object of class TermI.
357              
358              
359             =cut
360              
361             sub add_term{
362 5     5 1 15 my $self = shift;
363 5         4 my $term = shift;
364              
365             # set ontology if not set already
366 5 100 66     17 $term->ontology($self) if $term && (! $term->ontology());
367 5         8 return $self->engine->add_term($term,@_);
368             }
369              
370             =head2 add_relationship
371              
372             Title : add_relationship
373             Usage : add_relationship(RelationshipI relationship): RelationshipI
374             add_relatioship(TermI subject, TermI predicate, TermI object)
375             Function: Adds a relationship object to the ontology engine.
376             Example :
377             Returns : Its argument.
378             Args : A RelationshipI object.
379              
380              
381             =cut
382              
383             sub add_relationship {
384 10     10 1 732 my $self = shift;
385 10         10 my $rel = shift;
386              
387 10 50 33     59 if($rel && $rel->isa("Bio::Ontology::TermI")) {
388             # we need to construct the relationship object on the fly
389 0         0 my ($predicate,$object) = @_;
390 0         0 $rel = Bio::Ontology::Relationship->new(
391             -subject_term => $rel,
392             -object_term => $object,
393             -predicate_term => $predicate,
394             -ontology => $self,
395             );
396             }
397             # set ontology if not set already
398 10 50       19 $rel->ontology($self) unless $rel->ontology();
399 10         19 return $self->engine->add_relationship($rel);
400             }
401              
402             =head2 get_relationship_type
403              
404             Title : get_relationship_type
405             Usage : get_relationship_type(scalar): RelationshipTypeI
406             Function: Get a relationshiptype object from the ontology engine.
407             Example :
408             Returns : A RelationshipTypeI object.
409             Args : The name (scalar) of the RelationshipTypeI object desired.
410              
411              
412             =cut
413              
414             sub get_relationship_type{
415 4     4 1 6 my $self = shift;
416 4         7 return $self->engine->get_relationship_type(@_);
417             }
418              
419             =head2 get_relationships
420              
421             Title : get_relationships
422             Usage : get_relationships(TermI term): RelationshipI[]
423             Function: Retrieves all relationship objects in the ontology, or all
424             relationships of a given term.
425             Example :
426             Returns : Array of Bio::Ontology::RelationshipI objects
427             Args : Optionally, a Bio::Ontology::TermI compliant object
428              
429              
430             =cut
431              
432             sub get_relationships {
433 7     7 1 1312 my $self = shift;
434 7         10 my $term = shift;
435 7 100       35 if($term) {
436             # we don't need to filter in this case
437 3         9 return $self->engine->get_relationships($term);
438             }
439             # else we need to filter by ontology
440 4         13 return grep { my $ont = $_->ontology;
  1330         1312  
441             # the first condition is a superset of the second, but
442             # we add it here for efficiency reasons, as many times
443             # it will short-cut to true and is supposedly faster than
444             # string comparison
445 1330 100       2012 ($ont == $self) || ($ont->name eq $self->name);
446             } $self->engine->get_relationships(@_);
447             }
448              
449             =head2 get_predicate_terms
450              
451             Title : get_predicate_terms
452             Usage : get_predicate_terms(): TermI
453             Function: Retrieves all relationship types.
454             Example :
455             Returns : Array of TermI objects
456             Args :
457              
458              
459             =cut
460              
461             sub get_predicate_terms{
462 3     3 1 5 my $self = shift;
463            
464             # skipped Bio::Ontology::Relationship w/o defined Ontology (bug 2573)
465 3 100       8 return grep { $_->ontology && ($_->ontology->name eq $self->name)
  22         31  
466             } $self->engine->get_predicate_terms(@_);
467             }
468              
469             =head2 get_child_terms
470              
471             Title : get_child_terms
472             Usage : get_child_terms(TermI term, TermI predicate_terms): TermI
473             Function: Retrieves all child terms of a given term, that satisfy a
474             relationship among those that are specified in the second
475             argument or undef otherwise. get_child_terms is a special
476             case of get_descendant_terms, limiting the search to the
477             direct descendants.
478              
479             Note that a returned term may possibly be in another
480             ontology than this one, because the underlying engine may
481             manage multiple ontologies and the relationships of terms
482             between them. If you only want descendants within this
483             ontology, you need to filter the returned array.
484              
485             Example :
486             Returns : Array of TermI objects.
487             Args : First argument is the term of interest, second is the list
488             of relationship type terms.
489              
490              
491             =cut
492              
493             sub get_child_terms{
494 20     20 1 5348 return shift->engine->get_child_terms(@_);
495             }
496              
497             =head2 get_descendant_terms
498              
499             Title : get_descendant_terms
500             Usage : get_descendant_terms(TermI term, TermI rel_types): TermI
501             Function: Retrieves all descendant terms of a given term, that
502             satisfy a relationship among those that are specified in
503             the second argument or undef otherwise.
504              
505             Note that a returned term may possibly be in another
506             ontology than this one, because the underlying engine may
507             manage multiple ontologies and the relationships of terms
508             between them. If you only want descendants within this
509             ontology, you need to filter the returned array.
510              
511             Example :
512             Returns : Array of TermI objects.
513             Args : First argument is the term of interest, second is the list
514             of relationship type terms.
515              
516              
517             =cut
518              
519             sub get_descendant_terms{
520 13     13 1 4716 return shift->engine->get_descendant_terms(@_);
521             }
522              
523             =head2 get_parent_terms
524              
525             Title : get_parent_terms
526             Usage : get_parent_terms(TermI term, TermI predicate_terms): TermI
527             Function: Retrieves all parent terms of a given term, that satisfy a
528             relationship among those that are specified in the second
529             argument or undef otherwise. get_parent_terms is a special
530             case of get_ancestor_terms, limiting the search to the
531             direct ancestors.
532              
533             Note that a returned term may possibly be in another
534             ontology than this one, because the underlying engine may
535             manage multiple ontologies and the relationships of terms
536             between them. If you only want descendants within this
537             ontology, you need to filter the returned array.
538              
539             Example :
540             Returns : Array of TermI objects.
541             Args : First argument is the term of interest, second is the list
542             of relationship type terms.
543              
544              
545             =cut
546              
547             sub get_parent_terms{
548 16     16 1 2245 return shift->engine->get_parent_terms(@_);
549             }
550              
551             =head2 get_ancestor_terms
552              
553             Title : get_ancestor_terms
554             Usage : get_ancestor_terms(TermI term, TermI predicate_terms): TermI
555             Function: Retrieves all ancestor terms of a given term, that satisfy
556             a relationship among those that are specified in the second
557             argument or undef otherwise.
558              
559             Note that a returned term may possibly be in another
560             ontology than this one, because the underlying engine may
561             manage multiple ontologies and the relationships of terms
562             between them. If you only want descendants within this
563             ontology, you need to filter the returned array.
564              
565             Example :
566             Returns : Array of TermI objects.
567             Args : First argument is the term of interest, second is the list
568             of relationship type terms.
569              
570              
571             =cut
572              
573             sub get_ancestor_terms{
574 17     17 1 6173 return shift->engine->get_ancestor_terms(@_);
575             }
576              
577             =head2 get_leaf_terms
578              
579             Title : get_leaf_terms
580             Usage : get_leaf_terms(): TermI
581             Function: Retrieves all leaf terms from the ontology. Leaf term is a
582             term w/o descendants.
583              
584             Example : @leaf_terms = $obj->get_leaf_terms()
585             Returns : Array of TermI objects.
586             Args :
587              
588             =cut
589              
590             sub get_leaf_terms{
591 3     3 1 884 my $self = shift;
592 3         7 return grep { my $ont = $_->ontology;
  24         34  
593             # the first condition is a superset of the second, but
594             # we add it here for efficiency reasons, as many times
595             # it will short-cut to true and is supposedly faster than
596             # string comparison
597 24 50       46 ($ont == $self) || ($ont->name eq $self->name);
598             } $self->engine->get_leaf_terms(@_);
599             }
600              
601             =head2 get_root_terms()
602              
603             Title : get_root_terms
604             Usage : get_root_terms(): TermI
605             Function: Retrieves all root terms from the ontology. Root term is a
606             term w/o parents.
607              
608             Example : @root_terms = $obj->get_root_terms()
609             Returns : Array of TermI objects.
610             Args :
611              
612             =cut
613              
614             sub get_root_terms{
615 8     8 1 1137 my $self = shift;
616 8         20 return grep { my $ont = $_->ontology;
  20         35  
617             # the first condition is a superset of the second, but
618             # we add it here for efficiency reasons, as many times
619             # it will short-cut to true and is supposedly faster than
620             # string comparison
621 20 100       63 ($ont == $self) || ($ont->name eq $self->name);
622             } $self->engine->get_root_terms(@_);
623             }
624              
625             =head2 get_all_terms
626              
627             Title : get_all_terms
628             Usage : get_all_terms: TermI
629             Function: Retrieves all terms from the ontology.
630              
631             We do not mandate an order here in which the terms are
632             returned. In fact, the default implementation will return
633             them in unpredictable order.
634              
635             Example : @terms = $obj->get_all_terms()
636             Returns : Array of TermI objects.
637             Args :
638              
639             =cut
640              
641             sub get_all_terms{
642 1     1 1 1 my $self = shift;
643 1         3 return grep { my $ont = $_->ontology;
  44         48  
644             # the first condition is a superset of the second, but
645             # we add it here for efficiency reasons, as many times
646             # it will short-cut to true and is supposedly faster than
647             # string comparison
648 44 50       66 ($ont == $self) || ($ont->name eq $self->name);
649             } $self->engine->get_all_terms(@_);
650             }
651              
652             =head2 find_terms
653              
654             Title : find_terms
655             Usage : ($term) = $oe->find_terms(-identifier => "SO:0000263");
656             Function: Find term instances matching queries for their attributes.
657              
658             An implementation may not support querying for arbitrary
659             attributes, but can generally be expected to accept
660             -identifier and -name as queries. If both are provided,
661             they are implicitly intersected.
662              
663             Example :
664             Returns : an array of zero or more Bio::Ontology::TermI objects
665             Args : Named parameters. The following parameters should be recognized
666             by any implementations:
667              
668             -identifier query by the given identifier
669             -name query by the given name
670              
671             =cut
672              
673             sub find_terms{
674 8     8 1 1813 my $self = shift;
675 8         25 return grep { $_->ontology->name eq $self->name;
  8         30  
676             } $self->engine->find_terms(@_);
677             }
678              
679             =head2 find_identical_terms
680              
681             Title : find_identical_terms
682             Usage : ($term) = $oe->find_identical_terms($term0);
683             Function: Find term instances where name or synonym
684             matches the query exactly
685             Example :
686             Returns : an array of zero or more Bio::Ontology::TermI objects
687             Args : a Bio::Ontology::TermI object
688              
689             =cut
690              
691             sub find_identical_terms{
692 1     1 1 1120 my $self = shift;
693 1         6 return grep { $_->ontology->name eq $self->name;
  1         7  
694             } $self->engine->find_identical_terms(@_);
695             }
696              
697              
698             =head2 find_similar_terms
699              
700             Title : find_similar_terms
701             Usage : ($term) = $oe->find_similar_terms($term0);
702             Function: Find term instances where name or synonym, or part of one,
703             matches the query.
704             Example :
705             Returns : an array of zero or more Bio::Ontology::TermI objects
706             Args : a Bio::Ontology::TermI object
707              
708             =cut
709              
710             sub find_similar_terms{
711 1     1 1 1319 my $self = shift;
712 1         6 return grep { $_->ontology->name eq $self->name;
  7         11  
713             } $self->engine->find_similar_terms(@_);
714             }
715              
716             =head2 find_identically_named_terms
717              
718             Title : find_identically_named_terms
719             Usage : ($term) = $oe->find_identically_named_terms($term0);
720             Function: Find term instances where names match the query term
721             name exactly
722             Example :
723             Returns : an array of zero or more Bio::Ontology::TermI objects
724             Args : a Bio::Ontology::TermI object
725              
726             =cut
727              
728             sub find_identically_named_terms{
729 1     1 1 2 my $self = shift;
730 1         5 return grep { $_->ontology->name eq $self->name
  1         8  
731             } $self->engine->find_identically_named_terms(@_);
732             }
733              
734             =head1 Factory for relationships and terms
735              
736             =cut
737              
738             =head2 relationship_factory
739              
740             Title : relationship_factory
741             Usage : $fact = $obj->relationship_factory()
742             Function: Get (and set, if the engine supports it) the object
743             factory to be used when relationship objects are created by
744             the implementation on-the-fly.
745              
746             Example :
747             Returns : value of relationship_factory (a Bio::Factory::ObjectFactoryI
748             compliant object)
749             Args :
750              
751             =cut
752              
753             sub relationship_factory{
754 0     0 1 0 return shift->engine->relationship_factory(@_);
755             }
756              
757             =head2 term_factory
758              
759             Title : term_factory
760             Usage : $fact = $obj->term_factory()
761             Function: Get (and set, if the engine supports it) the object
762             factory to be used when term objects are created by
763             the implementation on-the-fly.
764              
765             Example :
766             Returns : value of term_factory (a Bio::Factory::ObjectFactoryI
767             compliant object)
768             Args :
769              
770             =cut
771              
772             sub term_factory{
773 0     0 1 0 return shift->engine->term_factory(@_);
774             }
775              
776              
777             =head2 annotation
778              
779             Title : annotation
780             Usage : $annos = $obj->annotation()
781             Function: Get/Set the Bio::Annotation::Collection object
782             The collection contains Bio::Annotation::SimpleValue
783             objects to store header information like the version
784             and date present in the header section of an Ontology
785             file.
786              
787             Example :
788             Returns : value of annotation (a Bio::Annotation::Collection
789             compliant object)
790             Args : A Bio::Annotation::Collection object (Optional)
791              
792             =cut
793              
794             sub annotation{
795 5     5 1 5 my $self = shift;
796 5 50       13 $self->{'annotation'} = shift if @_;
797 5         5 return $self->{'annotation'};
798             }
799              
800              
801             #################################################################
802             # aliases
803             #################################################################
804              
805             *get_relationship_types = \&get_predicate_terms;
806              
807             1;