NCBI C++ ToolKit
Public Types | Static Public Member Functions | Private Member Functions | List of all members
CBlastOptionsFactory Class Reference

Search Toolkit Book for CBlastOptionsFactory

Creates BlastOptionsHandle objects with default values for the programs/tasks requested. More...

#include <algo/blast/api/blast_options_handle.hpp>

Public Types

enum  ETaskSets { eNuclNucl , eProtProt , eMapping , eAll }
 Sets of tasks for the command line BLAST binaries. More...
 
typedef CBlastOptions::EAPILocality EAPILocality
 Convenience define. More...
 

Static Public Member Functions

static CBlastOptionsHandleCreate (EProgram program, EAPILocality locality=CBlastOptions::eLocal)
 Creates an options handle object configured with default options for the requested program, throws an exception if an unsupported program is requested. More...
 
static CBlastOptionsHandleCreateTask (string task, EAPILocality locality=CBlastOptions::eLocal)
 Creates an options handle object configured with default options for the requested task, throws an exception if an unsupported task is requested. More...
 
static set< stringGetTasks (ETaskSets choice=eAll)
 Retrieve the set of supported tasks. More...
 
static string GetDocumentation (const string &task_name)
 Return the documentation for the provided task. More...
 

Private Member Functions

 CBlastOptionsFactory ()
 Private c-tor. More...
 

Detailed Description

Creates BlastOptionsHandle objects with default values for the programs/tasks requested.

This factory is provided as a convenience to create CBlastOptionsHandles which are configured with default values for a given program/task and will NOT be modified before passing them to objects which will execute the BLAST algorithm. If you need to set options for the specific task at hand, please instantiate the appropriate CBlastOptionsHandle subclass.

See also
C++ BLAST Options Cookbook

Example:

...
CBl2Seq blaster(query, subject, *opts);
TSeqAlignVector results = blaster.Run();
...
blaster.SetOptionsHandle() = *opts;
results = blaster.Run();
...
blaster.SetOptionsHandle() = *opts;
results = blaster.Run();
...
vector< CRef< objects::CSeq_align_set > > TSeqAlignVector
Vector of Seq-align-sets.
@ eBlastn
Nucl-Nucl (traditional blastn)
Definition: blast_types.hpp:58
@ eMegablast
Nucl-Nucl (traditional megablast)
Definition: blast_types.hpp:65
@ eDiscMegablast
Nucl-Nucl using discontiguous megablast.
Definition: blast_types.hpp:66
Runs the BLAST algorithm between 2 sequences.
Definition: bl2seq.hpp:58
Handle to the options to the BLAST algorithm.
static CBlastOptionsHandle * Create(EProgram program, EAPILocality locality=CBlastOptions::eLocal)
Creates an options handle object configured with default options for the requested program,...
static int * results[]
static string subject
static string query

Definition at line 80 of file blast_options_handle.hpp.


The documentation for this class was generated from the following files:
Modified on Fri Sep 20 14:58:04 2024 by modify_doxy.py rev. 669887