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

« back to all changes in this revision

Viewing changes to Bio/PopGen/GenotypeI.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:
2
2
#
3
3
# BioPerl module for Bio::PopGen::GenotypeI
4
4
#
 
5
# Please direct questions and support issues to <bioperl-l@bioperl.org> 
 
6
#
5
7
# Cared for by Jason Stajich <jason-at-bioperl.org>
6
8
#
7
9
# Copyright Jason Stajich
33
35
  bioperl-l@bioperl.org                  - General discussion
34
36
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
35
37
 
 
38
=head2 Support 
 
39
 
 
40
Please direct usage questions or support issues to the mailing list:
 
41
 
 
42
I<bioperl-l@bioperl.org>
 
43
 
 
44
rather than to the module maintainer directly. Many experienced and 
 
45
reponsive experts will be able look at the problem and quickly 
 
46
address it. Please include a thorough description of the problem 
 
47
with code and data examples if at all possible.
 
48
 
36
49
=head2 Reporting Bugs
37
50
 
38
51
Report bugs to the Bioperl bug tracking system to help us keep track
97
110
   $self->throw_not_implemented();
98
111
}
99
112
 
 
113
 
 
114
=head2 annotation
 
115
 
 
116
 Title   : annotation
 
117
 Usage   : my $annotation_collection = $genotype->annotation;
 
118
 Function: Get/set a Bio::AnnotationCollectionI for this genotype
 
119
 Returns : Bio::AnnotationCollectionI object
 
120
 Args    : [optional set] Bio::AnnotationCollectionI object
 
121
 
 
122
 
 
123
=cut
 
124
 
 
125
sub annotation{
 
126
   my ($self) = @_;
 
127
   $self->throw_not_implemented();
 
128
}
 
129
 
100
130
=head2 get_Alleles
101
131
 
102
132
 Title   : get_Alleles
112
142
   my ($self) = @_;
113
143
   $self->throw_not_implemented();
114
144
}
115
 
 
116
 
1;
 
145
1;