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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: align_ds.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 21:06:52  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: align_ds.cpp,v 1000.2 2004/06/01 21:06:52 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:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/widgets/aln_data/align_ds.hpp>
  41. #include <objtools/alnmgr/alnmix.hpp>
  42. #include <objmgr/align_ci.hpp>
  43. #include <objects/seqalign/Dense_seg.hpp>
  44. #include <objects/seqalign/Seq_align.hpp>
  45. #include <objects/seq/Seq_annot.hpp>
  46. BEGIN_NCBI_SCOPE
  47. USING_SCOPE(ncbi::objects);
  48. //
  49. // CAlignDataSourceException is a trivial exception class for trapping
  50. // exceptions during initialization.
  51. //
  52. class CAlignDataSourceException : EXCEPTION_VIRTUAL_BASE public CException
  53. {
  54. public:
  55.     // Enumerated list of document management errors
  56.     enum EErrCode {
  57.         eInvalidAnnot
  58.     };
  59.     // Translate the specific error code into a string representations of
  60.     // that error code.
  61.     virtual const char* GetErrCodeString(void) const
  62.     {
  63.         switch (GetErrCode()) {
  64.         case eInvalidAnnot:         return "eInvalidAnnot";
  65.         default:                    return CException::GetErrCodeString();
  66.         }
  67.     }
  68.     NCBI_EXCEPTION_DEFAULT(CAlignDataSourceException, CException);
  69. };
  70. //
  71. // constructors
  72. //
  73. CAlignDataSource::CAlignDataSource()
  74. : m_ConsRowIndex(-1)
  75. {
  76. }
  77. void    CAlignDataSource::Init(CAlnVec& mgr)
  78. {
  79.     m_ConsRowIndex = -1;
  80.     x_ClearHandles();
  81.     m_AlnMgr = &mgr;
  82.     x_CreateHandles();
  83. }
  84. void CAlignDataSource::Init(CAlign_CI& iter, CScope& scope)
  85.     CAlnMix mix(scope);
  86.     for ( ;  iter;  ++iter) {
  87.         mix.Add(*iter);
  88.     }
  89.     x_Init(mix);
  90. }
  91. void CAlignDataSource::Init(const CSeq_align& align, CScope& scope)
  92. {
  93.     CAlnMix mix(scope);
  94.     mix.Add(align);
  95.     x_Init(mix);
  96. }
  97. void CAlignDataSource::Init(const CSeq_annot& annot, CScope& scope)
  98. {
  99.     if ( !annot.GetData().IsAlign() ) {
  100.         NCBI_THROW(CAlignDataSourceException, eInvalidAnnot,
  101.                    "Annotation is not an alignment");
  102.     }
  103.     CAlnMix mix(scope);
  104.     ITERATE (CSeq_annot::TData::TAlign, iter, annot.GetData().GetAlign()) {
  105.         mix.Add(**iter);
  106.     }
  107.     x_Init(mix);
  108. }
  109. void CAlignDataSource::Init(const CDense_seg& seg, CScope& scope)
  110. {
  111.     CAlnMix mix(scope);
  112.     mix.Add(seg);
  113.     x_Init(mix);
  114. }
  115. void CAlignDataSource::Init(const CBioseq_Handle& handle, CScope& scope)
  116. {
  117.     CAlnMix Mix(scope);
  118.     // iterate all alignments on this bioseq handle
  119.     SAnnotSelector sel(CSeq_annot::TData::e_Align);
  120.     CAlign_CI iter(handle, 0, 0, sel);
  121.     
  122.     CAlnMix mix(scope);
  123.     for ( ;  iter;  ++iter) {
  124.         mix.Add(*iter);
  125.     }
  126.     x_Init(mix);
  127. }
  128. void CAlignDataSource::x_Init(CAlnMix& mix)
  129. {
  130.     m_ConsRowIndex = -1;
  131.     x_ClearHandles();
  132.     try {
  133.         mix.Merge(CAlnMix::fGen2EST |
  134.                   CAlnMix::fTryOtherMethodOnFail |
  135.                   CAlnMix::fGapJoin);
  136.         m_AlnMgr.Reset(new CAlnVec(mix.GetDenseg(), mix.GetScope()));
  137.         m_AlnMgr->SetGapChar('-');
  138.     }
  139.     catch (CException& e) {
  140.         LOG_POST(Error << "CAlignDataSource::x_Init(): caught exception: "
  141.                  << e.what());
  142.         throw;
  143.     }
  144.     x_CreateHandles();
  145. }
  146. void CAlignDataSource::x_ClearHandles()
  147. {
  148. }
  149. void CAlignDataSource::x_CreateHandles()
  150. {
  151. }
  152. CAlnVec& CAlignDataSource::SetAlnMgr(void)
  153. {
  154.     return *m_AlnMgr;
  155. }
  156. const CAlnVec& CAlignDataSource::GetAlnMgr(void) const
  157. {
  158.     return *m_AlnMgr;
  159. }
  160. void    CAlignDataSource::CreateConsensus()
  161. {
  162.     if(m_AlnMgr.NotEmpty()  &&  m_ConsRowIndex == -1)    {
  163.         x_ClearHandles();
  164.         CRef<CDense_seg> ds = m_AlnMgr->CreateConsensus(m_ConsRowIndex);     
  165.         m_AlnMgr.Reset(new CAlnVec(*ds, m_AlnMgr->GetScope()));    
  166.         x_CreateHandles();
  167.     }
  168. }
  169.     
  170. int     CAlignDataSource::x_GetConsensusRow() const
  171. {
  172.     return m_ConsRowIndex;
  173. }
  174. END_NCBI_SCOPE
  175. /*
  176.  * ===========================================================================
  177.  * $Log: align_ds.cpp,v $
  178.  * Revision 1000.2  2004/06/01 21:06:52  gouriano
  179.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  180.  *
  181.  * Revision 1.9  2004/05/21 22:27:52  gorelenk
  182.  * Added PCH ncbi_pch.hpp
  183.  *
  184.  * Revision 1.8  2004/02/11 15:08:59  yazhuk
  185.  * Replaced constructors with Init() functions; removed x_Init()
  186.  *
  187.  * Revision 1.7  2003/10/29 23:14:19  yazhuk
  188.  * Moved CAlnVecRowHandle to widgets/aln_multiple. Moved implementation of interface for CAlnMultiWidget to CAlnVecMutliDataSource
  189.  *
  190.  * Revision 1.6  2003/10/20 15:44:25  yazhuk
  191.  * Clean-up.
  192.  *
  193.  * Revision 1.5  2003/10/15 21:17:44  yazhuk
  194.  * Add to CAlignDataSource functions for providing API to "generic" alignments.
  195.  * Added IAlignRowHandle and CAlnVecRowHandle classes.
  196.  *
  197.  * Revision 1.4  2003/10/07 13:44:40  dicuccio
  198.  * Deleted commented lines
  199.  *
  200.  * Revision 1.3  2003/10/06 16:21:05  dicuccio
  201.  * Disable alignment truncation on mix - fixes crash in multiple alignment viewer
  202.  *
  203.  * Revision 1.2  2003/09/25 20:51:50  yazhuk
  204.  * Added support for consensus row
  205.  *
  206.  * Revision 1.1  2003/09/23 20:17:06  dicuccio
  207.  * Initial revision (not built by default)
  208.  *
  209.  * ===========================================================================
  210.  */