Mercurial > repos > mahtabm > ensembl
comparison variant_effect_predictor/Bio/Factory/ApplicationFactoryI.pm @ 0:1f6dce3d34e0
Uploaded
author | mahtabm |
---|---|
date | Thu, 11 Apr 2013 02:01:53 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1f6dce3d34e0 |
---|---|
1 # $Id: ApplicationFactoryI.pm,v 1.5 2002/10/22 07:38:32 lapp Exp $ | |
2 # | |
3 # BioPerl module for Bio::Factory::ApplicationFactoryI | |
4 # | |
5 # Cared for by Heikki Lehvaslaiho <heikki@ebi.ac.uk> | |
6 # | |
7 # Copyright Heikki Lehvaslaiho | |
8 # | |
9 # You may distribute this module under the same terms as perl itself | |
10 | |
11 # POD documentation - main docs before the code | |
12 | |
13 =head1 NAME | |
14 | |
15 Bio::Factory::ApplicationFactoryI - Interface class for Application Factories | |
16 | |
17 =head1 SYNOPSIS | |
18 | |
19 You wont be using this as an object, but using a derived class. | |
20 | |
21 =head1 DESCRIPTION | |
22 | |
23 Holds common Application Factory attributes in place. | |
24 | |
25 =head1 FEEDBACK | |
26 | |
27 =head2 Mailing Lists | |
28 | |
29 User feedback is an integral part of the evolution of this and other | |
30 Bioperl modules. Send your comments and suggestions preferably to the | |
31 Bioperl mailing lists Your participation is much appreciated. | |
32 | |
33 bioperl-l@bioperl.org - General discussion | |
34 http://bio.perl.org/MailList.html - About the mailing lists | |
35 | |
36 =head2 Reporting Bugs | |
37 | |
38 report bugs to the Bioperl bug tracking system to help us keep track | |
39 the bugs and their resolution. Bug reports can be submitted via | |
40 email or the web: | |
41 | |
42 bioperl-bugs@bio.perl.org | |
43 http://bugzilla.bioperl.org/ | |
44 | |
45 =head1 AUTHOR - Heikki Lehvaslaiho | |
46 | |
47 Email: heikki@ebi.ac.uk | |
48 Address: | |
49 | |
50 EMBL Outstation, European Bioinformatics Institute | |
51 Wellcome Trust Genome Campus, Hinxton | |
52 Cambs. CB10 1SD, United Kingdom | |
53 | |
54 =head1 APPENDIX | |
55 | |
56 The rest of the documentation details each of the object | |
57 methods. Internal methods are usually preceded with a _ | |
58 | |
59 =cut | |
60 | |
61 # Let the code begin... | |
62 | |
63 package Bio::Factory::ApplicationFactoryI; | |
64 use vars qw(@ISA); | |
65 use strict; | |
66 | |
67 use Bio::Root::RootI; | |
68 @ISA = qw(Bio::Root::RootI); | |
69 | |
70 =head2 version | |
71 | |
72 Title : version | |
73 Usage : exit if $prog->version() < 1.8 | |
74 Function: Determine the version number of the program | |
75 Example : | |
76 Returns : float or undef | |
77 Args : none | |
78 | |
79 =cut | |
80 | |
81 sub version { | |
82 shift->throw_not_implemented(); | |
83 } | |
84 | |
85 1; |