/usr/share/perl5/Bio/OntologyIO/obo.pm is in libbio-perl-perl 1.6.924-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 | #
# BioPerl module for Bio::OntologyIO::obo
#
# Please direct questions and support issues to <bioperl-l@bioperl.org>
#
# Cared for by Sohel Merchant, s-merchant at northwestern.edu
#
# Copyright Sohel Merchant
#
# You may distribute this module under the same terms as perl itself
=head1 NAME
Bio::OntologyIO::obo - a parser for OBO flat-file format from Gene Ontology Consortium
=head1 SYNOPSIS
use Bio::OntologyIO;
# do not use directly -- use via Bio::OntologyIO
my $parser = Bio::OntologyIO->new
( -format => "obo",
-file => "gene_ontology.obo");
while(my $ont = $parser->next_ontology()) {
print "read ontology ",$ont->name()," with ",
scalar($ont->get_root_terms)," root terms, and ",
scalar($ont->get_all_terms)," total terms, and ",
scalar($ont->get_leaf_terms)," leaf terms\n";
}
=head1 DESCRIPTION
Needs Graph.pm from CPAN.
=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://github.com/bioperl/bioperl-live/issues
=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::OntologyIO::obo;
use strict;
use Bio::Root::IO;
use Bio::Ontology::OBOEngine;
use Bio::Ontology::Ontology;
use Bio::Ontology::OntologyStore;
use Bio::Ontology::TermFactory;
use Bio::Annotation::Collection;
use Text::Balanced qw(extract_quotelike extract_bracketed);
use constant TRUE => 1;
use constant FALSE => 0;
use base qw(Bio::OntologyIO);
=head2 new
Title : new
Usage : $parser = Bio::OntologyIO->new(
-format => "obo",
-file => "gene_ontology.obo");
Function: Creates a new dagflat parser.
Returns : A new dagflat parser object, implementing Bio::OntologyIO.
Args : -file => a single ontology flat file holding the
terms, descriptions and relationships
-ontology_name => the name of the ontology; if not specified the
parser will assign the name of the ontology as the
default-namespace header value from the OBO file.
-engine => the Bio::Ontology::OntologyEngineI object
to be reused (will be created otherwise); note
that every Bio::Ontology::OntologyI will
qualify as well since that one inherits from the
former.
See L<Bio::OntologyIO>.
=cut
# in reality, we let OntologyIO::new do the instantiation, and override
# _initialize for all initialization work
sub _initialize {
my ( $self, %arg ) = @_;
my ( $file, $name, $eng ) = $self->_rearrange(
[
qw( FILE
ONTOLOGY_NAME
ENGINE)
],
%arg
);
$self->SUPER::_initialize(%arg);
delete $self->{'_ontologies'};
# ontology engine (and possibly name if it's an OntologyI)
$eng = Bio::Ontology::OBOEngine->new() unless $eng;
if ( $eng->isa("Bio::Ontology::OntologyI") ) {
$self->ontology_name( $eng->name() );
$eng = $eng->engine() if $eng->can('engine');
}
$self->_ont_engine($eng);
$self->ontology_name($name) if $name;
} # _initialize
=head2 ontology_name
Title : ontology_name
Usage : $obj->ontology_name($newval)
Function: Get/set the name of the ontology parsed by this module.
Example :
Returns : value of ontology_name (a scalar)
Args : on set, new value (a scalar or undef, optional)
=cut
sub ontology_name {
my $self = shift;
return $self->{'ontology_name'} = shift if @_;
return $self->{'ontology_name'};
}
=head2 parse
Title : parse()
Usage : $parser->parse();
Function: Parses the files set with "new" or with methods
defs_file and _flat_files.
Normally you should not need to call this method as it will
be called automatically upon the first call to
next_ontology().
Returns : Bio::Ontology::OntologyEngineI
Args :
=cut
sub parse {
my $self = shift;
# setup the default term factory if not done by anyone yet
$self->term_factory(
Bio::Ontology::TermFactory->new( -type => "Bio::Ontology::OBOterm" ) )
unless $self->term_factory();
## Parse the file header
my $annotations_collection = $self->_header();
# create the default ontology object itself
my $ont = Bio::Ontology::Ontology->new(
-name => $self->ontology_name(),
-engine => $self->_ont_engine()
);
## Assign the file headers
$ont->annotation($annotations_collection);
# set up the ontology of the relationship types
foreach (
$self->_part_of_relationship(),
$self->_is_a_relationship(),
$self->_related_to_relationship(),
$self->_regulates_relationship(),
$self->_positively_regulates_relationship(),
$self->_negatively_regulates_relationship(),
)
{
$_->ontology($ont);
}
##################################
$self->_add_ontology($ont);
##################################
### Adding new terms
while ( my $term = $self->_next_term() ) {
### CHeck if the terms has a valid ID and NAME otherwise ignore the term
if ( !$term->identifier() || !$term->name() ) {
$self->throw( "OBO File Format Error on line "
. $self->{'_current_line_no'}
. " \nThe term does not have a id/name tag. This term will be ignored.\n"
);
next;
}
#print $term->identifier(),"\t",$term->name(),"\n";
my $new_ontology_flag = 1;
my $ontologies_array_ref = $self->{'_ontologies'};
foreach my $ontology (@$ontologies_array_ref) {
my ($oname, $t_ns) = ($ontology->name(), $term->namespace() );
next unless (defined($oname) && defined($t_ns));
if ( $oname eq $t_ns ) {
### No need to create new ontology
$new_ontology_flag = 0;
$ont = $ontology;
}
}
if ( $new_ontology_flag && $term->namespace() ) {
my $new_ont = Bio::Ontology::Ontology->new(
-name => $term->namespace(),
-engine => $self->_ont_engine()
);
$new_ont->annotation($annotations_collection);
$self->_add_ontology($new_ont);
$ont = $new_ont;
}
$self->_add_term( $term, $ont );
#### Addding the IS_A relationship
my $isa_parents_array_ref = $self->{'_isa_parents'};
foreach my $parent_term (@$isa_parents_array_ref) {
### Check if parent exist, if not then add the term to the graph.
if ( !( $self->_has_term($parent_term) ) ) {
$self->_add_term( $parent_term, $ont );
}
$self->_add_relationship( $parent_term, $term,
$self->_is_a_relationship(), $ont );
}
#### Addding the other relationships like part_of, realted_to, develpos_from
my $relationship_hash_ref = $self->{'_relationships'};
foreach my $relationship ( keys %$relationship_hash_ref ) {
my $reltype;
#### Check if relationship exist, if not add it.
if ( $self->_ont_engine->get_relationship_type($relationship) ) {
$reltype =
$self->_ont_engine->get_relationship_type($relationship);
}
else {
$self->_ont_engine->add_relationship_type( $relationship,
$ont );
$reltype =
$self->_ont_engine->get_relationship_type($relationship);
}
#### Check if the id already exist in the graph
my $id_array_ref = $$relationship_hash_ref{$relationship};
foreach my $id (@$id_array_ref) {
my $parent_term = $self->_create_term_object();
$parent_term->identifier($id);
$parent_term->ontology($ont);
if ( !( $self->_has_term($parent_term) ) ) {
$self->_add_term( $parent_term, $ont );
}
$self->_add_relationship( $parent_term, $term, $reltype, $ont );
}
}
}
return $self->_ont_engine();
} # parse
=head2 next_ontology
Title : next_ontology
Usage :
Function: Get the next available ontology from the parser. This is the
method prescribed by Bio::OntologyIO.
Example :
Returns : An object implementing Bio::Ontology::OntologyI, and nothing if
there is no more ontology in the input.
Args :
=cut
sub next_ontology {
my $self = shift;
# parse if not done already
$self->parse() unless exists( $self->{'_ontologies'} );
# return next available ontology
if ( exists( $self->{'_ontologies'} ) ) {
my $ont = shift( @{ $self->{'_ontologies'} } );
if ($ont) {
my $store = Bio::Ontology::OntologyStore->new();
$store->register_ontology($ont);
return $ont;
}
}
return;
}
=head2 close
Title : close
Usage :
Function: Closes this ontology stream and associated file handles.
Clients should call this method especially when they write
ontologies.
We need to override this here in order to close the file
handle for the term definitions file.
Example :
Returns : none
Args : none
=cut
sub close {
my $self = shift;
# first call the inherited implementation
$self->SUPER::close();
}
# INTERNAL METHODS
# ----------------
sub _add_ontology {
my $self = shift;
$self->{'_ontologies'} = [] unless exists( $self->{'_ontologies'} );
foreach my $ont (@_) {
$self->throw(
ref($ont) . " does not implement Bio::Ontology::OntologyI" )
unless ref($ont) && $ont->isa("Bio::Ontology::OntologyI");
# the ontology name may have been auto-discovered while parsing
# the file
$ont->name( $self->ontology_name ) unless $ont->name();
push( @{ $self->{'_ontologies'} }, $ont );
}
}
# This simply delegates. See OBOEngine.
sub _add_term {
my ( $self, $term, $ont ) = @_;
$term->ontology($ont) if $ont && ( !$term->ontology );
$self->_ont_engine()->add_term($term);
} # _add_term
# This simply delegates. See OBOEngine
sub _part_of_relationship {
my $self = shift;
return $self->_ont_engine()->part_of_relationship(@_);
} # _part_of_relationship
# This simply delegates. See OBOEngine
sub _is_a_relationship {
my $self = shift;
return $self->_ont_engine()->is_a_relationship(@_);
} # _is_a_relationship
# This simply delegates. See OBOEngine
sub _related_to_relationship {
my $self = shift;
return $self->_ont_engine()->related_to_relationship(@_);
} # _is_a_relationship
# This simply delegates. See OBOEngine
sub _regulates_relationship {
my $self = shift;
return $self->_ont_engine()->regulates_relationship(@_);
} # _part_of_relationship
# This simply delegates. See OBOEngine
sub _positively_regulates_relationship {
my $self = shift;
return $self->_ont_engine()->positively_regulates_relationship(@_);
} # _part_of_relationship
# This simply delegates. See OBOEngine
sub _negatively_regulates_relationship {
my $self = shift;
return $self->_ont_engine()->negatively_regulates_relationship(@_);
} # _part_of_relationship
# This simply delegates. See OBOEngine
sub _add_relationship {
my ( $self, $parent, $child, $type, $ont ) = @_;
# note the triple terminology (subject,predicate,object) corresponds to
# (child,type,parent)
$self->_ont_engine()->add_relationship( $child, $type, $parent, $ont );
} # _add_relationship
# This simply delegates. See OBOEngine
sub _has_term {
my $self = shift;
return $self->_ont_engine()->has_term(@_);
} # _add_term
# Holds the OBO engine to be parsed into
sub _ont_engine {
my ( $self, $value ) = @_;
if ( defined $value ) {
$self->{"_ont_engine"} = $value;
}
return $self->{"_ont_engine"};
} # _ont_engine
# Removes the escape chracters from the file
sub _filter_line {
my ( $self, $line ) = @_;
chomp($line);
$line =~ tr [\200-\377]
[\000-\177]; # see 'man perlop', section on tr/
# weird ascii characters should be excluded
$line =~ tr/\0-\10//d; # remove weird characters; ascii 0-8
# preserve \11 (9 - tab) and \12 (10-linefeed)
$line =~ tr/\13\14//d; # remove weird characters; 11,12
# preserve \15 (13 - carriage return)
$line =~ tr/\16-\37//d; # remove 14-31 (all rest before space)
$line =~ tr/\177//d; # remove DEL character
$line =~ s/^\!.*//;
$line =~ s/[^\\]\!.*//;
$line =~ s/[^\\]\#.*//;
$line =~ s/^\s+//;
$line =~ s/\s+$//;
return $line;
}
# Parses the header
sub _header {
my $self = shift;
my $annotation_collection = Bio::Annotation::Collection->new();
my ( $tag, $value );
my $line_counter = 0;
$self->{'_current_line_no'} = 0;
my $format_version_header_flag = 0;
my $default_namespace_header_flag = 0;
while ( my $line = $self->_readline() ) {
++$line_counter;
my $line = $self->_filter_line($line);
if ( !$line ) {
if ( !$format_version_header_flag || !$default_namespace_header_flag) {
$self->throw(
"OBO File Format Error - \nCannot find tag format-version and/ default-namespace . These are required header.\n"
);
}
$self->{'_current_line_no'} = $line_counter;
return $annotation_collection;
}
### CHeck if there is a header
if($line =~ /\[\w*\]/) {
$self->throw(
"OBO File Format Error - \nCannot find tag format-version. Thi ia a required header.\n"
);
}
### If the line is not null, check it contains atleasdt one colon
$self->_check_colon( $line, $line_counter );
### Thsse ar the allowed headers. Any other headers will be ignored
if ( $line =~
/^(\[|format-version:|typeref:|version:|date:|saved-by:|auto-generated-by:|default-namespace:|remark:|subsetdef:)/
)
{
if ( $line =~ /^([\w\-]+)\:\s*(.*)/ ) {
( $tag, $value ) = ( $1, $2 );
}
if ( $tag =~ /format-version/) {
$format_version_header_flag = 1;
}elsif( $tag =~ /default-namespace/ ) {
$default_namespace_header_flag = 1;
}
my $header = Bio::Annotation::SimpleValue->new( -value => $value );
$annotation_collection->add_Annotation( $tag, $header );
#### Assign the Ontology name as the value of the default-namespace header
if ( $tag =~ /default-namespace/i ) {
$self->ontology_name($value);
}
}
}
}
### Parses each stanza of the file
sub _next_term {
my $self = shift;
my $term ;
my $skip_stanza_flag = 1;
my $line_counter = $self->{'_current_line_no'};
while ( my $line = $self->_readline() ) {
#print $line."\n";
++$line_counter;
my $line = $self->_filter_line($line);
if ( !$line && $term ) {
$self->{'_current_line_no'} = $line_counter;
return $term;
}
if ( ( $line =~ /^\[(\w+)\]\s*(.*)/ ) ) { #New stanza
if ( uc($1) eq "TERM" ) {
$term = $self->_create_term_object;
$skip_stanza_flag = 0;
### Reset the relationships after each stanza
$self->{'_relationships'} = {};
$self->{'_isa_parents'} = undef;
}
elsif ( uc($1) eq "TYPEDEF" ) {
$skip_stanza_flag = 1;
### Check if this typedef is already defined by the relationship
}
else {
$skip_stanza_flag = 1;
$self->warn(
"OBO File Format Warning on line $line_counter $line \nUnrecognized stanza type found. Skipping this stanza.\n"
);
}
next;
}
### If the line is not null, check it contains atleasdt one colon
$self->_check_colon( $line, $line_counter );
### if there is any tag value other thn the list below move to the next tag
next
if (
(
$line !~
/^(\[|id:|name:|is_a:|relationship:|namespace:|is_obsolete:|alt_id:|def:|xref_analog:|exact_synonym:|broad_synonym:|related_synonym:|synonym:|comment:|xref:)/
)
|| $skip_stanza_flag
);
if ( $line =~ /^([\w\-]+)\:\s*(.*)/ ) { #TAg Value pair
my ( $tag, $val ) = ( $1, $2 );
### If no value for the tag thrown a warning
if ( !$val ) {
$self->warn(
"OBO File Format Warning on line $line_counter $line \nTag has no value\n"
);
}
my $qh;
( $val, $qh ) = $self->_extract_quals($val);
my $val2 = $val;
$val2 =~ s/\\,/,/g;
$tag = uc($tag);
if ( $tag eq "ID" ) {
$term->identifier($val);
if ( $self->_has_term($term) ) {
$term = $self->_ont_engine()->get_terms($val);
}
}
elsif ( $tag eq "NAME" ) {
$term->name($val);
}
elsif ( $tag eq "XREF_ANALOG" ) {
if ( !$term->has_dbxref($val) ) {
$term->add_dbxref(-dbxrefs => $self->_to_annotation([$val]));
}
}
elsif ( $tag eq "XREF_UNKNOWN" ) {
$term->add_dbxref(-dbxrefs => $self->_to_annotation([$val]));
}
elsif ( $tag eq "NAMESPACE" ) {
$term->namespace($val);
}
elsif ( $tag eq "DEF" ) {
my ( $defstr, $parts ) = $self->_extract_qstr($val);
$term->definition($defstr);
my $ann = $self->_to_annotation($parts);
$term->add_dbxref(-dbxrefs => $ann);
}
elsif ( $tag =~ /(\w*)synonym/i ) {
#$val =~ s/['"\[\]]//g; #NML commented out b/c need quotes
$term->add_synonym($val);
}
elsif ( $tag eq "ALT_ID" ) {
$term->add_secondary_id($val);
}
elsif ( $tag =~ /XREF/i ) {
$term->add_secondary_id($val);
}
elsif ( $tag eq "IS_OBSOLETE" ) {
if ( $val eq 'true' ) {
$val = 1;
}
if ( $val eq 'false' ) {
$val = 0;
}
$term->is_obsolete($val);
}
elsif ( $tag eq "COMMENT" ) {
$term->comment($val);
}
elsif ( $tag eq "RELATIONSHIP" ) {
$self->_handle_relationship_tag($val);
}
elsif ( $tag eq "IS_A" ) {
$val =~ s/ //g;
my $parent_term = $self->_create_term_object();
$parent_term->identifier($val);
if ( $self->{'_isa_parents'} ) {
my $isa_parents_array_ref = $self->{'_isa_parents'};
push( @$isa_parents_array_ref, $parent_term );
}
else {
my @terms_array;
push( @terms_array, $parent_term );
$self->{'_isa_parents'} = \@terms_array;
}
}
}
}
return $term;
}
# Creates a Bio::Ontology::OBOterm object
sub _create_term_object {
my ($self) = @_;
my $term = $self->term_factory->create_object();
return $term;
}
#
sub _extract_quals {
my ( $self, $str ) = @_;
my %q = ();
if ( $str =~ /(.*)\s+(\{.*\})\s*$/ ) {
my $return_str = $1;
my $extr = $2;
if ($extr) {
my @qparts = $self->_split_on_comma($extr);
foreach (@qparts) {
if (/(\w+)=\"(.*)\"/) {
$q{$1} = $2;
}
elsif (/(\w+)=\'(.*)\'/) {
$q{$1} = $2;
}
else {
warn("$_ in $str");
}
}
}
return ( $return_str, \%q );
}
else {
return ( $str, {} );
}
}
#
sub _extract_qstr {
my ( $self, $str ) = @_;
my ( $extr, $rem, $prefix ) = extract_quotelike($str);
my $txt = $extr;
$txt =~ s/^\"//;
$txt =~ s/\"$//;
if ($prefix) {
warn("illegal prefix: $prefix in: $str");
}
my @extra = ();
# eg synonym: "foo" EXACT [...]
if ( $rem =~ /(\w+)\s+(\[.*)/ ) {
$rem = $2;
push( @extra, split( ' ', $1 ) );
}
my @parts = ();
while ( ( $extr, $rem, $prefix ) = extract_bracketed( $rem, '[]' ) ) {
last unless $extr;
$extr =~ s/^\[//;
$extr =~ s/\]$//;
push( @parts, $extr ) if $extr;
}
@parts =
map { $self->_split_on_comma($_) } @parts;
$txt =~ s/\\//g;
return ( $txt, \@parts, \@extra );
}
#
sub _split_on_comma {
my ( $self, $str ) = @_;
my @parts = ();
while ( $str =~ /(.*[^\\],\s*)(.*)/ ) {
$str = $1;
my $part = $2;
unshift( @parts, $part );
$str =~ s/,\s*$//;
}
unshift( @parts, $str );
return map { s/\\//g; $_ } @parts;
}
# This method checks for an existing colon in a line
sub _check_colon {
my ( $self, $line, $line_no ) = @_;
if ( $line && !( $line =~ /:/ ) ) {
$self->throw(
"OBO File Format Error on line $line_no $line - \nCannot find key-terminating colon\n"
);
}
}
# This method handles relationship tags
sub _handle_relationship_tag {
my ( $self, $val ) = @_;
my @parts = split( / /, $val );
my $relationship = uc($parts[0]);
my $id = $parts[1] =~ /\^(w+)\s+\!/ ? $1 : $parts[1];
my $parent_term = $self->_create_term_object();
$parent_term->identifier($id);
if ( my $realtionships_hash = $self->{'_relationships'} ) {
my $id_array_ref = $$realtionships_hash{$relationship};
if ( !$id_array_ref ) {
my @ids;
push( @ids, $id );
$$realtionships_hash{$relationship} = \@ids;
}
else {
push( @$id_array_ref, $id );
}
}
}
# convert simple strings to Bio::Annotation::DBLinks
sub _to_annotation {
my ($self , $links) = @_;
return unless $links;
my @dbxrefs;
for my $string (@{$links}) {
my ($db, $id) = split(':',$string);
push @dbxrefs, Bio::Annotation::DBLink->new(-database => $db, -primary_id => $id);
}
return \@dbxrefs;
}
1;
|