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

« back to all changes in this revision

Viewing changes to Bio/Restriction/IO/base.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: base.pm,v 1.5 2003/12/15 02:57:22 redwards Exp $
 
1
# $Id: base.pm,v 1.11.4.1 2006/10/02 23:10:23 sendu Exp $
2
2
# BioPerl module for Bio::Restriction::IO::base
3
3
#
4
4
# Cared for by Rob Edwards <redwards@utmem.edu>
32
32
Bioperl modules. Send your comments and suggestions preferably to the
33
33
Bioperl mailing lists Your participation is much appreciated.
34
34
 
35
 
  bioperl-l@bioperl.org                    - General discussion
36
 
  http://bio.perl.org/MailList.html        - About the mailing lists
 
35
  bioperl-l@bioperl.org                  - General discussion
 
36
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
37
37
 
38
38
=head2 Reporting Bugs
39
39
 
40
40
Report bugs to the Bioperl bug tracking system to help us keep track
41
 
the bugs and their resolution.  Bug reports can be submitted via email
42
 
or the web:
 
41
the bugs and their resolution.  Bug reports can be submitted via the
 
42
web:
43
43
 
44
 
  bioperl-bugs@bio.perl.org
45
 
  http://bugzilla.bioperl.org/
 
44
  http://bugzilla.open-bio.org/
46
45
 
47
46
=head1 AUTHOR
48
47
 
50
49
 
51
50
=head1 CONTRIBUTORS
52
51
 
53
 
Heikki Lehvaslaiho, heikki@ebi.ac.uk
 
52
Heikki Lehvaslaiho, heikki-at-bioperl-dot-org
54
53
 
55
54
=head1 APPENDIX
56
55
 
63
62
 
64
63
package Bio::Restriction::IO::base;
65
64
 
66
 
use vars qw(@ISA);
67
65
use strict;
68
66
 
69
 
use Bio::Restriction::IO;
70
67
use Bio::Restriction::Enzyme;
71
68
use Bio::Restriction::EnzymeCollection;
 
69
use Bio::Restriction::Enzyme::MultiCut;
 
70
use Bio::Restriction::Enzyme::MultiSite;
72
71
use Data::Dumper;
73
72
 
74
 
@ISA = qw(Bio::Restriction::IO);
 
73
use base qw(Bio::Restriction::IO);
75
74
 
76
75
my $offset; # class variable
77
76