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

« back to all changes in this revision

Viewing changes to Bio/PopGen/Marker.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:
1
 
# $Id: Marker.pm,v 1.5 2003/06/28 19:42:54 jason Exp $
 
1
# $Id: Marker.pm,v 1.7.4.1 2006/10/02 23:10:23 sendu Exp $
2
2
#
3
3
# BioPerl module for Bio::PopGen::Marker
4
4
#
39
39
Bioperl modules. Send your comments and suggestions preferably to
40
40
the Bioperl mailing list.  Your participation is much appreciated.
41
41
 
42
 
  bioperl-l@bioperl.org              - General discussion
43
 
  http://bioperl.org/MailList.shtml  - About the mailing lists
 
42
  bioperl-l@bioperl.org                  - General discussion
 
43
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
44
44
 
45
45
=head2 Reporting Bugs
46
46
 
48
48
of the bugs and their resolution. Bug reports can be submitted via
49
49
the web:
50
50
 
51
 
  http://bugzilla.bioperl.org/
 
51
  http://bugzilla.open-bio.org/
52
52
 
53
53
=head1 AUTHOR - Jason Stajich
54
54
 
70
70
 
71
71
 
72
72
package Bio::PopGen::Marker;
73
 
use vars qw(@ISA);
74
73
use strict;
75
74
 
76
75
# Object preamble - inherits from Bio::Root::Root
77
76
 
78
 
use Bio::Root::Root;
79
 
use Bio::PopGen::MarkerI;
80
77
 
81
78
use vars qw($UniqueCounter);
82
79
 
83
80
$UniqueCounter = 0;
84
81
 
85
 
@ISA = qw(Bio::Root::Root Bio::PopGen::MarkerI);
 
82
use base qw(Bio::Root::Root Bio::PopGen::MarkerI);
86
83
 
87
84
=head2 new
88
85