/usr/share/perl5/SWISS/Entry.pm is in libswiss-perl 1.67-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 | package SWISS::Entry;
use 5.005;
use vars qw($AUTOLOAD @ISA @EXPORT_OK $VERSION %fields %objects);
use Exporter;
use Carp;
use strict;
use SWISS::TextFunc;
$VERSION='1.67';
# * Initialisation
# The objects for the different line types
my %objects = (
IDs => undef,
ACs => undef,
DTs => undef,
DEs => undef,
GNs => undef,
OSs => undef,
OGs => undef,
OCs => undef,
OXs => undef,
OHs => undef,
Refs => undef,
CCs => undef,
DRs => undef,
PE => undef,
KWs => undef,
FTs => undef,
Stars => undef,
SQs => undef,
);
# All attributes
my %fields = (
_dirty => undef,
_text => undef,
_internalComments => undef,
%objects,
);
BEGIN {
@EXPORT_OK = qw();
@ISA = ( 'Exporter');
}
# * Methods
sub new {
my $ref = shift;
my $class = ref($ref) || $ref;
my $self = { '_permitted' => \%fields,
%fields };
bless $self, $class;
$self->initialize();
return $self;
}
sub initialize {
my $self = shift;
my $text = "\/\/\n";
$self->{_text} = \$text;
return $self;
}
sub AUTOLOAD {
my $self = shift;
my $value;
my $type = ref($self) || carp "Ok, $self is not an object of mine!";
my $name = $AUTOLOAD;
# * Initialise
if (@_) {
$value = shift;
}
else {
undef $value;
}
# get only the bit we want
$name =~ /::DESTROY/ && return;
$name =~ s/.*://;
# Verify if the demanded name is permitted
unless (exists $self->{'_permitted'}->{$name} ) {
confess "In type $type, can't access $name - probably passed a wrong variable into $self ";
};
# * If a value is passed, set it
if (defined $value) {
# if a subobject is set, it's dirty
if (defined $value->{_dirty}) {
$value->{_dirty} = 1;
};
$self->{_dirty} = 1;
return $self->{$name} = $value;
}
else {
# nothing is set, a value has to be returned
if (defined $self->{$name}) {
# The object is defined, return it
return $self->{$name};
}
else {
require 'SWISS/' . $name . '.pm';
if (exists $objects{$name}) {
# create and return new object
return $self->{$name} = ('SWISS::' . $name)->fromText($self->{_text});
}
else {
# return the undefined value
return $self->{$name};
}
}
}
};
sub update {
my $self = shift;
my $force = shift; # force update
my $lineObject;
# recursively check and update all existing line objects
if ($force) {
foreach $lineObject (grep {$self->{$_}} keys %objects) {
$self->{$lineObject}->update($force);
$self->{_dirty} = 1;
};
};
# The entry itself
# update interdependent lines
if ($self->{IDs} && $self->{SQs}) {
$self->IDs->length($self->SQs->length());
};
return 1;
}
sub fullParse {
my $self = shift;
my $lineObject;
my $tmp;
# Parse all known objects
foreach $lineObject (@SWISS::TextFunc::lineObjects){
$tmp = $self->$lineObject();
}
}
sub reformat {
my $self = shift;
my $force = shift;
my $lineObject;
$self->fullParse;
# recursively reformat all existing line objects
foreach $lineObject (grep {$self->{$_}} keys %objects) {
$self->{$lineObject}->{_dirty} = 1;
};
return 1;
}
sub fromText {
my $class = shift;
my $text = shift;
my $fullParse = shift;
my $removeInternalComments = shift;
my $lineObject;
unless ($text) {
confess "fromText called with an empty text reference.";
};
my $self = new $class;
$self->{_text} = \$text;
#handle internal comments
if ($removeInternalComments) {
my $internalComments = SWISS::TextFunc::removeInternalComments(\$text);
$self->{_internalComments} = $internalComments;
}
if ($fullParse) {
$self->fullParse;
}
return $self;
}
sub toText {
my $self = shift;
my $insertCommentLines = shift;
my $lineObject;
# update the object
$self->update();
# recursively update the text representation
foreach $lineObject (keys %objects) {
if (defined $self->{$lineObject}) {
$self->$lineObject()->toText($self->{_text});
}
};
#handle internal comments
if ($insertCommentLines) {
my $internalComments = $self->{_internalComments};
if ($internalComments) {
my @remainingComments = SWISS::TextFunc::restoreInternalComments($self->{_text}, $internalComments);
if (@remainingComments) {
$self->Stars->ZZ->add(@remainingComments);
#update Stars section
$self->Stars->toText($self->{_text});
}
}
}
# Now the object is clean
$self->{_dirty}=0;
return ${$self->{_text}};
}
sub toFastaOld {
my $self = shift;
my $FASTA_LINELEN = 60;
my $result;
# if there is no AC or sequence, return 0 and warn
unless ($self->AC && $self->SQ){
if ($main::opt_warn) {
carp "No Fasta written for $self";
};
return 0;
}
# fasta header ">AC|ID DE - OS"
my $name = $self->DEs->text;
my $organism = $self->OSs->head->text;
my $namelen = 255 - 15 - length($self->ID) - length($organism);
$namelen -= length($self->DEs->hasFragment) + 3
if $self->DEs->hasFragment;
$name =~ s/ \(.+//;
if ((length $name) > $namelen) {
$name = substr($name, 0, $namelen);
$name =~ s/\s+$//;
$name .= '...';
};
$name .= ' (' . $self->DEs->hasFragment . ')'
if $self->DEs->hasFragment;
$result = '>' . $self->AC . '|' . $self->ID . ' ' . $name . ' - ' . $organism;
$result .= "\n";
# format the sequence, $FASTA_LINELEN AAs per line
$result .= join "\n", ($self->SQ =~ m/.{1,$FASTA_LINELEN}/g);
$result .= "\n";
return $result;
}
sub toFasta {
my $self = shift;
my $FASTA_LINELEN = 60;
my $result;
# if there is no AC or sequence, return 0 and warn
unless ($self->AC && $self->SQ){
if ($main::opt_warn) {
carp "No Fasta written for $self";
};
return 0;
}
# fasta header ">sp|AC|ID DE OS= [GN= ]PE= SV="
(my $name = $self->DEs->head->text || '?') =~ s/ precursor$//;
my $os = $self->OSs->head->text || '?';
(my $organism = $os) =~ s/ \(.+$//;
$os =~ s/\([^()]+\([^\)]+\)+//;
while ($os =~ /\(([^()]+)\)/g) {
my $elem = $1;
$organism.= ' ('.$elem.')' if $elem =~ /^strain|^isolate/;
}
my $gn = $self->GNs->getFirst();
(my $pe = $self->PE->toText()) =~ s/:.+$//;
my $sv = $self->DTs->SQ_version();
$name .= ' (' . $self->DEs->hasFragment . ')'
if $self->DEs->hasFragment;
$result = '>' .
($self->isCurated ? 'sp' : 'tr'). '|' .
$self->AC . '|' . $self->ID . ' ' .
$name . ' OS=' . $organism .
($gn ? " GN=$gn" : '').
($pe ? " PE=$pe" : '').
($sv ? " SV=$sv" : '');
$result .= "\n";
# format the sequence, $FASTA_LINELEN AAs per line
$result .= join "\n", ($self->SQ =~ m/.{1,$FASTA_LINELEN}/g);
$result .= "\n";
return $result;
}
# If this funtion returns true for an entry, the entry should be
# processed correctly by swissknife. It does not mean that the entry
# is syntactically correct.
sub syntaxOk {
my $self = shift;
my $text = '';
$text = $self->text;
if ($text =~ /
\A # Beginning of the entry
((ID .*\n)+(\*\* .*\n)*){1}
((AC .*\n)+(\*\* .*\n)*){1}
(DT .*\n){3}
(DE .*\n)*
(GN .*\n)*
(OS .*\n)+
(OG .*\n)*
(OC .*\n)+
(OX .*\n)+
(OH .*\n)*
# Complex expression for Reference blocks
((RN .*\n){1}
(RP .*\n){1}(\*\* .*\n)*
(RC .*\n)*(\*\* .*\n)*
(RX .*\n)*
(RG .*\n)*
(RA .*\n)*
(RT .*\n)*
(\*\* .*NO TITLE.*\n)*
(RL .*\n)+)+
(CC .*\n)*
# Each DR line may be followed by a ** line
((DR .*\n)+(\*\* [^\*].+\n)*)*
(PE .+?\n)?
(KW .*\n)*
(FT .*\n)*
(\*\*.*\n)*
(SQ .*\n){1}
( .*\n)+
(\/\/\n){1} # end-of-entry marker
\Z
/x) {
return 1;
}
else {
return 0;
};
}
# * Data access
sub text {
my $self = shift;
return ${$self->{_text}};
}
# * Convenience methods
sub ID {
my $self = shift;
if (@_) {
carp "Entry::ID is a short cut for reading access. To modify data please use e.g. Entry::IDs::add, Entry::IDs::set\n";
}
else {
return $self->IDs->head;
};
}
sub AC {
my $self = shift;
if (@_) {
carp "Entry::AC is a short cut for reading access. To modify data please use e.g. Entry::ACs::add, Entry::ACs::set\n";
}
else {
return $self->ACs->head;
}
}
sub SQ {
my $self = shift;
return $self->SQs->seq(@_);
}
sub EV {
my $self = shift;
return $self->Stars->EV;
}
# is it a SWISS-PROT, TREMBL or TREMBLNEW entry?
# database_code tries to find it out
sub database_code {
my $self = shift;
# look at the dataclass in the ID line.
# it says STANDARD for SWISS-PROT but
# PRELIMINARY for TREMBL and TREMBLNEW
#
# look at the release in the DT line
# it says REL. for SWISS-PROT
# TREMBLREL. for TREMBL
# EMBLREL. for TREMBLNEW
my $dataclass = $self->IDs->dataClass;
if ($dataclass eq 'STANDARD' || $dataclass eq 'Reviewed') {
# we have found a gold-standard ;-) protein: SWISS-PROT
return 'S';
} elsif ($dataclass eq 'PRELIMINARY' || $dataclass eq 'Unreviewed') {
# we have found an "avalanche of data" protein
my $release = $self->DTs->CREATED_rel || '';
if ($self->AC =~ /[A-Z0-9]{6}/) {
return '3';
}
}
return '?';
}
sub equal {
my ($self, $other) = @_;
return SWISS::BaseClass::equal($self, $other);
};
sub isFragment {
my $self = shift;
return $self->DEs->hasFragment;
}
sub isCurated {
my $self = shift;
return
(($self->text() =~ /^\s*ID.*(STANDARD|Reviewed)/)
||
($self->text() =~ /\n\*\*ZZ CURATED/))
|| 0;
}
sub isVariant {
my $self = shift;
return $self->AC =~ /\-/ || 0;
}
1;
__END__
=head1 Name
SWISS::Entry
=head1 Description
Main module to handle SWISS-PROT entries. One Entry object represents one SWISS-PROT entry and provides an API for its modification.
The basic concept is the idea of lazy parsing. If an Entry object is created from the entry in flat file format, the text is simply stored in the private text attribute of the entry object. The member objects of the entry are only created if they are dereferenced.
=head1 Example
=for html
<PRE>
use SWISS::Entry;
# Read an entire record at a time
$/ = "\/\/\n";
while (<>){
$entry = SWISS::Entry->fromText($_);
print $entry->AC, "\n";
}
</pre>
This minimum program reads entries from a file in SWISS-PROT format and prints the primary accession number for each of the entries.
=head1 Attributes
The following attributes represent member objects. They can be accessed like e.g. $entry->IDs
=over
=item IDs
ID line object
=item ACs
=item DTs
=item DEs
=item GNs
=item OSs
=item OCs
=item Refs
The reference block object
=item CCs
=item KWs
=item DRs
=item FTs
=item Stars
Object for the annotator's section stored in the ** lines.
=item SQs
The sequence object.
=back
=head1 Methods
=over
=item new
Return a new Entry object
=item initialize
Initialise an Entry object and return it.
=item update [force]
Update an
entry. The content of the member objects is written back into the private text
attribute of the entry if necessary. If $force is true, an update of all
member objects is forced.
=item reformat
Reformat all fields of an entry.
=item fromText $text [, $fullParse[, $removeInternalComments]]
Create an Entry object from the text $text. If $fullParse is true, the entry is
parsed at creation time. Otherwise the individual line objects are only
created if they are dereferenced. If $removeInternalComments is true, wild comments
and indentation will be removed from the text before the parsing is done. [NOTE:
wild comments are lines starting with a double asterisk located outside the Stars
section, and indented lines are lines starting with spaces. Both are used internally
by SWISS-PROT annotators during their work and excluded from internal and external
releases.]
=item toText [$insertInternalComments]
Return the entry in flat file text format. If internal comments and indentation
have been removed as specified in the parameters to fromText(), you may wish
to reinsert them in the text output by setting $insertInternalComments to true.
=item toFasta
Return the entry in Fasta format.
=item equal
Returns True if two entries are equal, False otherwise
=back
The following methods are provided for your convenience. They are shortcuts for methods of the individual line objects.
=over
=item ID
Returns the primary ID of the entry.
=item AC
Returns the primary AC of the entry.
=item SQ
Returns the sequence of the entry.
=item EV
Returns the EV (evidence) object of an entry. SWISS-PROT internal method.
=back
=head2 Data access methods
=over
=item text
Returns the current text of the entry.
B<Quick and dirty!> No update of the text is performed before.
=item database_code
Is it a SWISS-PROT, TREMBL or TREMBLNEW entry?
database_code tries to find it out.
Return values are S for SWISS-PROT, 3 for TREMBL, Q for TREMBLNEW, ? for unknown.
=item isFragment
Returns true if the DE line indicates a fragment, or of the entry
contains a NON_CONS or NON_TER feature.
=item isCurated
Returns 1 if the entry is a curated entry,
0 otherwise.
SWISS-PROT internal use only.
|