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

« back to all changes in this revision

Viewing changes to Bio/Coordinate/ResultI.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: ResultI.pm,v 1.1 2003/02/12 10:58:35 heikki Exp $
 
1
# $Id: ResultI.pm,v 1.6.4.1 2006/10/02 23:10:14 sendu Exp $
2
2
#
3
3
# bioperl module for Bio::Coordinate::ResultI
4
4
#
5
 
# Cared for by Heikki Lehvaslaiho <heikki@ebi.ac.uk>
 
5
# Cared for by Heikki Lehvaslaiho <heikki-at-bioperl-dot-org>
6
6
#
7
7
# Copyright Heikki Lehvaslaiho
8
8
#
31
31
Bioperl modules. Send your comments and suggestions preferably to the
32
32
Bioperl mailing lists  Your participation is much appreciated.
33
33
 
34
 
  bioperl-l@bioperl.org                        - General discussion
35
 
  http://bio.perl.org/MailList.html             - About the mailing lists
 
34
  bioperl-l@bioperl.org                  - General discussion
 
35
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
36
36
 
37
37
=head2 Reporting Bugs
38
38
 
39
39
report bugs to the Bioperl bug tracking system to help us keep track
40
 
 the bugs and their resolution.  Bug reports can be submitted via
41
 
 email or the web:
 
40
the bugs and their resolution.  Bug reports can be submitted via the
 
41
web:
42
42
 
43
 
  bioperl-bugs@bio.perl.org
44
 
  http://bugzilla.bioperl.org/
 
43
  http://bugzilla.open-bio.org/
45
44
 
46
45
=head1 AUTHOR - Heikki Lehvaslaiho
47
46
 
48
 
Email:  heikki@ebi.ac.uk
49
 
Address:
50
 
 
51
 
     EMBL Outstation, European Bioinformatics Institute
52
 
     Wellcome Trust Genome Campus, Hinxton
53
 
     Cambs. CB10 1SD, United Kingdom
54
 
 
55
 
=head1 CONTRIBUTORS
56
 
 
57
 
Additional contributors names and emails here
 
47
Email:  heikki-at-bioperl-dot-org
58
48
 
59
49
=head1 APPENDIX
60
50
 
67
57
# Let the code begin...
68
58
 
69
59
package Bio::Coordinate::ResultI;
70
 
use vars qw(@ISA );
71
60
use strict;
72
61
 
73
62
# Object preamble
74
 
use Bio::LocationI;
75
63
 
76
 
@ISA = qw(Bio::LocationI);
 
64
use base qw(Bio::LocationI);
77
65
 
78
66
 
79
67
1;