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

« back to all changes in this revision

Viewing changes to Bio/DescribableI.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: DescribableI.pm,v 1.6 2002/10/25 01:29:37 lapp Exp $
 
1
# $Id: DescribableI.pm,v 1.10.4.1 2006/10/02 23:10:12 sendu Exp $
2
2
 
3
3
#
4
4
# This module is licensed under the same terms as Perl itself. You use,
37
37
Bioperl modules. Send your comments and suggestions preferably to one
38
38
of the Bioperl mailing lists.  Your participation is much appreciated.
39
39
 
40
 
  bioperl-l@bioperl.org                       - General discussion
41
 
  http://bio.perl.org/MailList.html           - About the mailing lists
 
40
  bioperl-l@bioperl.org                  - General discussion
 
41
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
42
42
 
43
43
=head2 Reporting Bugs
44
44
 
45
45
Report bugs to the Bioperl bug tracking system to help us keep track
46
 
the bugs and their resolution.  Bug reports can be submitted via email
47
 
or the web:
 
46
the bugs and their resolution.  Bug reports can be submitted via the web:
48
47
 
49
 
  bioperl-bugs@bio.perl.org
50
 
  http://bugzilla.bioperl.org/
 
48
  http://bugzilla.open-bio.org/
51
49
 
52
50
=head1 AUTHOR - Ewan Birney
53
51
 
56
54
=cut
57
55
 
58
56
package Bio::DescribableI;
59
 
use vars qw(@ISA );
60
57
use strict;
61
 
use Bio::Root::RootI;
62
 
 
63
 
 
64
 
@ISA = qw(Bio::Root::RootI);
 
58
 
 
59
 
 
60
use base qw(Bio::Root::RootI);
65
61
 
66
62
=head1 Implementation Specific Functions
67
63