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

« back to all changes in this revision

Viewing changes to Bio/Search/Result/WABAResult.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: WABAResult.pm,v 1.2 2002/10/22 07:45:18 lapp Exp $
 
1
# $Id: WABAResult.pm,v 1.5.4.1 2006/10/02 23:10:24 sendu Exp $
2
2
#
3
3
# BioPerl module for Bio::Search::Result::WABAResult
4
4
#
36
36
Bioperl modules. Send your comments and suggestions preferably to
37
37
the Bioperl mailing list.  Your participation is much appreciated.
38
38
 
39
 
  bioperl-l@bioperl.org              - General discussion
40
 
  http://bioperl.org/MailList.shtml  - About the mailing lists
 
39
  bioperl-l@bioperl.org                  - General discussion
 
40
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
41
41
 
42
42
=head2 Reporting Bugs
43
43
 
44
44
Report bugs to the Bioperl bug tracking system to help us keep track
45
 
of the bugs and their resolution. Bug reports can be submitted via
46
 
email or the web:
 
45
of the bugs and their resolution. Bug reports can be submitted via the
 
46
web:
47
47
 
48
 
  bioperl-bugs@bioperl.org
49
 
  http://bugzilla.bioperl.org/
 
48
  http://bugzilla.open-bio.org/
50
49
 
51
50
=head1 AUTHOR - Jason Stajich
52
51
 
53
52
Email jason@bioperl.org
54
53
 
55
 
Describe contact details here
56
 
 
57
 
=head1 CONTRIBUTORS
58
 
 
59
 
Additional contributors names and emails here
60
 
 
61
54
=head1 APPENDIX
62
55
 
63
56
The rest of the documentation details each of the object methods.
70
63
 
71
64
 
72
65
package Bio::Search::Result::WABAResult;
73
 
use vars qw(@ISA);
74
66
use strict;
75
67
 
76
 
use Bio::Search::Result::GenericResult;
77
68
 
78
 
@ISA = qw( Bio::Search::Result::GenericResult );
 
69
use base qw(Bio::Search::Result::GenericResult);
79
70
 
80
71
=head2 new
81
72