/usr/share/perl5/Bio/PopGen/Population.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 607 608 609 610 611 612 613 614 615 616 617 618 | #
# BioPerl module for Bio::PopGen::Population
#
# Please direct questions and support issues to <bioperl-l@bioperl.org>
#
# Cared for by Jason Stajich <jason@bioperl.org>
#
# Copyright Jason Stajich
#
# You may distribute this module under the same terms as perl itself
# POD documentation - main docs before the code
=head1 NAME
Bio::PopGen::Population - A population of individuals
=head1 SYNOPSIS
use Bio::PopGen::Population;
use Bio::PopGen::Individual;
my $population = Bio::PopGen::Population->new();
my $ind = Bio::PopGen::Individual->new(-unique_id => 'id');
$population->add_Individual($ind);
for my $ind ( $population->get_Individuals ) {
# iterate through the individuals
}
for my $name ( $population->get_marker_names ) {
my $marker = $population->get_Marker($name);
}
my $num_inds = $population->get_number_individuals;
my $homozygote_f = $population->get_Frequency_Homozygotes;
my $heterozygote_f = $population->get_Frequency_Heterozygotes;
# make a population haploid by making fake chromosomes through
# haplotypes -- ala allele 1 is on chrom 1 and allele 2 is on chrom 2
# the number of individuals created will thus be 2 x number in
# population
my $happop = $population->haploid_population;
=head1 DESCRIPTION
This is a collection of individuals. We'll have ways of generating
L<Bio::PopGen::MarkerI> objects out so we can calculate allele_frequencies
for implementing the various statistical tests.
=head1 FEEDBACK
=head2 Mailing Lists
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to
the Bioperl mailing list. Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bioperl.org/wiki/Mailing_lists - About the mailing lists
=head2 Support
Please direct usage questions or support issues to the mailing list:
I<bioperl-l@bioperl.org>
rather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.
=head2 Reporting Bugs
Report bugs to the Bioperl bug tracking system to help us keep track
of the bugs and their resolution. Bug reports can be submitted via
email or the web:
https://redmine.open-bio.org/projects/bioperl/
=head1 AUTHOR - Jason Stajich
Email jason-at-bioperl.org
=head1 CONTRIBUTORS
Matthew Hahn, matthew.hahn-at-duke.edu
=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::PopGen::Population;
use strict;
# Object preamble - inherits from Bio::Root::Root
use Bio::PopGen::Marker;
use Bio::PopGen::Genotype;
our $CheckISA = 1;
use base qw(Bio::Root::Root Bio::PopGen::PopulationI);
=head2 new
Title : new
Usage : my $obj = Bio::PopGen::Population->new();
Function: Builds a new Bio::PopGen::Population object
Returns : an instance of Bio::PopGen::Population
Args : -individuals => array ref of individuals (optional)
-name => population name (optional)
-source => a source tag (optional)
-description => a short description string of the population (optional)
=cut
sub new {
my($class,@args) = @_;
my $self = $class->SUPER::new(@args);
$self->{'_individuals'} = [];
my ($name,$source,$description,
$inds,$checkisa) = $self->_rearrange([qw(NAME
SOURCE
DESCRIPTION
INDIVIDUALS
CHECKISA)], @args);
if( defined $inds ) {
if( ref($inds) !~ /ARRAY/i ) {
$self->warn("Need to provide a value array ref for the -individuals initialization flag");
} else {
$self->add_Individual(@$inds);
}
}
defined $name && $self->name($name);
defined $source && $self->source($source);
defined $description && $self->description($description);
$self->{'_checkisa'} = defined $checkisa ? $checkisa : $CheckISA;
return $self;
}
=head2 name
Title : name
Usage : my $name = $pop->name
Function: Get the population name
Returns : string representing population name
Args : [optional] string representing population name
=cut
sub name{
my $self = shift;
return $self->{'_name'} = shift if @_;
return $self->{'_name'};
}
=head2 description
Title : description
Usage : my $description = $pop->description
Function: Get the population description
Returns : string representing population description
Args : [optional] string representing population description
=cut
sub description{
my $self = shift;
return $self->{'_description'} = shift if @_;
return $self->{'_description'};
}
=head2 source
Title : source
Usage : my $source = $pop->source
Function: Get the population source
Returns : string representing population source
Args : [optional] string representing population source
=cut
sub source{
my $self = shift;
return $self->{'_source'} = shift if @_;
return $self->{'_source'};
}
=head2 annotation
Title : annotation
Usage : my $annotation_collection = $pop->annotation;
Function: Get/set a Bio::AnnotationCollectionI for this population
Returns : Bio::AnnotationCollectionI object
Args : [optional set] Bio::AnnotationCollectionI object
=cut
sub annotation{
my ($self, $arg) = @_;
return $self->{_annotation} unless $arg;
$self->throw("Bio::AnnotationCollectionI required for argument") unless
ref($arg) && $arg->isa('Bio::AnnotationCollectionI');
return $self->{_annotation} = $arg;
}
=head2 set_Allele_Frequency
Title : set_Allele_Frequency
Usage : $population->set_Allele_Frequency('marker' => { 'allele1' => 0.1});
Function: Sets an allele frequency for a Marker for this Population
This allows the Population to not have individual individual
genotypes but rather a set of overall allele frequencies
Returns : Count of the number of markers
Args : -name => (string) marker name
-allele => (string) allele name
-frequency => (double) allele frequency - must be between 0 and 1
OR
-frequencies => { 'marker1' => { 'allele1' => 0.01,
'allele2' => 0.99},
'marker2' => ...
}
=cut
sub set_Allele_Frequency {
my ($self,@args) = @_;
my ($name,$allele, $frequency,
$frequencies) = $self->_rearrange([qw(NAME
ALLELE
FREQUENCY
FREQUENCIES
)], @args);
if( defined $frequencies ) { # this supercedes the res
if( ref($frequencies) =~ /HASH/i ) {
my ($markername,$alleles);
while( ($markername,$alleles) = each %$frequencies ) {
$self->{'_allele_freqs'}->{$markername} =
Bio::PopGen::Marker->new(-name => $markername,
-allele_freq => $alleles);
}
} else {
$self->throw("Must provide a valid hashref for the -frequencies option");
}
} else {
unless( defined $self->{'_allele_freqs'}->{$name} ) {
$self->{'_allele_freqs'}->{$name} =
Bio::PopGen::Marker->new(-name => $name);
}
$self->{'_allele_freqs'}->{$name}->add_Allele_Frequency($allele,$frequency);
}
return scalar keys %{$self->{'_allele_freqs'}};
}
=head2 add_Individual
Title : add_Individual
Usage : $population->add_Individual(@individuals);
Function: Add individuals to a population
Returns : count of the current number in the object
Args : Array of Individuals
=cut
sub add_Individual{
my ($self,@inds) = @_;
foreach my $i ( @inds ) {
next if ! defined $i;
unless( $self->{'_checkisa'} ? $i->isa('Bio::PopGen::IndividualI') : 1 ) {
$self->warn("cannot add an individual ($i) which is not a Bio::PopGen::IndividualI");
next;
}
}
push @{$self->{'_individuals'}}, @inds;
$self->{'_cached_markernames'} = undef;
$self->{'_allele_freqs'} = {};
return scalar @{$self->{'_individuals'} || []};
}
=head2 remove_Individuals
Title : remove_Individuals
Usage : $population->remove_Individuals(@ids);
Function: Remove individual(s) to a population
Returns : count of the current number in the object
Args : Array of ids
=cut
sub remove_Individuals {
my ($self,@names) = @_;
my $i = 0;
my %namehash; # O(1) lookup will be faster I think
foreach my $n ( @names ) { $namehash{$n}++ }
my @tosplice;
foreach my $ind ( @{$self->{'_individuals'} || []} ) {
unshift @tosplice, $i if( $namehash{$ind->unique_id} );
$i++;
}
foreach my $index ( @tosplice ) {
splice(@{$self->{'_individuals'}}, $index,1);
}
$self->{'_cached_markernames'} = undef;
$self->{'_allele_freqs'} = {};
return scalar @{$self->{'_individuals'} || []};
}
=head2 get_Individuals
Title : get_Individuals
Usage : my @inds = $pop->get_Individuals();
Function: Return the individuals, alternatively restrict by a criteria
Returns : Array of Bio::PopGen::IndividualI objects
Args : none if want all the individuals OR,
-unique_id => To get an individual with a specific id
-marker => To only get individuals which have a genotype specific
for a specific marker name
=cut
sub get_Individuals{
my ($self,@args) = @_;
my @inds = @{$self->{'_individuals'} || []};
return unless @inds;
if( @args ) { # save a little time here if @args is empty
my ($id,$marker) = $self->_rearrange([qw(UNIQUE_ID MARKER)], @args);
if( defined $id ) {
@inds = grep { $_->unique_id eq $id } @inds;
} elsif (defined $marker) {
@inds = grep { $_->has_Marker($marker) } @inds;
}
}
return @inds;
}
=head2 get_Genotypes
Title : get_Genotypes
Usage : my @genotypes = $pop->get_Genotypes(-marker => $name)
Function: Get the genotypes for all the individuals for a specific
marker name
Returns : Array of Bio::PopGen::GenotypeI objects
Args : -marker => name of the marker
=cut
sub get_Genotypes{
my ($self,@args) = @_;
my ($name) = $self->_rearrange([qw(MARKER)],@args);
if( defined $name ) {
return grep { defined $_ } map { $_->get_Genotypes(-marker => $name) }
@{$self->{'_individuals'} || []}
}
$self->warn("You needed to have provided a valid -marker value");
return ();
}
=head2 get_marker_names
Title : get_marker_names
Usage : my @names = $pop->get_marker_names;
Function: Get the names of the markers
Returns : Array of strings
Args : [optional] boolean flag to ignore internal cache status
=cut
sub get_marker_names {
my ($self,$force) = @_;
return @{$self->{'_cached_markernames'} || []}
if( ! $force && defined $self->{'_cached_markernames'});
my %unique;
foreach my $n ( map { $_->get_marker_names } $self->get_Individuals() ) {
$unique{$n}++;
}
my @nms = keys %unique;
if( $nms[0] =~ /^(Site|Codon)/ ) {
# sort by site or codon number and do it in
# a schwartzian transformation baby!
@nms = map { $_->[1] }
sort { $a->[0] <=> $b->[0] }
map { [$_ =~ /^(?:Codon|Site)-(\d+)/, $_] } @nms;
}
$self->{'_cached_markernames'} = [ @nms ];
return @{$self->{'_cached_markernames'} || []};
}
=head2 get_Marker
Title : get_Marker
Usage : my $marker = $population->get_Marker($name)
Function: Get a Bio::PopGen::Marker object based on this population
Returns : Bio::PopGen::MarkerI object
Args : name of the marker
=cut
sub get_Marker{
my ($self,$markername) = @_;
my $marker;
# setup some caching too
if( defined $self->{'_allele_freqs'} &&
defined ($marker = $self->{'_allele_freqs'}->{$markername}) ) {
# marker is now set to the stored value
} else {
my @genotypes = $self->get_Genotypes(-marker => $markername);
$marker = Bio::PopGen::Marker->new(-name => $markername);
if( ! @genotypes ) {
$self->warn("No genotypes for Marker $markername in the population");
} else {
my %alleles;
my $count;
for my $al ( map { $_->get_Alleles} @genotypes ) {
next if($al eq '?');
$count++;
$alleles{$al}++
}
foreach my $allele ( keys %alleles ) {
$marker->add_Allele_Frequency($allele, $alleles{$allele}/$count);
$marker->{_marker_coverage} = $count/2;
}
}
$self->{'_allele_freqs'}->{$markername} = $marker;
}
return $marker;
}
=head2 get_number_individuals
Title : get_number_individuals
Usage : my $count = $pop->get_number_individuals;
Function: Get the count of the number of individuals
Returns : integer >= 0
Args : none
=cut
sub get_number_individuals{
my ($self,$markername) = @_;
if( $self->{'_forced_set_individuals'} ) {
return $self->{'_forced_set_individuals'};
}
unless( defined $markername ) {
return scalar @{$self->{'_individuals'} || []};
} else {
my $number =0;
foreach my $individual ( @{$self->{'_individuals'} || []} ) {
$number++ if( $individual->has_Marker($markername));
}
return $number;
}
}
=head2 set_number_individuals
Title : set_number_individuals
Usage : $pop->set_number_individuals($num);
Function: Fixes the number of individuals, call this with
0 to unset.
Only use this if you know what you are doing,
this is only relavent when you are just adding
allele frequency data for a population and want to
calculate something like theta
Returns : none
Args : individual count, calling it with undef or 0
will reset the value to return a number
calculated from the number of individuals
stored for this population.
=cut
sub set_number_individuals{
my ($self,$indcount) = @_;
return $self->{'_forced_set_individuals'} = $indcount;
}
=head2 get_Frequency_Homozygotes
Title : get_Frequency_Homozygotes
Usage : my $freq = $pop->get_Frequency_Homozygotes;
Function: Calculate the frequency of homozygotes in the population
Returns : fraction between 0 and 1
Args : $markername
=cut
sub get_Frequency_Homozygotes{
my ($self,$marker,$allelename) = @_;
my ($homozygote_count) = 0;
return 0 if ! defined $marker || ! defined $allelename;
$marker = $marker->name if( defined $marker &&
ref($marker) &&
( $self->{'_checkisa'} ?
$marker->isa('Bio::PopGen::MarkerI') : 1));
my $total = $self->get_number_individuals($marker);
foreach my $genotype ( $self->get_Genotypes($marker) ) {
my %alleles = map { $_ => 1} $genotype->get_Alleles();
# what to do for non-diploid situations?
if( $alleles{$allelename} ) {
$homozygote_count++ if( keys %alleles == 1);
}
}
return $total ? $homozygote_count / $total : 0;
}
=head2 get_Frequency_Heterozygotes
Title : get_Frequency_Heterozygotes
Usage : my $freq = $pop->get_Frequency_Homozygotes;
Function: Calculate the frequency of homozygotes in the population
Returns : fraction between 0 and 1
Args : $markername
=cut
sub get_Frequency_Heterozygotes{
my ($self,$marker,$allelename) = @_;
my ($heterozygote_count) = 0;
return 0 if ! defined $marker || ! defined $allelename;
$marker = $marker->name if( defined $marker && ref($marker) &&
($self->{'_checkisa'} ?
$marker->isa('Bio::PopGen::MarkerI') : 1));
if( ref($marker) ) {
$self->warn("Passed in a ".ref($marker). " to has_Marker, expecting either a string or a Bio::PopGen::MarkerI");
return 0;
}
my $total = $self->get_number_individuals($marker);
foreach my $genotype ( $self->get_Genotypes($marker) ) {
my %alleles = map { $_ => 1} $genotype->get_Alleles();
# what to do for non-diploid situations?
if( $alleles{$allelename} ) {
$heterozygote_count++ if( keys %alleles == 2);
}
}
return $total ? $heterozygote_count / $total : 0;
}
=head2 haploid_population
Title : haploid_population
Usage : my $pop = $population->haploid_population;
Function: Make a new population where all the individuals
are haploid - effectively an individual out of each
chromosome an individual has.
Returns : L<Bio::PopGen::PopulationI>
Args : None
=cut
sub haploid_population{
my ($self) = @_;
my @inds;
my @marker_names = $self->get_marker_names;
for my $ind ( $self->get_Individuals ) {
my @chromosomes;
my $id = $ind->unique_id;
# separate genotypes into 'chromosomes'
for my $marker_name( @marker_names ) {
my ($genotype) = $ind->get_Genotypes(-marker => $marker_name);
my $i =0;
for my $allele ( $genotype->get_Alleles ) {
push @{$chromosomes[$i]},
Bio::PopGen::Genotype->new(-marker_name => $marker_name,
-individual_id => $id.".$i",
-alleles => [$allele]);
$i++;
}
}
for my $chrom ( @chromosomes ) {
my $copyind = ref($ind)->new(-unique_id => $id.".1",
-genotypes => $chrom);
push @inds, $ind;
}
}
my $population = ref($self)->new(-name => $self->name,
-source => $self->source,
-description => $self->description,
-individuals => \@inds);
}
1;
|