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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: alnvec_multi_ds.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 21:07:18  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: alnvec_multi_ds.cpp,v 1000.2 2004/06/01 21:07:18 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:  Andrey Yazhuk
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/widgets/aln_multiple/alnvec_multi_ds.hpp>
  41. #include <objects/seqloc/Seq_loc.hpp>
  42. #include <objects/seqloc/Seq_interval.hpp>
  43. BEGIN_NCBI_SCOPE
  44. USING_SCOPE(ncbi::objects);
  45. CAlnVecMultiDataSource::CAlnVecMultiDataSource()
  46. {
  47. }
  48. CAlnVecMultiDataSource::~CAlnVecMultiDataSource()
  49. {
  50.     x_ClearHandles();
  51. }
  52. int     CAlnVecMultiDataSource::GetConsensusRow() const
  53. {
  54.     return x_GetConsensusRow();
  55. }
  56. CAlnVecMultiDataSource::TNumrow  CAlnVecMultiDataSource::GetNumRows (void) const 
  57. {
  58.     return (TNumrow) m_AlnMgr->GetNumRows();
  59. }
  60. TSeqPos  CAlnVecMultiDataSource::GetAlnStart (void) const
  61. {
  62.     return m_AlnMgr->GetAlnStart();
  63. }
  64. TSeqPos  CAlnVecMultiDataSource::GetAlnStop (void) const
  65. {
  66.     return m_AlnMgr->GetAlnStop();
  67. }
  68. bool  CAlnVecMultiDataSource::IsSetAnchor (void) const
  69. {
  70.     return m_AlnMgr->IsSetAnchor();
  71. }
  72. CAlnVecMultiDataSource::TNumrow  CAlnVecMultiDataSource::GetAnchor (void) const
  73. {
  74.     return m_AlnMgr->GetAnchor();
  75. }
  76. void  CAlnVecMultiDataSource::SetAnchor (TNumrow anchor)
  77. {
  78.     m_AlnMgr->SetAnchor(anchor);
  79. }
  80. void  CAlnVecMultiDataSource::UnsetAnchor (void)
  81. {
  82.     m_AlnMgr->UnsetAnchor();
  83. }
  84. bool    CAlnVecMultiDataSource::CanGetId(TNumrow row) const
  85. {
  86.     return (row >= 0  &&  row < m_AlnMgr->GetNumRows());
  87. }
  88. const CSeq_id&  CAlnVecMultiDataSource::GetSeqId(TNumrow row) const
  89. {
  90.     return m_AlnMgr->GetSeqId(row);
  91. }
  92. const CBioseq_Handle &  CAlnVecMultiDataSource::GetBioseqHandle(TNumrow row) const
  93. {
  94.     return m_AlnMgr->GetBioseqHandle(row);
  95. }
  96. TSignedSeqPos  CAlnVecMultiDataSource::GetAlnPosFromSeqPos(TNumrow for_row, TSeqPos aln_pos, 
  97.                                                         ESearchDirection dir, 
  98.                                                         bool try_reverse_dir) const 
  99. {
  100.     return m_AlnMgr->GetAlnPosFromSeqPos(for_row, aln_pos, (CAlnVec::ESearchDirection) dir, try_reverse_dir);
  101. }
  102. TSignedSeqPos  CAlnVecMultiDataSource::GetSeqPosFromAlnPos(TNumrow row, TSeqPos seq_pos, 
  103.                                             ESearchDirection dir, 
  104.                                             bool try_reverse_dir) const
  105. {
  106.     return m_AlnMgr->GetSeqPosFromAlnPos(row, seq_pos, (CAlnVec::ESearchDirection) dir, try_reverse_dir);
  107. }
  108. void  CAlnVecMultiDataSource::SetGapChar (TResidue gap_char)
  109. {
  110.     m_AlnMgr->SetGapChar(gap_char);
  111. }
  112. const IAlignRowHandle*  CAlnVecMultiDataSource::GetRowHandle(TNumrow row) const
  113. {
  114.     return static_cast<const IAlignRowHandle*>(m_Handles[row]);
  115. }
  116. void CAlnVecMultiDataSource::x_ClearHandles()
  117. {
  118.     NON_CONST_ITERATE(THandleVector, it, m_Handles) {
  119.         delete *it;
  120.     }
  121.     m_Handles.clear();
  122. }
  123. void CAlnVecMultiDataSource::x_CreateHandles()
  124. {
  125.     TNumrow row_n = m_AlnMgr->GetNumRows();
  126.     m_Handles.resize(row_n);
  127.     for( TNumrow r = 0; r < row_n;  r++ )   {
  128.         m_Handles[r] = new CAlnVecRowHandle(m_AlnMgr, r);
  129.     }
  130. }
  131. END_NCBI_SCOPE
  132. /*
  133.  * ===========================================================================
  134.  * $Log: alnvec_multi_ds.cpp,v $
  135.  * Revision 1000.2  2004/06/01 21:07:18  gouriano
  136.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  137.  *
  138.  * Revision 1.8  2004/05/21 22:27:52  gorelenk
  139.  * Added PCH ncbi_pch.hpp
  140.  *
  141.  * Revision 1.7  2004/04/06 13:37:31  dicuccio
  142.  * Removed dead code
  143.  *
  144.  * Revision 1.6  2004/03/24 19:20:02  yazhuk
  145.  * Commented traces
  146.  *
  147.  * Revision 1.5  2004/02/11 15:26:55  yazhuk
  148.  * Removed constructors with arguments
  149.  *
  150.  * Revision 1.4  2003/12/10 19:03:46  yazhuk
  151.  * Added const specifier to CanGetId() and GetSeqId().
  152.  *
  153.  * Revision 1.3  2003/12/10 17:04:59  yazhuk
  154.  * Changed row identification from mandatory CBioseqHandle to optional CSeq_id.
  155.  * Clean-up
  156.  *
  157.  * Revision 1.2  2003/12/08 15:13:47  yazhuk
  158.  * Moved constructors from .hpp
  159.  *
  160.  * Revision 1.1  2003/10/29 23:29:48  yazhuk
  161.  * Initial revision
  162.  *
  163.  * ===========================================================================
  164.  */