1 # BioPerl module for Bio::Tools::Primer::AssessorI
3 # Please direct questions and support issues to <bioperl-l@bioperl.org>
5 # Cared for by Ewan Birney <birney@ebi.ac.uk>
7 # Copyright Ewan Birney
9 # You may distribute this module under the same terms as perl itself
11 # POD documentation - main docs before the code
15 Bio::Tools::Primer::AssessorI - interface for assessing primer pairs
19 use Bio::Tools::Primer::AssessorI;
21 if( $obj->isa('Bio::Tools::Primer::AssessorI') ) {
22 my $score = $obj->assess($primer_pair);
28 The Primer Assessor interface provides a interface for scoring
29 functions of primer pairs to comply to. It is mainly used by
30 Bio::Tools::Primer::Design module
36 User feedback is an integral part of the evolution of this and other
37 Bioperl modules. Send your comments and suggestions preferably to
38 the Bioperl mailing list. Your participation is much appreciated.
40 bioperl-l@bioperl.org - General discussion
41 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
45 Please direct usage questions or support issues to the mailing list:
47 I<bioperl-l@bioperl.org>
49 rather than to the module maintainer directly. Many experienced and
50 reponsive experts will be able look at the problem and quickly
51 address it. Please include a thorough description of the problem
52 with code and data examples if at all possible.
56 Report bugs to the Bioperl bug tracking system to help us keep track
57 of the bugs and their resolution. Bug reports can be submitted via the
60 https://github.com/bioperl/bioperl-live/issues
62 =head1 AUTHOR - Ewan Birney
64 Email birney-at-ebi.ac.uk
68 The rest of the documentation details each of the object methods.
69 Internal methods are usually preceded with a _
74 # Let the code begin...
76 package Bio
::Tools
::Primer
::AssessorI
;
80 use base
qw(Bio::Root::RootI);
84 $self->throw_not_implemented();