~ubuntu-branches/ubuntu/precise/bioperl/precise

« back to all changes in this revision

Viewing changes to Bio/PopGen/PopulationI.pm

  • Committer: Bazaar Package Importer
  • Author(s): Ilya Barygin
  • Date: 2010-01-27 22:48:22 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100127224822-ebot4qbrjxcv38au
Tags: 1.6.1-1ubuntu1
* Merge from Debian testing, remaining changes:
  - disable tests, they produce a FTBFS trying to access the network 
    during run.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: PopulationI.pm 10525 2006-09-26 22:03:22Z sendu $
 
1
# $Id: PopulationI.pm 16123 2009-09-17 12:57:27Z cjfields $
2
2
#
3
3
# BioPerl module for Bio::PopGen::PopulationI
4
4
#
 
5
# Please direct questions and support issues to <bioperl-l@bioperl.org> 
 
6
#
5
7
# Cared for by Jason Stajich <jason@bioperl.org>
6
8
#
7
9
# Copyright Jason Stajich
53
55
  bioperl-l@bioperl.org                  - General discussion
54
56
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
55
57
 
 
58
=head2 Support 
 
59
 
 
60
Please direct usage questions or support issues to the mailing list:
 
61
 
 
62
I<bioperl-l@bioperl.org>
 
63
 
 
64
rather than to the module maintainer directly. Many experienced and 
 
65
reponsive experts will be able look at the problem and quickly 
 
66
address it. Please include a thorough description of the problem 
 
67
with code and data examples if at all possible.
 
68
 
56
69
=head2 Reporting Bugs
57
70
 
58
71
Report bugs to the Bioperl bug tracking system to help us keep track
136
149
   $self->throw_not_implemented();
137
150
}
138
151
 
 
152
 
 
153
=head2 annotation
 
154
 
 
155
 Title   : annotation
 
156
 Usage   : my $annotation_collection = $pop->annotation;
 
157
 Function: Get/set a Bio::AnnotationCollectionI for this population
 
158
 Returns : Bio::AnnotationCollectionI object
 
159
 Args    : [optional set] Bio::AnnotationCollectionI object
 
160
 
 
161
 
 
162
=cut
 
163
 
 
164
sub annotation{
 
165
   my ($self) = @_;
 
166
   $self->throw_not_implemented();
 
167
}
 
168
 
139
169
=head2 get_Individuals
140
170
 
141
171
 Title   : get_Individuals
150
180
 
151
181
=cut
152
182
 
 
183
 
153
184
sub get_Individuals{
154
185
    shift->throw_not_implemented();
155
186
}