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

« back to all changes in this revision

Viewing changes to Bio/LiveSeq/Repeat_Unit.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: Repeat_Unit.pm,v 1.8 2003/06/04 08:36:40 heikki Exp $
 
1
# $Id: Repeat_Unit.pm,v 1.9.4.1 2006/10/02 23:10:21 sendu Exp $
2
2
#
3
3
# bioperl module for Bio::LiveSeq::Repeat_Unit
4
4
#
28
28
 
29
29
Email:  Insana@ebi.ac.uk, jinsana@gmx.net
30
30
 
31
 
Address: 
32
 
 
33
 
     EMBL Outstation, European Bioinformatics Institute
34
 
     Wellcome Trust Genome Campus, Hinxton
35
 
     Cambs. CB10 1SD, United Kingdom 
36
 
 
37
31
=head1 APPENDIX
38
32
 
39
33
The rest of the documentation details each of the object
46
40
package Bio::LiveSeq::Repeat_Unit;
47
41
 
48
42
use strict;
49
 
use vars qw(@ISA);
50
 
use Bio::LiveSeq::Repeat_Region; # uses Repeat_Region, inherits from it
51
 
@ISA=qw(Bio::LiveSeq::Repeat_Region);
 
43
use base qw(Bio::LiveSeq::Repeat_Region);
52
44
 
53
45
=head2 new
54
46