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

« back to all changes in this revision

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