/usr/share/perl5/Bio/Annotation/Reference.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 | #
# BioPerl module for Bio::Annotation::Reference
#
# Please direct questions and support issues to <bioperl-l@bioperl.org>
#
# Cared for by Ewan Birney <birney@ebi.ac.uk>
#
# Copyright Ewan Birney
#
# You may distribute this module under the same terms as perl itself
# POD documentation - main docs before the code
=head1 NAME
Bio::Annotation::Reference - Specialised DBLink object for Literature References
=head1 SYNOPSIS
$reg = Bio::Annotation::Reference->new( -title => 'title line',
-location => 'location line',
-authors => 'author line',
-medline => 998122 );
=head1 DESCRIPTION
Object which presents a literature reference. This is considered to be
a specialised form of database link. The additional methods provided
are all set/get methods to store strings commonly associated with
references, in particular title, location (ie, journal page) and
authors line.
There is no attempt to do anything more than store these things as
strings for processing elsewhere. This is mainly because parsing these
things suck and generally are specific to the specific format one is
using. To provide an easy route to go format --E<gt> object --E<gt> format
without losing data, we keep them as strings. Feel free to post the
list for a better solution, but in general this gets very messy very
fast...
=head1 AUTHOR - Ewan Birney
Email birney@ebi.ac.uk
=head1 APPENDIX
The rest of the documentation details each of the object
methods. Internal methods are usually preceded with a _
=cut
# Let the code begin...
package Bio::Annotation::Reference;
use strict;
use base qw(Bio::Annotation::DBLink);
=head2 new
Title : new
Usage : $ref = Bio::Annotation::Reference->new( -title => 'title line',
-authors => 'author line',
-location => 'location line',
-medline => 9988812);
Function:
Example :
Returns : a new Bio::Annotation::Reference object
Args : a hash with optional title, authors, location, medline, pubmed,
start, end, consortium, rp and rg attributes
=cut
sub new{
my ($class,@args) = @_;
my $self = $class->SUPER::new(@args);
my ($start,$end,$authors,$consortium,$location,$title,$medline,
$pubmed,$rp,$rg,$doi) =
$self->_rearrange([qw(START
END
AUTHORS
CONSORTIUM
LOCATION
TITLE
MEDLINE
PUBMED
RP
RG
DOI
)],@args);
defined $start && $self->start($start);
defined $end && $self->end($end);
defined $authors && $self->authors($authors);
defined $consortium && $self->consortium($consortium);
defined $location && $self->location($location);
defined $title && $self->title($title);
defined $medline && $self->medline($medline);
defined $pubmed && $self->pubmed($pubmed);
defined $rp && $self->rp($rp);
defined $rg && $self->rg($rg);
defined $doi && $self->doi($doi);
return $self;
}
=head1 AnnotationI implementing functions
=cut
=head2 as_text
Title : as_text
Usage :
Function:
Example :
Returns :
Args :
=cut
sub as_text{
my ($self) = @_;
# this could get out of hand!
return "Reference: ".$self->title;
}
=head2 display_text
Title : display_text
Usage : my $str = $ann->display_text();
Function: returns a string. Unlike as_text(), this method returns a string
formatted as would be expected for te specific implementation.
One can pass a callback as an argument which allows custom text
generation; the callback is passed the current instance and any text
returned
Example :
Returns : a string
Args : [optional] callback
=cut
{
my $DEFAULT_CB = sub { $_[0]->title || ''};
sub display_text {
my ($self, $cb) = @_;
$cb ||= $DEFAULT_CB;
$self->throw("Callback must be a code reference") if ref $cb ne 'CODE';
return $cb->($self);
}
}
=head2 hash_tree
Title : hash_tree
Usage :
Function:
Example :
Returns :
Args :
=cut
sub hash_tree{
my ($self) = @_;
my $h = {};
$h->{'title'} = $self->title;
$h->{'authors'} = $self->authors;
$h->{'location'} = $self->location;
if (defined $self->start) {
$h->{'start'} = $self->start;
}
if (defined $self->end) {
$h->{'end'} = $self->end;
}
$h->{'medline'} = $self->medline;
if (defined $self->pubmed) {
$h->{'pubmed'} = $self->pubmed;
}
return $h;
}
=head2 tagname
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 Bio::AnnotationCollectionI when adding this object. When
obtaining an AnnotationI object from the collection, the collection
will set the value to the tag under which it was stored unless the
object has a tag stored already.
Example :
Returns : value of tagname (a scalar)
Args : new value (a scalar, optional)
=cut
=head1 Specific accessors for References
=cut
=head2 start
Title : start
Usage : $self->start($newval)
Function: Gives the reference start base
Example :
Returns : value of start
Args : newvalue (optional)
=cut
sub start {
my ($self,$value) = @_;
if( defined $value) {
$self->{'start'} = $value;
}
return $self->{'start'};
}
=head2 end
Title : end
Usage : $self->end($newval)
Function: Gives the reference end base
Example :
Returns : value of end
Args : newvalue (optional)
=cut
sub end {
my ($self,$value) = @_;
if( defined $value) {
$self->{'end'} = $value;
}
return $self->{'end'};
}
=head2 rp
Title : rp
Usage : $self->rp($newval)
Function: Gives the RP line. No attempt is made to parse this line.
Example :
Returns : value of rp
Args : newvalue (optional)
=cut
sub rp{
my ($self,$value) = @_;
if( defined $value) {
$self->{'rp'} = $value;
}
return $self->{'rp'};
}
=head2 rg
Title : rg
Usage : $obj->rg($newval)
Function: Gives the RG line. This is Swissprot/Uniprot specific, and
if set will usually be identical to the authors attribute,
but the swissprot manual does allow both RG and RA (author)
to be present for the same reference.
Example :
Returns : value of rg (a scalar)
Args : on set, new value (a scalar or undef, optional)
=cut
sub rg{
my $self = shift;
return $self->{'rg'} = shift if @_;
return $self->{'rg'};
}
=head2 authors
Title : authors
Usage : $self->authors($newval)
Function: Gives the author line. No attempt is made to parse the author line
Example :
Returns : value of authors
Args : newvalue (optional)
=cut
sub authors{
my ($self,$value) = @_;
if( defined $value) {
$self->{'authors'} = $value;
}
return $self->{'authors'};
}
=head2 location
Title : location
Usage : $self->location($newval)
Function: Gives the location line. No attempt is made to parse the location line
Example :
Returns : value of location
Args : newvalue (optional)
=cut
sub location{
my ($self,$value) = @_;
if( defined $value) {
$self->{'location'} = $value;
}
return $self->{'location'};
}
=head2 title
Title : title
Usage : $self->title($newval)
Function: Gives the title line (if exists)
Example :
Returns : value of title
Args : newvalue (optional)
=cut
sub title{
my ($self,$value) = @_;
if( defined $value) {
$self->{'title'} = $value;
}
return $self->{'title'};
}
=head2 medline
Title : medline
Usage : $self->medline($newval)
Function: Gives the medline number
Example :
Returns : value of medline
Args : newvalue (optional)
=cut
sub medline{
my ($self,$value) = @_;
if( defined $value) {
$self->{'medline'} = $value;
}
return $self->{'medline'};
}
=head2 pubmed
Title : pubmed
Usage : $refobj->pubmed($newval)
Function: Get/Set the PubMed number, if it is different from the MedLine
number.
Example :
Returns : value of medline
Args : newvalue (optional)
=cut
sub pubmed {
my ($self,$value) = @_;
if( defined $value) {
$self->{'pubmed'} = $value;
}
return $self->{'pubmed'};
}
=head2 database
Title : database
Usage :
Function: Overrides DBLink database to be hard coded to 'MEDLINE' (or 'PUBMED'
if only pubmed id has been supplied), unless the database has been
set explicitly before.
Example :
Returns :
Args :
=cut
sub database{
my ($self, @args) = @_;
my $default = 'MEDLINE';
if (! defined $self->medline && defined $self->pubmed) {
$default = 'PUBMED';
}
return $self->SUPER::database(@args) || $default;
}
=head2 primary_id
Title : primary_id
Usage :
Function: Overrides DBLink primary_id to provide medline number, or pubmed
number if only that has been defined
Example :
Returns :
Args :
=cut
sub primary_id{
my ($self, @args) = @_;
if (@args) {
$self->medline(@args);
}
if (! defined $self->medline && defined $self->pubmed) {
return $self->pubmed;
}
return $self->medline;
}
=head2 optional_id
Title : optional_id
Usage :
Function: Overrides DBLink optional_id to provide the PubMed number.
Example :
Returns :
Args :
=cut
sub optional_id{
my ($self, @args) = @_;
return $self->pubmed(@args);
}
=head2 publisher
Title : publisher
Usage : $self->publisher($newval)
Function: Gives the publisher line. No attempt is made to parse the publisher line
Example :
Returns : value of publisher
Args : newvalue (optional)
=cut
sub publisher {
my ($self,$value) = @_;
if( defined $value) {
$self->{'publisher'} = $value;
}
return $self->{'publisher'};
}
=head2 editors
Title : editors
Usage : $self->editors($newval)
Function: Gives the editors line. No attempt is made to parse the editors line
Example :
Returns : value of editors
Args : newvalue (optional)
=cut
sub editors {
my ($self,$value) = @_;
if( defined $value) {
$self->{'editors'} = $value;
}
return $self->{'editors'};
}
=head2 encoded_ref
Title : encoded_ref
Usage : $self->encoded_ref($newval)
Function: Gives the encoded_ref line. No attempt is made to parse the encoded_ref line
(this is added for reading PDB records (REFN record), where this contains
ISBN/ISSN/ASTM code)
Example :
Returns : value of encoded_ref
Args : newvalue (optional)
=cut
sub encoded_ref {
my ($self,$value) = @_;
if( defined $value) {
$self->{'encoded_ref'} = $value;
}
return $self->{'encoded_ref'};
}
=head2 doi
Title : doi
Usage : $self->doi($newval)
Function: Gives the DOI (Digital Object Identifier) from the International
DOI Foundation (http://www.doi.org/), which can be used to resolve
URL links for the full-text documents using:
http://dx.doi.org/<doi>
Example :
Returns : value of doi
Args : newvalue (optional)
=cut
sub doi {
my ($self,$value) = @_;
if( defined $value) {
$self->{'doi'} = $value;
}
return $self->{'doi'};
}
=head2 consortium
Title : consortium
Usage : $self->consortium($newval)
Function: Gives the consortium line. No attempt is made to parse the consortium line
Example :
Returns : value of consortium
Args : newvalue (optional)
=cut
sub consortium{
my ($self,$value) = @_;
if( defined $value) {
$self->{'consortium'} = $value;
}
return $self->{'consortium'};
}
=head2 gb_reference
Title : gb_reference
Usage : $obj->gb_reference($newval)
Function: Gives the generic GenBank REFERENCE line. This is GenBank-specific.
If set, this includes everything on the reference line except
the REFERENCE tag and the reference count. This is mainly a
fallback for the few instances when REFERENCE lines have unusual
additional information such as split sequence locations, feature
references, etc. See Bug 2020 in Bugzilla for more information.
Example :
Returns : value of gb_reference (a scalar)
Args : on set, new value (a scalar or undef, optional)
=cut
sub gb_reference{
my ($self,$value) = @_;
if( defined $value) {
$self->{'gb_reference'} = $value;
}
return $self->{'gb_reference'};
}
1;
|