t/AlignIO/AlignIO.t: fix number of tests in plan (fixup c523e6bed866)
[bioperl-live.git] / Bio / Factory / ApplicationFactoryI.pm
blob5dad006dc13e40cac484a943ca6ed9a21f55a154
2 # BioPerl module for Bio::Factory::ApplicationFactoryI
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Heikki Lehvaslaiho <heikki-at-bioperl-dot-org>
8 # Copyright Heikki Lehvaslaiho
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
14 =head1 NAME
16 Bio::Factory::ApplicationFactoryI - Interface class for Application Factories
18 =head1 SYNOPSIS
20 You won't be using this as an object, but using a derived class.
22 =head1 DESCRIPTION
24 Holds common Application Factory attributes in place.
26 =head1 FEEDBACK
28 =head2 Mailing Lists
30 User feedback is an integral part of the evolution of this and other
31 Bioperl modules. Send your comments and suggestions preferably to the
32 Bioperl mailing lists Your participation is much appreciated.
34 bioperl-l@bioperl.org - General discussion
35 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
37 =head2 Support
39 Please direct usage questions or support issues to the mailing list:
41 I<bioperl-l@bioperl.org>
43 rather than to the module maintainer directly. Many experienced and
44 reponsive experts will be able look at the problem and quickly
45 address it. Please include a thorough description of the problem
46 with code and data examples if at all possible.
48 =head2 Reporting Bugs
50 report bugs to the Bioperl bug tracking system to help us keep track
51 the bugs and their resolution. Bug reports can be submitted via the
52 web:
54 https://github.com/bioperl/bioperl-live/issues
56 =head1 AUTHOR - Heikki Lehvaslaiho
58 Email: heikki-at-bioperl-dot-org
60 =head1 APPENDIX
62 The rest of the documentation details each of the object
63 methods. Internal methods are usually preceded with a _
65 =cut
67 # Let the code begin...
69 package Bio::Factory::ApplicationFactoryI;
70 use strict;
72 use base qw(Bio::Root::RootI);
74 =head2 version
76 Title : version
77 Usage : exit if $prog->version() < 1.8
78 Function: Determine the version number of the program
79 Example :
80 Returns : float or undef
81 Args : none
83 =cut
85 sub version {
86 shift->throw_not_implemented();