/usr/share/perl5/Bio/Ontology/OBOEngine.pm is in libbio-perl-perl 1.6.923-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 | #
# BioPerl module for Bio::Ontology::OBOEngine
#
# POD documentation - main docs before the code
=head1 NAME
Bio::Ontology::OBOEngine - An Ontology Engine for OBO style flat file
format from the Gene Ontology Consortium
=head1 SYNOPSIS
use Bio::Ontology::OBOEngine;
my $parser = Bio::Ontology::OBOEngine->new
( -file => "gene_ontology.obo" );
my $engine = $parser->parse();
=head1 DESCRIPTION
Needs Graph.pm from CPAN.
This module replaces SimpleGOEngine.pm, which is deprecated.
=head1 FEEDBACK
=head2 Mailing Lists
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to the
Bioperl mailing lists Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bioperl.org/wiki/Mailing_lists - About the mailing lists
=head2 Support
Please direct usage questions or support issues to the mailing list:
I<bioperl-l@bioperl.org>
rather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.
=head2 Reporting Bugs
Report bugs to the Bioperl bug tracking system to help us keep track
the bugs and their resolution. Bug reports can be submitted via
the web:
https://redmine.open-bio.org/projects/bioperl/
=head1 AUTHOR
Sohel Merchant
Email: s-merchant@northwestern.edu
Address:
Northwestern University
Center for Genetic Medicine (CGM), dictyBase
Suite 1206,
676 St. Clair st
Chicago IL 60611
=head2 CONTRIBUTOR
Hilmar Lapp, hlapp at gmx.net
Chris Mungall, cjm at fruitfly.org
=head1 APPENDIX
The rest of the documentation details each of the object
methods. Internal methods are usually preceded with a _
=cut
package Bio::Ontology::OBOEngine;
use Bio::Ontology::SimpleGOEngine::GraphAdaptor;
use strict;
use Bio::Ontology::RelationshipType;
use Bio::Ontology::RelationshipFactory;
use Data::Dumper;
use constant TRUE => 1;
use constant FALSE => 0;
use constant IS_A => "IS_A";
use constant PART_OF => "PART_OF";
use constant RELATED_TO => "RELATED_TO";
use constant TERM => "TERM";
use constant TYPE => "TYPE";
use constant ONTOLOGY => "ONTOLOGY";
use constant REGULATES => "REGULATES";
use constant POSITIVELY_REGULATES => "POSITIVELY_REGULATES";
use constant NEGATIVELY_REGULATES => "NEGATIVELY_REGULATES";
use base qw(Bio::Root::Root Bio::Ontology::OntologyEngineI);
=head2 new
Title : new
Usage : $engine = Bio::Ontology::OBOEngine->new()
Function: Creates a new OBOEngine
Returns : A new OBOEngine object
Args :
=cut
sub new {
my( $class, @args ) = @_;
my $self = $class->SUPER::new( @args );
$self->init();
return $self;
} # new
=head2 init
Title : init()
Usage : $engine->init();
Function: Initializes this Engine.
Returns :
Args :
=cut
sub init {
my ( $self ) = @_;
$self->{ "_is_a_relationship" } = Bio::Ontology::RelationshipType->get_instance( IS_A );
$self->{ "_part_of_relationship" } = Bio::Ontology::RelationshipType->get_instance( PART_OF );
$self->{ "_related_to_relationship" } = Bio::Ontology::RelationshipType->get_instance( RELATED_TO );
$self->{'_regulates_relationship'} = Bio::Ontology::RelationshipType->get_instance(REGULATES);
$self->{'_positively_regulate'} = Bio::Ontology::RelationshipType->get_instance(POSITIVELY_REGULATES);
$self->{'_negatively_regulate'} = Bio::Ontology::RelationshipType->get_instance(NEGATIVELY_REGULATES);
$self->graph( Bio::Ontology::SimpleGOEngine::GraphAdaptor->new() ); # NG 05-02-16
# set defaults for the factories
$self->relationship_factory(Bio::Ontology::RelationshipFactory->new(
-type => "Bio::Ontology::Relationship"));
} # init
=head2 is_a_relationship
Title : is_a_relationship()
Usage : $IS_A = $engine->is_a_relationship();
Function: Returns a Bio::Ontology::RelationshipType object for "is-a"
relationships
Returns : Bio::Ontology::RelationshipType set to "IS_A"
Args :
=cut
sub is_a_relationship {
my ( $self, $value ) = @_;
if ( defined $value ) {
$self->throw( "Attempted to change immutable field" );
}
return $self->{ "_is_a_relationship" };
} # is_a_relationship
=head2 part_of_relationship
Title : part_of_relationship()
Usage : $PART_OF = $engine->part_of_relationship();
Function: Returns a Bio::Ontology::RelationshipType object for "part-of"
relationships
Returns : Bio::Ontology::RelationshipType set to "PART_OF"
Args :
=cut
sub part_of_relationship {
my ( $self, $value ) = @_;
if ( defined $value ) {
$self->throw( "Attempted to change immutable field" );
}
return $self->{ "_part_of_relationship" };
} # part_of_relationship
=head2 related_to_relationship
Title : related_to_relationship()
Usage : $RELATED_TO = $engine->related_to_relationship();
Function: Returns a Bio::Ontology::RelationshipType object for "related-to"
relationships
Returns : Bio::Ontology::RelationshipType set to "RELATED_TO"
Args :
=cut
sub related_to_relationship {
my ( $self, $value ) = @_;
if ( defined $value ) {
$self->throw( "Attempted to change immutable field" );
}
return $self->{ "_related_to_relationship" };
} # related_to_relationship
=head2 regulates_relationship
Title : regulates_relationship()
Usage : $REGULATES = $engine->regulates_relationship();
Function: Returns a Bio::Ontology::RelationshipType object for "regulates"
relationships
Returns : Bio::Ontology::RelationshipType set to "REGULATES"
Args :
=cut
sub regulates_relationship {
my ( $self, $value ) = @_;
if ( defined $value ) {
$self->throw( "Attempted to change immutable field" );
}
return $self->{ "_regulates_relationship" };
} # is_a_relationship
=head2 positively_regulates_relationship
Title : positively_regulates_relationship()
Usage : $REGULATES = $engine->positively_regulates_relationship();
Function: Returns a Bio::Ontology::RelationshipType object for "positively_regulates"
relationships
Returns : Bio::Ontology::RelationshipType set to "POSITIVELY_REGULATES"
Args :
=cut
sub positively_regulates_relationship {
my ( $self, $value ) = @_;
if ( defined $value ) {
$self->throw( "Attempted to change immutable field" );
}
return $self->{ "_positively_regulate" };
}
=head2 negatively_regulates_relationship
Title : negatively_regulates_relationship()
Usage : $REGULATES = $engine->negatively_regulates_relationship();
Function: Returns a Bio::Ontology::RelationshipType object for "negatively_regulates"
relationships
Returns : Bio::Ontology::RelationshipType set to "POSITIVELY_REGULATES"
Args :
=cut
sub negatively_regulates_relationship {
my ( $self, $value ) = @_;
if ( defined $value ) {
$self->throw( "Attempted to change immutable field" );
}
return $self->{ "_negatively_regulate" };
}
=head2 add_term
Title : add_term
Usage : $engine->add_term( $term_obj );
Function: Adds a Bio::Ontology::TermI to this engine
Returns : true if the term was added and false otherwise (e.g., if the
term already existed in the ontology engine)
Args : Bio::Ontology::TermI
=cut
sub add_term {
my ( $self, $term ) = @_;
return FALSE if $self->has_term( $term );
my $goid = $self->_get_id($term);
$self->graph()->add_vertex( $goid );
$self->graph()->set_vertex_attribute( $goid, TERM, $term ); # NG 05-02-16
return TRUE;
} # add_term
=head2 has_term
Title : has_term
Usage : $engine->has_term( $term );
Function: Checks whether this engine contains a particular term
Returns : true or false
Args : Bio::Ontology::TermI
or
Term identifier (e.g. "GO:0012345")
=cut
sub has_term {
my ( $self, $term ) = @_;
$term = $self->_get_id( $term );
if ( $self->graph()->has_vertex( $term ) ) {
return TRUE;
}
else {
return FALSE;
}
} # has_term
=head2 add_relationship_type
Title : add_relationship_type
Usage : $engine->add_relationship_type( $type_name, $ont );
Function: Adds a new relationship type to the engine. Use
get_relationship_type($type_name) to retrieve.
Returns : true if successfully added, false otherwise
Args : relationship type name to add (scalar)
ontology to which to assign the relationship type
=cut
sub add_relationship_type{
my ($self,@args) = @_;
if(scalar(@_) == 3){
my $type_name = $args[0];
my $ont = $args[1];
$self->{ "_extra_relationship_types" }{$type_name} = Bio::Ontology::RelationshipType->get_instance($type_name,$ont);
#warn Dumper($self->{"_extra_relationship_types"}{$type_name});
return 1;
}
return 0;
}
=head2 get_relationship_type
Title : get_relationship_type
Usage : $engine->get_relationship_type( $type_name );
Function: Gets a Bio::Ontology::RelationshipI object corresponding
to $type_name
Returns : a Bio::Ontology::RelationshipI object
Args :
=cut
sub get_relationship_type{
my ($self,$type_name) = @_;
return $self->{ "_extra_relationship_types" }{$type_name};
}
=head2 add_relationship
Title : add_relationship
Usage : $engine->add_relationship( $relationship );
$engine->add_relatioship( $subject_term, $predicate_term,
$object_term, $ontology );
$engine->add_relatioship( $subject_id, $predicate_id,
$object_id, $ontology);
Function: Adds a relationship to this engine
Returns : true if successfully added, false otherwise
Args : The relationship in one of three ways:
a) subject (or child) term id, Bio::Ontology::TermI
(rel.type), object (or parent) term id, ontology
or
b) subject Bio::Ontology::TermI, predicate
Bio::Ontology::TermI (rel.type), object
Bio::Ontology::TermI, ontology
or
c) Bio::Ontology::RelationshipI-compliant object
=cut
# term objs or term ids
sub add_relationship {
my ( $self, $child, $type, $parent, $ont ) = @_;
if ( scalar( @_ ) == 2 ) {
$self->_check_class( $child, "Bio::Ontology::RelationshipI" );
$type = $child->predicate_term();
$parent = $child->object_term();
$ont = $child->ontology();
$child = $child->subject_term();
}
$self->_check_class( $type, "Bio::Ontology::TermI" );
my $parentid = $self->_get_id( $parent );
my $childid = $self->_get_id( $child );
my $g = $self->graph();
$self->add_term($child) unless $g->has_vertex( $childid );
$self->add_term($parent) unless $g->has_vertex( $parentid );
# This prevents multi graphs.
if ( $g->has_edge( $parentid, $childid ) ) {
return FALSE;
}
$g->add_edge( $parentid, $childid );
$g->set_edge_attribute( $parentid, $childid, TYPE, $type ); # NG 05-02-16
$g->set_edge_attribute( $parentid, $childid, ONTOLOGY, $ont ); # NG 05-02-16
return TRUE;
} # add_relationship
=head2 get_relationships
Title : get_relationships
Usage : $engine->get_relationships( $term );
Function: Returns all relationships of a term, or all relationships in
the graph if no term is specified.
Returns : Relationship
Args : term id
or
Bio::Ontology::TermI
=cut
sub get_relationships {
my ( $self, $term ) = @_;
my $g = $self->graph();
# obtain the ID if term provided
my $termid;
if($term) {
$termid = $self->_get_id( $term );
# check for presence in the graph
if ( ! $g->has_vertex( $termid ) ) {
$self->throw( "no term with identifier \"$termid\" in ontology" );
}
}
# now build the relationships
my $relfact = $self->relationship_factory();
# we'll build the relationships from edges
my @rels = ();
my @edges = $termid ? $g->edges_at( $termid ) : $g->edges(); # NG 05-02-13
while(@edges) {
my ( $startid, $endid ) = @{ shift @edges }; # NG 05-02-16
my $rel = $relfact->create_object
(-subject_term => $self->get_terms($endid),
-object_term => $self->get_terms($startid),
-predicate_term => $g->get_edge_attribute($startid, $endid, TYPE),
-ontology => $g->get_edge_attribute($startid, $endid, ONTOLOGY));
push( @rels, $rel );
}
return @rels;
} # get_relationships
=head2 get_all_relationships
Title : get_all_relationships
Usage : @rels = $engine->get_all_relationships();
Function: Returns all relationships in the graph.
Returns : Relationship
Args :
=cut
sub get_all_relationships {
return shift->get_relationships(@_);
} # get_all_relationships
=head2 get_predicate_terms
Title : get_predicate_terms
Usage : $engine->get_predicate_terms();
Function: Returns the types of relationships this engine contains
Returns : Bio::Ontology::RelationshipType
Args :
=cut
sub get_predicate_terms {
my ( $self ) = @_;
my @a = (
$self->is_a_relationship(),
$self->part_of_relationship(),
$self->related_to_relationship(),
$self->regulates_relationship(),
$self->positively_regulates_relationship(),
$self->negatively_regulates_relationship(),
);
foreach my $termname (keys %{$self->{ "_extra_relationship_types" }}){
push @a, $self->{ "_extra_relationship_types" }{ $termname };
}
return @a;
} # get_predicate_terms
=head2 get_child_terms
Title : get_child_terms
Usage : $engine->get_child_terms( $term_obj, @rel_types );
$engine->get_child_terms( $term_id, @rel_types );
Function: Returns the children of this term
Returns : Bio::Ontology::TermI
Args : Bio::Ontology::TermI, Bio::Ontology::RelationshipType
or
term id, Bio::Ontology::RelationshipType
if NO Bio::Ontology::RelationshipType is indicated: children
of ALL types are returned
=cut
sub get_child_terms {
my ( $self, $term, @types ) = @_;
return $self->_get_child_parent_terms_helper( $term, TRUE, @types );
} # get_child_terms
=head2 get_descendant_terms
Title : get_descendant_terms
Usage : $engine->get_descendant_terms( $term_obj, @rel_types );
$engine->get_descendant_terms( $term_id, @rel_types );
Function: Returns the descendants of this term
Returns : Bio::Ontology::TermI
Args : Bio::Ontology::TermI, Bio::Ontology::RelationshipType
or
term id, Bio::Ontology::RelationshipType
if NO Bio::Ontology::RelationshipType is indicated:
descendants of ALL types are returned
=cut
sub get_descendant_terms {
my ( $self, $term, @types ) = @_;
my %ids = ();
my @ids = ();
$term = $self->_get_id( $term );
if ( ! $self->graph()->has_vertex( $term ) ) {
$self->throw( "Ontology does not contain a term with an identifier of \"$term\"" );
}
$self->_get_descendant_terms_helper( $term, \%ids, \@types );
while( ( my $id ) = each ( %ids ) ) {
push( @ids, $id );
}
return $self->get_terms( @ids );
} # get_descendant_terms
=head2 get_parent_terms
Title : get_parent_terms
Usage : $engine->get_parent_terms( $term_obj, @rel_types );
$engine->get_parent_terms( $term_id, @rel_types );
Function: Returns the parents of this term
Returns : Bio::Ontology::TermI
Args : Bio::Ontology::TermI, Bio::Ontology::RelationshipType
or
term id, Bio::Ontology::RelationshipType
if NO Bio::Ontology::RelationshipType is indicated:
parents of ALL types are returned
=cut
sub get_parent_terms {
my ( $self, $term, @types ) = @_;
return $self->_get_child_parent_terms_helper( $term, FALSE, @types );
} # get_parent_terms
=head2 get_ancestor_terms
Title : get_ancestor_terms
Usage : $engine->get_ancestor_terms( $term_obj, @rel_types );
$engine->get_ancestor_terms( $term_id, @rel_types );
Function: Returns the ancestors of this term
Returns : Bio::Ontology::TermI
Args : Bio::Ontology::TermI, Bio::Ontology::RelationshipType
or
term id, Bio::Ontology::RelationshipType
if NO Bio::Ontology::RelationshipType is indicated:
ancestors of ALL types are returned
=cut
sub get_ancestor_terms {
my ( $self, $term, @types ) = @_;
my %ids = ();
my @ids = ();
$term = $self->_get_id( $term );
if ( ! $self->graph()->has_vertex( $term ) ) {
$self->throw( "Ontology does not contain a term with an identifier of \"$term\"" );
}
$self->_get_ancestor_terms_helper( $term, \%ids, \@types );
while( ( my $id ) = each ( %ids ) ) {
push( @ids, $id );
}
return $self->get_terms( @ids );
} # get_ancestor_terms
=head2 get_leaf_terms
Title : get_leaf_terms
Usage : $engine->get_leaf_terms();
Function: Returns the leaf terms
Returns : Bio::Ontology::TermI
Args :
=cut
sub get_leaf_terms {
my ( $self ) = @_;
my @a = $self->graph()->sink_vertices();
return $self->get_terms( @a );
}
=head2 get_root_terms()
Title : get_root_terms
Usage : $engine->get_root_terms();
Function: Returns the root terms
Returns : Bio::Ontology::TermI
Args :
=cut
sub get_root_terms {
my ( $self ) = @_;
my @a = $self->graph()->source_vertices();
return $self->get_terms( @a );
}
=head2 get_terms
Title : get_terms
Usage : @terms = $engine->get_terms( "GO:1234567", "GO:2234567" );
Function: Returns term objects with given identifiers
Returns : Bio::Ontology::TermI, or the term corresponding to the
first identifier if called in scalar context
Args : term ids
=cut
sub get_terms {
my ( $self, @ids ) = @_;
my @terms = ();
foreach my $id ( @ids ) {
if ( $self->graph()->has_vertex( $id ) ) {
push( @terms, $self->graph()->get_vertex_attribute( $id, TERM ) ); # NG 05-02-16
}
}
return wantarray ? @terms : shift(@terms);
} # get_terms
=head2 get_all_terms
Title : get_all_terms
Usage : $engine->get_all_terms();
Function: Returns all terms in this engine
Returns : Bio::Ontology::TermI
Args :
=cut
sub get_all_terms {
my ( $self ) = @_;
return( $self->get_terms( $self->graph()->vertices() ) );
} # get_all_terms
=head2 find_terms
Title : find_terms
Usage : ($term) = $oe->find_terms(-identifier => "SO:0000263");
Function: Find term instances matching queries for their attributes.
This implementation can efficiently resolve queries by
identifier.
Example :
Returns : an array of zero or more Bio::Ontology::TermI objects
Args : Named parameters. The following parameters should be recognized
by any implementations:
-identifier query by the given identifier
-name query by the given name
=cut
sub find_terms{
my ($self,@args) = @_;
my @terms;
my ($id,$name) = $self->_rearrange([qw(IDENTIFIER NAME)],@args);
if(defined($id)) {
@terms = $self->get_terms($id);
} else {
@terms = $self->get_all_terms();
}
if(defined($name)) {
@terms = grep { $_->name() eq $name; } @terms;
}
return @terms;
}
=head2 find_identically_named_terms
Title : find_identically_named_terms
Usage : ($term) = $oe->find_identically_named_terms($term0);
Function: Find term instances where names match the query term
name exactly
Example :
Returns : an array of zero or more Bio::Ontology::TermI objects
Args : a Bio::Ontology::TermI object
=cut
sub find_identically_named_terms{
my ($self,$qterm) = @_;
$self->throw("Argument doesn't implement Bio::Ontology::TermI. " . "Bummer." )
unless defined $qterm and $qterm->isa("Bio::Ontology::TermI");
my %matching_terms;
foreach my $term ($self->get_all_terms) {
$matching_terms{$term->identifier} = $term and next
if $term->name eq $qterm->name;
}
return values %matching_terms;
}
=head2 find_identical_terms
Title : find_identical_terms
Usage : ($term) = $oe->find_identical_terms($term0);
Function: Find term instances where name or synonym
matches the query exactly
Example :
Returns : an array of zero or more Bio::Ontology::TermI objects
Args : a Bio::Ontology::TermI object
=cut
sub find_identical_terms{
my ($self,$qterm) = @_;
$self->throw("Argument doesn't implement Bio::Ontology::TermI. " . "Bummer." )
unless defined $qterm and $qterm->isa("Bio::Ontology::TermI");
my %matching_terms;
foreach my $qstring ($qterm->name, $qterm->each_synonym) {
foreach my $term ($self->get_all_terms) {
foreach my $string ( $term->name, $term->each_synonym() ) {
$matching_terms{$term->identifier} = $term and next
if $string eq $qstring;
}
}
}
return values %matching_terms;
}
=head2 find_similar_terms
Title : find_similar_terms
Usage : ($term) = $oe->find_similar_terms($term0);
Function: Find term instances where name or synonym, or part of one,
matches the query.
Example :
Returns : an array of zero or more Bio::Ontology::TermI objects
Args : a Bio::Ontology::TermI object
=cut
sub find_similar_terms{
my ($self,$qterm) = @_;
$self->throw("Argument doesn't implement Bio::Ontology::TermI. " . "Bummer." )
unless defined $qterm and $qterm->isa("Bio::Ontology::TermI");
my %matching_terms;
foreach my $qstring ($qterm->name, $qterm->each_synonym) {
foreach my $term ($self->get_all_terms) {
foreach my $string ( $term->name, $term->each_synonym() ) {
$matching_terms{$term->identifier} = $term and next
if $string =~ /\Q$qstring\E/ or $qstring =~ /\Q$string\E/;
}
}
}
return values %matching_terms;
}
=head2 relationship_factory
Title : relationship_factory
Usage : $fact = $obj->relationship_factory()
Function: Get/set the object factory to be used when relationship
objects are created by the implementation on-the-fly.
Example :
Returns : value of relationship_factory (a Bio::Factory::ObjectFactoryI
compliant object)
Args : on set, a Bio::Factory::ObjectFactoryI compliant object
=cut
sub relationship_factory{
my $self = shift;
return $self->{'relationship_factory'} = shift if @_;
return $self->{'relationship_factory'};
}
=head2 term_factory
Title : term_factory
Usage : $fact = $obj->term_factory()
Function: Get/set the object factory to be used when term objects are
created by the implementation on-the-fly.
Note that this ontology engine implementation does not
create term objects on the fly, and therefore setting this
attribute is meaningless.
Example :
Returns : value of term_factory (a Bio::Factory::ObjectFactoryI
compliant object)
Args : on set, a Bio::Factory::ObjectFactoryI compliant object
=cut
sub term_factory{
my $self = shift;
if(@_) {
$self->warn("setting term factory, but ".ref($self).
" does not create terms on-the-fly");
return $self->{'term_factory'} = shift;
}
return $self->{'term_factory'};
}
=head2 graph
Title : graph()
Usage : $engine->graph();
Function: Returns the Graph this engine is based on
Returns : Graph
Args :
=cut
sub graph {
my ( $self, $value ) = @_;
if ( defined $value ) {
$self->_check_class( $value, 'Bio::Ontology::SimpleGOEngine::GraphAdaptor' ); # NG 05-02-16
$self->{ "_graph" } = $value;
}
return $self->{ "_graph" };
} # graph
# Internal methods
# ----------------
# Checks the correct format of a GOBO-formatted id
# Gets the id out of a term or id string
sub _get_id {
my ( $self, $term ) = @_;
my $id = $term;
if ( ref($term) ) {
# use TermI standard API
$self->throw(
"Object doesn't implement Bio::Ontology::TermI. " . "Bummer." )
unless $term->isa("Bio::Ontology::TermI");
$id = $term->identifier();
# if there is no ID, we need to fake one from ontology name and name
# in order to achieve uniqueness
if ( !$id ) {
$id = $term->ontology->name() if $term->ontology();
$id = $id ? $id . '|' : '';
$id .= $term->name();
}
}
return $id
# if $term->isa("Bio::Ontology::GOterm")||($id =~ /^[A-Z_]{1,8}:\d{1,}$/);
if $term->isa("Bio::Ontology::OBOterm") || ( $id =~ /^\w+:\w+$/ );
# prefix with something if only numbers
# if($id =~ /^\d+$/) {
# $self->warn(ref($self).": identifier [$id] is only numbers - ".
# "prefixing with 'GO:'");
# return "GO:" . $id;
# }
# we shouldn't have gotten here if it's at least a remotely decent ID
$self->throw( ref($self) . ": non-standard identifier '$id'\n" )
unless $id =~ /\|/;
return $id;
} # _get_id
# Helper for getting children and parent terms
sub _get_child_parent_terms_helper {
my ( $self, $term, $do_get_child_terms, @types ) = @_;
foreach my $type ( @types ) {
$self->_check_class( $type, "Bio::Ontology::TermI" );
}
my @relative_terms = ();
$term = $self->_get_id( $term );
if ( ! $self->graph()->has_vertex( $term ) ) {
$self->throw( "Ontology does not contain a term with an identifier of \"$term\"" );
}
my @all_relative_terms = ();
if ( $do_get_child_terms ) {
@all_relative_terms = $self->graph()->successors( $term );
}
else {
@all_relative_terms = $self->graph()->predecessors( $term );
}
foreach my $relative ( @all_relative_terms ) {
if ( scalar( @types ) > 0 ) {
foreach my $type ( @types ) {
my $relative_type;
if ( $do_get_child_terms ) {
$relative_type = $self->graph()->get_edge_attribute ($term, $relative, TYPE ); # NG 05-02-16
}
else {
$relative_type = $self->graph()->get_edge_attribute ($relative, $term, TYPE ); # NG 05-02-16
}
if ( $relative_type->equals( $type ) ) {
push( @relative_terms, $relative );
}
}
}
else {
push( @relative_terms, $relative );
}
}
return $self->get_terms( @relative_terms );
} # get_child_terms
# Recursive helper
sub _get_descendant_terms_helper {
my ( $self, $term, $ids_ref, $types_ref ) = @_;
my @child_terms = $self->get_child_terms( $term, @$types_ref );
if ( scalar( @child_terms ) < 1 ) {
return;
}
foreach my $child_term ( @child_terms ) {
my $child_term_id = $self->_get_id($child_term->identifier());
$ids_ref->{ $child_term_id } = 0;
$self->_get_descendant_terms_helper( $child_term_id, $ids_ref, $types_ref );
}
} # _get_descendant_terms_helper
# Recursive helper
sub _get_ancestor_terms_helper {
my ( $self, $term, $ids_ref, $types_ref ) = @_;
my @parent_terms = $self->get_parent_terms( $term, @$types_ref );
if ( scalar( @parent_terms ) < 1 ) {
return;
}
foreach my $parent_term ( @parent_terms ) {
my $parent_term_id = $self->_get_id($parent_term->identifier());
$ids_ref->{ $parent_term_id } = 0;
$self->_get_ancestor_terms_helper( $parent_term_id, $ids_ref, $types_ref );
}
} # get_ancestor_terms_helper
sub _check_class {
my ( $self, $value, $expected_class ) = @_;
if ( ! defined( $value ) ) {
$self->throw( "Found [undef] where [$expected_class] expected" );
}
elsif ( ! ref( $value ) ) {
$self->throw( "Found [scalar] where [$expected_class] expected" );
}
elsif ( ! $value->isa( $expected_class ) ) {
$self->throw( "Found [" . ref( $value ) . "] where [$expected_class] expected" );
}
} # _check_class
#################################################################
# aliases
#################################################################
*get_relationship_types = \&get_predicate_terms;
1;
|