blast_options_handle.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: blast_options_handle.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 18:05:45  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: blast_options_handle.cpp,v 1000.3 2004/06/01 18:05:45 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Christiam Camacho
  35.  *
  36.  */
  37. /// @file blast_options_handle.cpp
  38. /// Implementation for the CBlastOptionsHandle and the
  39. /// CBlastOptionsFactory classes.
  40. #include <ncbi_pch.hpp>
  41. #include <algo/blast/api/blast_types.hpp>
  42. #include <algo/blast/api/blast_exception.hpp>
  43. #include <algo/blast/api/blast_options_handle.hpp>
  44. #include <algo/blast/api/blast_prot_options.hpp>
  45. #include <algo/blast/api/blastx_options.hpp>
  46. #include <algo/blast/api/tblastn_options.hpp>
  47. #include <algo/blast/api/rpstblastn_options.hpp>
  48. #include <algo/blast/api/tblastx_options.hpp>
  49. #include <algo/blast/api/blast_nucl_options.hpp>
  50. #include <algo/blast/api/disc_nucl_options.hpp>
  51. #include <algo/blast/api/blast_rps_options.hpp>
  52. #include <algo/blast/api/psiblast_options.hpp>
  53. /** @addtogroup AlgoBlast
  54.  *
  55.  * @{
  56.  */
  57. BEGIN_NCBI_SCOPE
  58. BEGIN_SCOPE(blast)
  59. CBlastOptionsHandle::CBlastOptionsHandle(EAPILocality locality)
  60. {
  61.     m_Opts.Reset(new CBlastOptions(locality));
  62. }
  63. void
  64. CBlastOptionsHandle::SetDefaults()
  65. {
  66.     if (m_Opts->GetLocality() == CBlastOptions::eRemote) {
  67.         return;
  68.     }
  69.     
  70.     SetLookupTableDefaults();
  71.     SetQueryOptionDefaults();
  72.     SetInitialWordOptionsDefaults();
  73.     SetGappedExtensionDefaults();
  74.     SetScoringOptionsDefaults();
  75.     SetHitSavingOptionsDefaults();
  76.     SetEffectiveLengthsOptionsDefaults();
  77.     SetSubjectSequenceOptionsDefaults();
  78. }
  79. CBlastOptionsHandle*
  80. CBlastOptionsFactory::Create(EProgram program, EAPILocality locality) THROWS((CBlastException))
  81. {
  82.     CBlastOptionsHandle* retval = NULL;
  83.     switch (program) {
  84.     case eBlastn:
  85. {
  86. CBlastNucleotideOptionsHandle* opts = 
  87. new CBlastNucleotideOptionsHandle(locality);
  88. opts->SetTraditionalBlastnDefaults();
  89. retval = opts;
  90.         break;
  91. }
  92.     case eBlastp:
  93.         retval = new CBlastProteinOptionsHandle(locality);
  94.         break;
  95.     case eBlastx:
  96.         retval = new CBlastxOptionsHandle(locality);
  97.         break;
  98.     case eTblastn:
  99.         retval = new CTBlastnOptionsHandle(locality);
  100.         break;
  101.     case eTblastx:
  102.         retval = new CTBlastxOptionsHandle(locality);
  103.         break;
  104.     case eMegablast:
  105. {
  106. CBlastNucleotideOptionsHandle* opts = 
  107. new CBlastNucleotideOptionsHandle(locality);
  108. opts->SetTraditionalMegablastDefaults();
  109. retval = opts;
  110.         break;
  111. }
  112.     case eDiscMegablast:
  113.         retval = new CDiscNucleotideOptionsHandle(locality);
  114.         break;
  115.     case eRPSBlast:
  116.         retval = new CBlastRPSOptionsHandle(locality);
  117.         break;
  118.     case eRPSTblastn:
  119.         retval = new CRPSTBlastnOptionsHandle(locality);
  120.         break;
  121.         
  122.     case ePSIBlast:
  123.         retval = new CPSIBlastOptionsHandle(locality);
  124.         break;
  125.         
  126.     default:
  127.         NCBI_THROW(CBlastException, eBadParameter,
  128.         "CBlastOptionFactory cannot construct options handle: invalid program");
  129.     }
  130.     return retval;
  131. }
  132. END_SCOPE(blast)
  133. END_NCBI_SCOPE
  134. /* @} */
  135. /*
  136.  * ===========================================================================
  137.  * $Log: blast_options_handle.cpp,v $
  138.  * Revision 1000.3  2004/06/01 18:05:45  gouriano
  139.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  140.  *
  141.  * Revision 1.8  2004/05/21 21:41:02  gorelenk
  142.  * Added PCH ncbi_pch.hpp
  143.  *
  144.  * Revision 1.7  2004/05/17 20:19:55  ucko
  145.  * Trivial compilation fixes.
  146.  *
  147.  * Revision 1.6  2004/05/17 19:42:23  bealer
  148.  * - Add PSIBlast to factory.
  149.  *
  150.  * Revision 1.5  2004/04/16 14:26:39  papadopo
  151.  * add handle construction for translated RPS blast
  152.  *
  153.  * Revision 1.4  2004/03/17 19:40:06  camacho
  154.  * Correct @file doxygen directive
  155.  *
  156.  * Revision 1.3  2004/03/10 14:53:06  madden
  157.  * Add case of eRPSBlast
  158.  *
  159.  * Revision 1.2  2004/01/16 21:51:35  bealer
  160.  * - Changes for Blast4 API
  161.  *
  162.  * Revision 1.1  2003/11/26 18:23:59  camacho
  163.  * +Blast Option Handle classes
  164.  *
  165.  * ===========================================================================
  166.  */