Verifies that this CGI is active and supports the requested binary.

primer_designer.cgi -- server-side wrapper for the primer3 and e-PCR binaries

#
# Design request is made client-side.
#
use Bio::PrimerDesigner;
my $local_obj = Bio::PrimerDesigner (
method => 'remote',
program => 'primer3',
) or die Bio::PrimerDesigner->error;
#
# Get the program input options.
# (See Bio::PrimerDesigner docs for input options.)
#
my %options = %hash_of_input_options;
#
# make request and retrieve results of server-side processing
#
my $result = design( %options );

Copyright (C) 2003-2009 Sheldon McKay <mckays@cshl.edu>, Ken Youens-Clark <kclark@cpan.org>.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 3 or any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

Bio::PrimerDesigner, Bio::PrimerDesigner::primer3, Bio::PrimerDesigner::e-PCR.