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

« back to all changes in this revision

Viewing changes to Bio/DB/QueryI.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: QueryI.pm,v 1.2 2003/06/04 08:36:37 heikki Exp $
 
1
# $Id: QueryI.pm,v 1.5.4.1 2006/10/02 23:10:15 sendu Exp $
2
2
#
3
3
# BioPerl module for Bio::DB::QueryI.pm
4
4
#
54
54
of the Bioperl mailing lists. Your participation
55
55
is much appreciated.
56
56
 
57
 
  bioperl-l@bioperl.org              - General discussion
58
 
  http://bioperl.org/MailList.shtml  - About the mailing lists
 
57
  bioperl-l@bioperl.org                  - General discussion
 
58
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
59
59
 
60
60
=head2 Reporting Bugs
61
61
 
62
 
Report bugs to the Bioperl bug tracking system to
63
 
help us keep track the bugs and their resolution.
64
 
Bug reports can be submitted via email or the
 
62
Report bugs to the Bioperl bug tracking system to help us keep track
 
63
the bugs and their resolution.  Bug reports can be submitted via the
65
64
web:
66
65
 
67
 
  bioperl-bugs@bio.perl.org
68
 
  http://bugzilla.bioperl.org/
 
66
  http://bugzilla.open-bio.org/
69
67
 
70
68
=head1 AUTHOR - Lincoln Stein
71
69
 
83
81
 
84
82
package Bio::DB::QueryI;
85
83
use strict;
86
 
use Bio::Root::RootI;
87
 
 
88
 
use vars qw(@ISA);
89
 
 
90
 
@ISA = qw(Bio::Root::RootI);
 
84
 
 
85
 
 
86
use base qw(Bio::Root::RootI);
91
87
 
92
88
=head2 new
93
89