Bio::Tools::CodonTable and Bio::Tools::IUPAC: use our and drop BEGIN blocks.
[bioperl-live.git] / lib / Bio / Tools / Run / ParametersI.pm
blob9146c0da51885e9cdc2076afd0cc65d9f4f887f8
2 # BioPerl module for wrapping runtime parameters
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Chad Matsalla (bioinformatics1 at dieselwurks dot com)
8 # Copyright Chad Matsalla
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::Tools::Run::ParametersI - A Base object for the parameters used to run programs
18 =head1 SYNOPSIS
20 # do not use this object directly, it provides the following methods
21 # for its subclasses
23 my $void = $obj->set_parameter("parameter_name","parameter_value");
24 my $value = $obj->get_parameter("parameter_name");
26 =head1 DESCRIPTION
28 This is a basic container to hold the parameters used to run a program.
30 =head1 FEEDBACK
32 =head2 Mailing Lists
34 User feedback is an integral part of the evolution of this and other
35 Bioperl modules. Send your comments and suggestions preferably to
36 the Bioperl mailing list. Your participation is much appreciated.
38 bioperl-l@bioperl.org - General discussion
39 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
41 =head2 Support
43 Please direct usage questions or support issues to the mailing list:
45 I<bioperl-l@bioperl.org>
47 rather than to the module maintainer directly. Many experienced and
48 reponsive experts will be able look at the problem and quickly
49 address it. Please include a thorough description of the problem
50 with code and data examples if at all possible.
52 =head2 Reporting Bugs
54 Report bugs to the Bioperl bug tracking system to help us keep track
55 of the bugs and their resolution. Bug reports can be submitted via the
56 web:
58 https://github.com/bioperl/bioperl-live/issues
60 =head1 AUTHOR - Chad Matsalla
62 Email bioinformatics1 at dieselwurks dot com
64 =head1 APPENDIX
66 The rest of the documentation details each of the object methods.
67 Internal methods are usually preceded with a _
69 =cut
72 # Let the code begin...
75 package Bio::Tools::Run::ParametersI;
77 use strict;
79 # Object preamble - inherits from Bio::Root::Root
82 use base qw(Bio::Root::RootI);
84 =head2 get_parameter
86 Title : get_parameter
87 Usage : $parameter_object->get_parameter($param_name);
88 Function: Get the value of a parameter named $param_name
89 Returns : A scalar that should be a string
90 Args : A scalar that should be a string
92 =cut
94 sub get_parameter {
95 my ($self,$arg) = @_;
96 $self->throw_not_implemented;
100 =head2 set_parameter
102 Title : set_parameter
103 Usage : $parameter_object->set_parameter($param_name => $param_value);
104 Function: Set the value of a parameter named $param_name to $param_value
105 Returns : Void
106 Args : A hash containing name=>value pairs
108 =cut
110 sub set_parameter {
111 my ($self,$name,$value) = @_;
112 $self->throw_not_implemented;