/usr/share/perl5/SWISS/CC.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 | package SWISS::CC;
use vars qw($AUTOLOAD @ISA @EXPORT_OK %fields);
use Exporter;
use Carp;
use strict;
use SWISS::BaseClass;
use SWISS::TextFunc;
BEGIN {
@EXPORT_OK = qw();
@ISA = ( 'Exporter', 'SWISS::BaseClass');
%fields = (
topic => undef,
comment => undef
);
}
sub new {
my $ref = shift;
my $class = ref($ref) || $ref;
my $self = new SWISS::BaseClass;
$self->rebless($class);
return $self;
}
sub fromText {
my $class = shift;
my $textRef = shift;
my $self = new SWISS::CC;
my $text = $$textRef;
my ($topic, $comment, $evidence);
if ($text ne '') {
# split into topic and comment.
if ($text =~ /\-\!\-\s+(.*?):\s*(.*)$/x ){
$topic = $1; $comment = $2;
} else {
$topic = '';
$comment = $text;
}
# Parse for evidence tags
if (($evidence) = $comment =~ /($SWISS::TextFunc::evidencePattern)/m) {
my $quotedEvidence = quotemeta $evidence;
$comment =~ s/$quotedEvidence//m;
}
$self->{topic} = $topic;
$self->{comment} = $comment;
$self->evidenceTags($evidence);
}
else {
$self->initialize;
};
$self->{_dirty} = 0;
return $self;
}
sub toString {
my $self = shift;
my $topic = $self -> {topic};
my $comment = $self -> {comment};
my $evidence = $self -> evidenceTags;
my $text = "CC -!- ";
if ($topic) {
$text = $text . $topic . ": ";
};
if ($comment) {
$text = $text . $comment;
};
my $terminalSemiColon = 0;
if ($text =~ s/\;$//) {
$terminalSemiColon = 1;
}
if ($evidence &&
($evidence ne '{}')) {
$text .= $evidence;
}
if ($terminalSemiColon) {
$text .= ";"
} else {
$text .= '.';
}
# specific fix for dealing with the format of 1 special CC section
# note in general text wraping in comments is not guuaranteed to be read-safe
# by SWISSKNIFE
# this specific fix keeps wrapping correct for 1 strcutred CC line
# a better alternative would be to implment this section as a new class
if (defined($topic) and $topic =~ /^DATABASE|WEB RESOURCE$/) {
my @texts = split /; /, $text;
my $size = scalar @texts;
my $newText = "";
my $currentLength = 0;
my $lineLength = $SWISS::TextFunc::lineLength - 8;
for (my $i = 0; $i < $size; $i++) {
$texts[$i] .= ';' if $i<$size-1;
if ($texts[$i] !~ /\S{$lineLength}/) {
$text = SWISS::TextFunc->wrapOn('',
"CC ",
$SWISS::TextFunc::lineLength,
$texts[$i]
);
}
else {
$text = $texts[$i] . "\n";
}
# extra manipulation
my $potentialLength = $currentLength + (length $text) - 1;
if (($currentLength != 0) &&
($potentialLength < $SWISS::TextFunc::lineLength + 1)) {
$newText =~ s/\n$/ /;
$newText = $newText . $text;
$currentLength = $currentLength + (length $text);
} else {
if ($i != 0) {
$text = "CC " . $text;
$currentLength = length $text;
} else {
$currentLength = (length $text) - 1;
}
$newText = $newText . $text;
}
}
return $newText;
} else {
$text = SWISS::TextFunc->wrapOn('',"CC ",
$SWISS::TextFunc::lineLength,
$text);
return $text;
}
}
sub topic {
my ($self,$value) = @_;
if (defined $value) {
$self->{'topic'} = $value;
}
return $self->{'topic'};
}
sub comment {
my ($self,$value) = @_;
if (defined $value) {
$self->{'comment'} = $value;
}
return $self->{'comment'};
}
1;
__END__
=head1 Name
SWISS::CC.pm
=head1 Description
B<SWISS::CC> represents a comment on a single topic within a SWISS-PROT or TrEMBL
entry as specified in the user manual
http://www.expasy.org/sprot/userman.html . Each comment is stored in a
separate object, either of the type SWISS::CC or of another type,
depending on its topic (see SWISS::CCs for more information).
Collectively, comments of all types are stored within a SWISS::CCs container
object.
=head1 Inherits from
SWISS::BaseClass.pm
=head1 Attributes
=over
=item topic
The topic of this comment.
=item comment
The text of this comment.
=back
=head1 Methods
=head2 Standard methods
=over
=item new
=item fromText
=item toString
Returns a string representation of this comment.
=back
|