/usr/share/perl5/GO/Metadata/Panther.pm is in libgo-perl 0.13-3.
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 | package GO::Metadata::Panther;
use strict;
use warnings;
use Exporter;
use base qw/Exporter/;
use Memoize;
use List::Util qw/sum first/;
use Data::Dumper;
our @EXPORT_OK = qw/@species/;
=head1 NAME
GO::Metadata::Panther - Species info for data used by Panther Clusters
=head1 SYNOPSIS
use GO::Metadata::Panther qw/@species/;
for my $species (@species) {
# do something
}
Or
use GO::Metadata::Panther;
my $s = GO::Metadata::Panther->code('YEAST');
=head1 DESCRIPTION
Accesses information related to species in the Panther F<seq2pthr.gz>
file. This file can be fetched from:
L<ftp://ftp.pantherdb.org/genome/pthr7.0/>
Each item in the exportable C<@species> array contains a hash
reference for each species. The items in that hash are:
=over
=item code
A scalar or the UniProt species code.
=item ncbi_taxa_id
A scalar reference of NCBI taxa ids that items in the GO database
match. This should only be one id, but sometimes it's useful to scan
multiple.
=back
For a complete list of every UniProt species matched to a NCBI taxa
L<http://www.uniprot.org/docs/speclist>
=cut
# These need to be in the order you wish to view them on the AmiGO
# dist png.
#
# For reference genomes, the first number is the ncbi_taxa_id list
# needs to be the reference in AmiGO::Aid::ReferenceGenome
our @species =
(
#
# A
#
{ # Anopheles gambiae
code => 'ANOGA',
ncbi_taxa_id => [ 7165 ],
prefer => [ 'Gene' ],
},
{ # Arabidopsis thaliana
code => 'ARATH',
ncbi_taxa_id => [ 3702 ],
},
{ # Aquifex aeolicus
code => 'AQUAE',
ncbi_taxa_id => [ 63363 ],
},
{ # Ashbya gossypii ATCC 10895
code => 'ASHGO',
ncbi_taxa_id => [ 33169 ],
},
#
# B
#
{ # Bacillus subtilis,
code => 'BACSU',
ncbi_taxa_id => [ 1423 ],
},
{ # Bacteroides thetaiotaomicron
code => 'BACTN',
ncbi_taxa_id => [ 818 ],
},
{ # Bos taurus
code => 'BOVIN',
ncbi_taxa_id => [ 9913 ],
},
{ # Bradyrhizobium japonicum
code => 'BRAJA',
# matches the two UniProtKB items in GO
ncbi_taxa_id => [ 375 ],
},
#
# C
#
{ # Caenorhabditis briggsae
code => 'CAEBR',
ncbi_taxa_id => [ 6238 ],
},
{ # Caenorhabditis elegans
code => 'CAEEL',
ncbi_taxa_id => [ 6239 ],
prefer => [ 'WB' ],
},
{ # Canis lupus familiaris
code => 'CANFA',
ncbi_taxa_id => [ 9615 ],
prefer => [ 'UniProtKB' ],
},
{ # Chlamydia trachomatis
code => 'CHLTA',
ncbi_taxa_id => [ 315277 ],
},
{ # Chlamydomonas reinhardtii
code => 'CHLRE',
ncbi_taxa_id => [ 3055 ],
# found 11 of them
},
{
code => 'CHLAA',
ncbi_taxa_id => [ 324602 ],
},
{ # Ciona intestinalis
code => 'CIOIN',
ncbi_taxa_id => [ 7719 ],
},
#
# D
#
{ # Danio rerio
code => 'DANRE',
ncbi_taxa_id => [ 7955 ],
prefer => [ 'ZFIN' ],
},
{ # Deinococcus radiodurans
code => 'DEIRA',
ncbi_taxa_id => [ 1299 ],
},
{ # Dictyostelium discoideum
code => 'DICDI',
ncbi_taxa_id => [ 44689 ],
},
{ # Drosophila melanogaster
code => 'DROME',
ncbi_taxa_id => [ 7227 ],
prefer => [ 'FB' ],
},
#
# E
#
{ # Emericella nidulans
code => 'EMENI',
ncbi_taxa_id => [ 162425 ],
},
{ # Entamoeba histolytica
code => 'ENTHI',
ncbi_taxa_id => [ 5759 ]
},
{ # Escherichia coli
code => 'ECOLI',
ncbi_taxa_id => [ 83333, 511145 ],
prefer => [ 'EcoCyc' ],
},
#
# G
#
{ # Gallus gallus
code => 'CHICK',
ncbi_taxa_id => [ 9031 ],
prefer => [ 'UniProtKB' ],
},
{ # Geobacter sulfurreducens
code => 'GEOSL',
ncbi_taxa_id => [ 35554 ],
},
{ # Gloeobacter violaceus
code => 'GLOVI',
ncbi_taxa_id => [ 33072, 251221 ],
# 251221 is only here to match GLOVI|ENTREZ:2601616|UniProtKB
prefer => [ 'UniProtKB' ],
},
#
# H
#
{ # Homo sapiens
code => 'HUMAN',
ncbi_taxa_id => [ 9606 ],
prefer => [ 'ENSEMBL', 'UniProtKB' ],
},
#
# L
#
{ # Leishmania major
code => 'LEIMA',
ncbi_taxa_id => [ 5664, 347515 ],
},
{ # Leptospira interrogans
code => 'LEPIN',
# only gets one
ncbi_taxa_id => [ 173 ],
},
#
# M
#
{ # Macaca mulatta
code => 'MACMU',
ncbi_taxa_id => [ 9544 ],
},
{ # Methanosarcina acetivorans
code => 'METAC',
ncbi_taxa_id => [ 2214 ],
},
{ # Monodelphis domestica
code => 'MONDO',
ncbi_taxa_id => [ 13616 ],
},
{ # Mus musculus
code => 'MOUSE',
ncbi_taxa_id => [ 10090 ],
prefer => [ 'MGI' ],
},
#
# N
#
{ # Neurospora crassa
code => 'NEUCR',
ncbi_taxa_id => [ 5141 ],
},
#
# O
#
{ # Ornithorhynchus anatinus
code => 'ORNAN',
ncbi_taxa_id => [ 9258 ],
},
{ # Oryza sativa
code => 'ORYSJ',
ncbi_taxa_id => [ 39947 ],
},
#
# P
#
{ # Pan troglodytes
code => 'PANTR',
ncbi_taxa_id => [ 9598 ],
},
{ # Plasmodium yoelii
code => 'PLAYO',
ncbi_taxa_id => [ 73239 ],
},
{ # Pseudomonas aeruginosa
code => 'PSEA7',
ncbi_taxa_id => [ 381754 ],
},
#
# R
#
{ # Rattus norvegicus
code => 'RAT',
ncbi_taxa_id => [ 10116 ],
prefer => [ 'RGD', 'UniProtKB' ],
},
#
# S
#
{ # Saccharomyces cerevisiae
code => 'YEAST',
ncbi_taxa_id => [ 4932 ],
},
{ # Schizosaccharomyces pombe
code => 'SCHPO',
ncbi_taxa_id => [ 4896 ],
},
{ # Streptomyces coelicolor
code => 'STRCO',
ncbi_taxa_id => [ 1902 ],
},
{ # Strongylocentrotus purpuratus
code => 'STRPU',
ncbi_taxa_id => [ 7668 ],
},
{ # Sulfolobus solfataricus
code => 'SULSO',
ncbi_taxa_id => [ 2287 ],
},
#
# T
#
{ # Takifugu rubripes
code => 'FUGRU', # UniProt calls this: TAKRU
ncbi_taxa_id => [ 31033 ],
},
{ # Tetrahymena thermophila
code => 'TETTH',
ncbi_taxa_id => [ 5911, 312017 ],
},
{ # Thermotoga maritima
code => 'THEMA',
ncbi_taxa_id => [ 2336 ],
},
#
# X
#
{ # Xenopus', '(Silurana) tropicalis
code => 'XENTR',
ncbi_taxa_id => [ 8364 ],
},
);
=head2 Constructors
The constructors scans C<@species> for the requested data and returns
the object that matches the data. Otherwise it returns a false false.
=over
=item my $s = GO::Metadata::Panther->code(I<unicode_species_code>)
Return an object filled with the species reference from the UniProtKB
species code.
=cut
memoize('code');
sub code{
my $class = shift;
my $code = shift;
for my $species (@species) {
if ($species->{code} eq $code) {
return bless $species, $class;
}
}
return undef;
}
=item my $s = GO::Metadata::Panther->ncbi(I<ncbi_taxa_id>)
Greate an object from the I<ncbi_taxa_id>.
=cut
sub ncbi{
my $class = shift;
my $ncbi = shift;
for my $species (@species) {
if (first {
$ncbi == $_;
} @{ $species->{ncbi_taxa_id} }) {
return bless $species, $class;
}
}
return undef
}
=back
=head2 Function
Functions that can be used outside of the OO interface.
=over
=item GO::Metadata::Panther::codes()
Returns a list of all UniProt species codes in C<@species>.
=cut
sub codes{
return map { $_->{code} } @species;
}
=item GO::Metadata::Panther::valid_codes(I<unicode_species_code>)
Send it a list of panther Unicode codes, returns true if they are all
present in C<@species>. Othewise returns false.
=cut
sub valid_codes{
return scalar(@_) == sum(map {
__PACKAGE__->code($_) ? 1 : 0;
} @_);
}
=back
=head2 OO Function
=over
=item $s->ncbi_ids()
Returns the list of NCBI taxa identifiers associated with the UniProt
species code. In a perfect word this will only every return one
value. In any case, the first value will be the actual numeric
identifier associated.
=cut
sub ncbi_ids{
my $s = shift;
return @{ $s->{ncbi_taxa_id} };
}
=back
=head2 AUTHOR
Sven Heinicke E<lt>sven@genomics.princeton.edu</gt>
=cut
1;
|