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

« back to all changes in this revision

Viewing changes to Bio/Factory/ObjectBuilderI.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: ObjectBuilderI.pm,v 1.2 2002/10/22 07:45:14 lapp Exp $
 
1
# $Id: ObjectBuilderI.pm,v 1.5.4.1 2006/10/02 23:10:18 sendu Exp $
2
2
#
3
3
# BioPerl module for Bio::Factory::ObjectBuilderI
4
4
#
53
53
Bioperl modules. Send your comments and suggestions preferably to
54
54
the Bioperl mailing list.  Your participation is much appreciated.
55
55
 
56
 
  bioperl-l@bioperl.org              - General discussion
57
 
  http://bioperl.org/MailList.shtml  - About the mailing lists
 
56
  bioperl-l@bioperl.org                  - General discussion
 
57
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
58
58
 
59
59
=head2 Reporting Bugs
60
60
 
61
61
Report bugs to the Bioperl bug tracking system to help us keep track
62
 
of the bugs and their resolution. Bug reports can be submitted via
63
 
email or the web:
 
62
of the bugs and their resolution. Bug reports can be submitted via the
 
63
web:
64
64
 
65
 
  bioperl-bugs@bioperl.org
66
 
  http://bugzilla.bioperl.org/
 
65
  http://bugzilla.open-bio.org/
67
66
 
68
67
=head1 AUTHOR - Hilmar Lapp
69
68
 
70
69
Email hlapp at gmx.net
71
70
 
72
 
Describe contact details here
73
 
 
74
 
=head1 CONTRIBUTORS
75
 
 
76
 
Additional contributors names and emails here
77
 
 
78
71
=head1 APPENDIX
79
72
 
80
73
The rest of the documentation details each of the object methods.
87
80
 
88
81
 
89
82
package Bio::Factory::ObjectBuilderI;
90
 
use vars qw(@ISA);
91
83
use strict;
92
84
use Carp;
93
 
use Bio::Root::RootI;
94
85
 
95
 
@ISA = qw( Bio::Root::RootI );
 
86
use base qw(Bio::Root::RootI);
96
87
 
97
88
=head2 want_slot
98
89