/usr/share/perl5/Bio/Annotation/DBLink.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 | #
# BioPerl module for Bio::Annotation::DBLink
#
# 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::DBLink - untyped links between databases
=head1 SYNOPSIS
$link1 = Bio::Annotation::DBLink->new(-database => 'TSC',
-primary_id => 'TSC0000030'
);
#or
$link2 = Bio::Annotation::DBLink->new();
$link2->database('dbSNP');
$link2->primary_id('2367');
# DBLink is-a Bio::AnnotationI object, can be added to annotation
# collections, e.g. the one on features or seqs
$feat->annotation->add_Annotation('dblink', $link2);
=head1 DESCRIPTION
Provides an object which represents a link from one object to something
in another database without prescribing what is in the other database.
Aside from L<Bio::AnnotationI>, this class also implements
L<Bio::IdentifiableI>.
=head1 AUTHOR - Ewan Birney
Ewan Birney - 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::DBLink;
use strict;
use base qw(Bio::Root::Root Bio::AnnotationI Bio::IdentifiableI);
=head2 new
Title : new
Usage : $dblink = Bio::Annotation::DBLink->new(-database =>"GenBank",
-primary_id => "M123456");
Function: Creates a new instance of this class.
Example :
Returns : A new instance of Bio::Annotation::DBLink.
Args : Named parameters. At present, the following parameters are
recognized.
-database the name of the database referenced by the xref
-primary_id the primary (main) id of the referenced entry
(usually this will be an accession number)
-optional_id a secondary ID under which the referenced entry
is known in the same database
-comment comment text for the dbxref
-tagname the name of the tag under which to add this
instance to an annotation bundle (usually 'dblink')
-type the type of information in the referenced entry
(e.g. protein, mRNA, structure)
-namespace synonymous with -database (also overrides)
-version version of the referenced entry
-authority attribute of the Bio::IdentifiableI interface
-url attribute of the Bio::IdentifiableI interface
=cut
sub new {
my($class,@args) = @_;
my $self = $class->SUPER::new(@args);
my ($database,$primary_id,$optional_id,$comment,$tag,$type,$ns,$auth,$v,$url) =
$self->_rearrange([qw(DATABASE
PRIMARY_ID
OPTIONAL_ID
COMMENT
TAGNAME
TYPE
NAMESPACE
AUTHORITY
VERSION
URL
)], @args);
$database && $self->database($database);
$primary_id && $self->primary_id($primary_id);
$optional_id && $self->optional_id($optional_id);
$comment && $self->comment($comment);
$tag && $self->tagname($tag);
$type && $self->type($type);
# Bio::IdentifiableI parameters:
$ns && $self->namespace($ns); # this will override $database
$auth && $self->authority($auth);
defined($v) && $self->version($v);
defined($url) && $self->url($url);
return $self;
}
=head1 AnnotationI implementing functions
=cut
=head2 as_text
Title : as_text
Usage :
Function:
Example :
Returns :
Args :
=cut
sub as_text{
my ($self) = @_;
return "Direct database link to ".$self->primary_id
.($self->version ? ".".$self->version : "")
.($self->optional_id ? " (".$self->optional_id.")" : "")
." in database ".$self->database;
}
=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]->database ? $_[0]->database . ':' : '' ) .
($_[0]->primary_id ? $_[0]->primary_id : '') .
($_[0]->version ? '.' . $_[0]->version : '')) || '' };
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->{'database'} = $self->database;
$h->{'primary_id'} = $self->primary_id;
if( defined $self->optional_id ) {
$h->{'optional_id'} = $self->optional_id;
}
if( defined $self->comment ) {
# we know that comments have hash_tree methods
$h->{'comment'} = $self->comment;
}
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
sub tagname{
my $self = shift;
return $self->{'tagname'} = shift if @_;
return $self->{'tagname'};
}
=head1 Specific accessors for DBLinks
=cut
=head2 database
Title : database
Usage : $self->database($newval)
Function: set/get on the database string. Databases are just
a string here which can then be interpreted elsewhere
Example :
Returns : value of database
Args : newvalue (optional)
=cut
sub database{
my $self = shift;
return $self->{'database'} = shift if @_;
return $self->{'database'};
}
=head2 primary_id
Title : primary_id
Usage : $self->primary_id($newval)
Function: set/get on the primary id (a string)
The primary id is the main identifier used for this object in
the database. Good examples would be accession numbers. The id
is meant to be the main, stable identifier for this object
Example :
Returns : value of primary_id
Args : newvalue (optional)
=cut
sub primary_id{
my $self = shift;
return $self->{'primary_id'} = shift if @_;
return $self->{'primary_id'};
}
=head2 optional_id
Title : optional_id
Usage : $self->optional_id($newval)
Function: get/set for the optional_id (a string)
optional id is a slot for people to use as they wish. The
main issue is that some databases do not have a clean
single string identifier scheme. It is hoped that the
primary_id can behave like a reasonably sane "single string
identifier" of objects, and people can use/abuse optional
ids to their heart's content to provide precise mappings.
Example :
Returns : value of optional_id
Args : newvalue (optional)
=cut
#'
sub optional_id{
my $self = shift;
return $self->{'optional_id'} = shift if @_;
return $self->{'optional_id'};
}
=head2 comment
Title : comment
Usage : $self->comment($newval)
Function: get/set of comments (comment object)
Sets or gets comments of this dblink, which is sometimes relevant
Example :
Returns : value of comment (Bio::Annotation::Comment)
Args : newvalue (optional)
=cut
sub comment{
my $self = shift;
return $self->{'comment'} = shift if @_;
return $self->{'comment'};
}
=head2 type
Title : type
Usage : $self->type($newval)
Function: get/set of type
Sets or gets the type of this dblink.
Example : $self->type('protein')
Returns : value of type
Args : newvalue (optional)
=cut
sub type {
my $self = shift;
return $self->{'type'} = shift if @_;
return $self->{'type'};
}
=head1 Methods for Bio::IdentifiableI compliance
=head2 object_id
Title : object_id
Usage : $string = $obj->object_id()
Function: a string which represents the stable primary identifier
in this namespace of this object. For DNA sequences this
is its accession_number, similarly for protein sequences
This is aliased to primary_id().
Returns : A scalar
=cut
sub object_id {
return shift->primary_id(@_);
}
=head2 version
Title : version
Usage : $version = $obj->version()
Function: a number which differentiates between versions of
the same object. Higher numbers are considered to be
later and more relevant, but a single object described
the same identifier should represent the same concept
Returns : A number
=cut
sub version{
my $self = shift;
return $self->{'version'} = shift if @_;
return $self->{'version'};
}
=head2 url
Title : url
Usage : $url = $obj->url()
Function: URL which is associated with this DB link
Returns : string, full URL descriptor
=cut
sub url {
my $self = shift;
return $self->{'url'} = shift if @_;
return $self->{'url'};
}
=head2 authority
Title : authority
Usage : $authority = $obj->authority()
Function: a string which represents the organisation which
granted the namespace, written as the DNS name for
organisation (eg, wormbase.org)
Returns : A scalar
=cut
sub authority{
my $self = shift;
return $self->{'authority'} = shift if @_;
return $self->{'authority'};
}
=head2 namespace
Title : namespace
Usage : $string = $obj->namespace()
Function: A string representing the name space this identifier
is valid in, often the database name or the name
describing the collection
For DBLink this is the same as database().
Returns : A scalar
=cut
sub namespace{
return shift->database(@_);
}
1;
|