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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: db_traceback.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 18:06:07  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: db_traceback.cpp,v 1000.1 2004/06/01 18:06:07 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.  * Author:  Ilya Dondoshansky
  35.  *
  36.  * File Description:
  37.  *   Class interface for running BLAST traceback only, given the precomputed
  38.  *   preliminary HSP results.
  39.  *
  40.  * ===========================================================================
  41.  */
  42. #include <ncbi_pch.hpp>
  43. #include <algo/blast/api/db_traceback.hpp>
  44. #include "blast_setup.hpp"
  45. #include <algo/blast/core/blast_traceback.h>
  46. #include <algo/blast/core/blast_setup.h>
  47. #include <algo/blast/core/blast_message.h>
  48. BEGIN_NCBI_SCOPE
  49. USING_SCOPE(objects);
  50. BEGIN_SCOPE(blast)
  51. CDbBlastTraceback::CDbBlastTraceback(const TSeqLocVector& queries, 
  52.                        BlastSeqSrc* seq_src, EProgram p, 
  53.                        BlastHSPResults* results)
  54.     : CDbBlast(queries, seq_src, p)
  55. {
  56.     Blast_HSPResultsFree(m_ipResults);
  57.     m_ipResults = results;
  58. }
  59. CDbBlastTraceback::CDbBlastTraceback(const TSeqLocVector& queries, 
  60.                        BlastSeqSrc* seq_src, CBlastOptionsHandle& opts,
  61.                        BlastHSPResults* results)
  62.     : CDbBlast(queries, seq_src, opts)
  63. {
  64.     Blast_HSPResultsFree(m_ipResults);
  65.     m_ipResults = results;
  66. }
  67. int CDbBlastTraceback::SetupSearch()
  68. {
  69.     int status = 0;
  70.     EProgram x_eProgram = GetOptionsHandle().GetOptions().GetProgram();
  71.     
  72.     if ( !m_ibQuerySetUpDone ) {
  73.         double scale_factor;
  74.         x_ResetQueryDs();
  75.         
  76.         SetupQueryInfo(GetQueries(), GetOptionsHandle().GetOptions(), 
  77.                        &m_iclsQueryInfo);
  78.         SetupQueries(GetQueries(), GetOptionsHandle().GetOptions(), 
  79.                      m_iclsQueryInfo, &m_iclsQueries);
  80.         m_ipScoreBlock = 0;
  81.         
  82.         if (x_eProgram == eRPSBlast || x_eProgram == eRPSTblastn)
  83.             scale_factor = GetRPSInfo()->aux_info.scale_factor;
  84.         else
  85.             scale_factor = 1.0;
  86.         Blast_Message* blast_message = NULL;
  87.         
  88.         /* Pass NULL lookup segments and output filtering locations pointers
  89.            in the next call, to indicate that we don't need them here. */
  90.         BLAST_MainSetUp(x_eProgram, GetQueryOpts(), GetScoringOpts(),
  91.             GetHitSaveOpts(), m_iclsQueries, m_iclsQueryInfo, scale_factor,
  92.             NULL, NULL, &m_ipScoreBlock, &blast_message);
  93.         if (blast_message)
  94.             GetErrorMessage().push_back(blast_message);
  95.         BLAST_GapAlignSetUp(x_eProgram, GetSeqSrc(), 
  96.             GetScoringOpts(), GetEffLenOpts(), GetExtnOpts(), GetHitSaveOpts(),
  97.             m_iclsQueryInfo, m_ipScoreBlock, &m_ipScoringParams,
  98.             &m_ipExtParams, &m_ipHitParams, &m_ipEffLenParams, &m_ipGapAlign);
  99.     }
  100.     return status;
  101. }
  102. void
  103. CDbBlastTraceback::RunSearchEngine()
  104. {
  105.     Int2 status;
  106.     status = 
  107.         BLAST_ComputeTraceback(GetOptionsHandle().GetOptions().GetProgram(), 
  108.             m_ipResults, m_iclsQueries, m_iclsQueryInfo,
  109.             GetSeqSrc(), m_ipGapAlign, m_ipScoringParams, m_ipExtParams, 
  110.             m_ipHitParams, m_ipEffLenParams, GetDbOpts(), NULL);
  111. }
  112. /// Resets query data structures; does only part of the work in the base 
  113. /// CDbBlast class
  114. void
  115. CDbBlastTraceback::x_ResetQueryDs()
  116. {
  117.     m_ibQuerySetUpDone = false;
  118.     // should be changed if derived classes are created
  119.     m_iclsQueries.Reset(NULL);
  120.     m_iclsQueryInfo.Reset(NULL);
  121.     m_ipScoreBlock = BlastScoreBlkFree(m_ipScoreBlock);
  122.     m_ipScoringParams = BlastScoringParametersFree(m_ipScoringParams);
  123.     m_ipExtParams = BlastExtensionParametersFree(m_ipExtParams);
  124.     m_ipHitParams = BlastHitSavingParametersFree(m_ipHitParams);
  125.     m_ipEffLenParams = BlastEffectiveLengthsParametersFree(m_ipEffLenParams);
  126.     m_ipGapAlign = BLAST_GapAlignStructFree(m_ipGapAlign);
  127.     sfree(m_ipDiagnostics);
  128.     NON_CONST_ITERATE(TBlastError, itr, m_ivErrors) {
  129.         *itr = Blast_MessageFree(*itr);
  130.     }
  131. }
  132. END_SCOPE(blast)
  133. END_NCBI_SCOPE
  134. /*
  135.  * ===========================================================================
  136.  *
  137.  * $Log: db_traceback.cpp,v $
  138.  * Revision 1000.1  2004/06/01 18:06:07  gouriano
  139.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  140.  *
  141.  * Revision 1.10  2004/05/21 21:41:02  gorelenk
  142.  * Added PCH ncbi_pch.hpp
  143.  *
  144.  * Revision 1.9  2004/05/14 17:16:32  dondosha
  145.  * BlastReturnStat structure changed to BlastDiagnostics and refactored
  146.  *
  147.  * Revision 1.8  2004/05/12 12:19:33  madden
  148.  * Add (NULL) psi_options to call to BLAST_ComputeTraceback
  149.  *
  150.  * Revision 1.7  2004/05/07 15:30:09  papadopo
  151.  * use BlastScoringParameters instead of BlastScoringOptions
  152.  *
  153.  * Revision 1.6  2004/05/05 15:28:56  dondosha
  154.  * Renamed functions in blast_hits.h accordance with new convention Blast_[StructName][Task]
  155.  *
  156.  * Revision 1.5  2004/04/30 16:53:06  dondosha
  157.  * Changed a number of function names to have the same conventional Blast_ prefix
  158.  *
  159.  * Revision 1.4  2004/03/16 23:30:59  dondosha
  160.  * Changed mi_ to m_i in member field names
  161.  *
  162.  * Revision 1.3  2004/03/15 19:57:00  dondosha
  163.  * Merged TwoSequences and Database engines
  164.  *
  165.  * Revision 1.2  2004/03/09 18:54:06  dondosha
  166.  * Setup now needs the effective lengths parameters structure
  167.  *
  168.  * Revision 1.1  2004/02/24 18:20:42  dondosha
  169.  * Class derived from CDbBlast to do only traceback, given precomputed HSP results
  170.  *
  171.  *
  172.  * ===========================================================================
  173.  */