The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Bio::Prospect::Options -- Package for representing options

$Id: Options.pm,v 1.9 2003/11/18 19:45:45 rkh Exp $

SYNOPSIS

 use Bio::Prospect::Options;
 use Bio::Prospect::LocalClient;
 use Bio::SeqIO;
                                                                                                                                    
 my $in = new Bio::SeqIO( -format=> 'Fasta', '-file' => $ARGV[0] );
 my $po = new Bio::Prospect::Options( seq=>1, svm=>1, global_local=>1,
                 templates=>[qw(1bgc 1alu 1rcb 1eera)] );
 my $pf = new Bio::Prospect::LocalClient( {options=>$po} );

 while ( my $s = $in->next_seq() ) {
   my @threads = $pf->thread( $s );
 }

DESCRIPTION

Bio::Prospect::Options represent options.