~ubuntu-branches/ubuntu/raring/bioperl/raring

« back to all changes in this revision

Viewing changes to Bio/PopGen/GenotypeI.pm

  • Committer: Bazaar Package Importer
  • Author(s): Charles Plessy
  • Date: 2008-03-18 14:44:57 UTC
  • mfrom: (4 hardy)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20080318144457-1jjoztrvqwf0gruk
* debian/control:
  - Removed MIA Matt Hope (dopey) from the Uploaders field.
    Thank you for your work, Matt. I hope you are doing well.
  - Downgraded some recommended package to the 'Suggests' priority,
    according to the following discussion on Upstream's mail list.
    http://bioperl.org/pipermail/bioperl-l/2008-March/027379.html
    (Closes: #448890)
* debian/copyright converted to machine-readable format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
Bioperl modules. Send your comments and suggestions preferably to
31
31
the Bioperl mailing list.  Your participation is much appreciated.
32
32
 
33
 
  bioperl-l@bioperl.org              - General discussion
34
 
  http://bioperl.org/MailList.shtml  - About the mailing lists
 
33
  bioperl-l@bioperl.org                  - General discussion
 
34
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
35
35
 
36
36
=head2 Reporting Bugs
37
37
 
39
39
of the bugs and their resolution. Bug reports can be submitted via
40
40
email or the web:
41
41
 
42
 
  http://bugzilla.bioperl.org/
 
42
  http://bugzilla.open-bio.org/
43
43
 
44
44
=head1 AUTHOR - Jason Stajich
45
45
 
46
46
Email jason-at-bioperl.org
47
47
 
48
 
Describe contact details here
49
 
 
50
 
=head1 CONTRIBUTORS
51
 
 
52
 
Additional contributors names and emails here
53
 
 
54
48
=head1 APPENDIX
55
49
 
56
50
The rest of the documentation details each of the object methods.
63
57
 
64
58
 
65
59
package Bio::PopGen::GenotypeI;
66
 
use vars qw(@ISA);
67
60
use strict;
68
61
 
69
 
use Bio::Root::RootI;
70
62
 
71
 
@ISA = qw( Bio::Root::RootI );
 
63
use base qw(Bio::Root::RootI);
72
64
 
73
65
=head2 marker_name
74
66