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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: alnvec_row_handle.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 18:16:07  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_ALN_MULTIPLE___ALNVEC_ROW_HANDLE__HPP
  10. #define GUI_WIDGETS_ALN_MULTIPLE___ALNVEC_ROW_HANDLE__HPP
  11. /*  $Id: alnvec_row_handle.hpp,v 1000.1 2004/04/12 18:16:07 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Andrey Yazhuk
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <objtools/alnmgr/alnvec.hpp>
  43. #include <gui/widgets/aln_multiple/alnmulti_ds.hpp>
  44. BEGIN_NCBI_SCOPE
  45. /// CAlnVecRowHandle is inherited from IAlignRowHandle and represents a row
  46. /// of CAlnVec-based alignment. 
  47. class CAlnVecRowHandle : public IAlignRowHandle
  48. {
  49. public:
  50.     typedef objects::CAlnVec    TAlnVec;
  51.     typedef TAlnVec::TNumrow    TNumrow;
  52.     typedef TAlnVec::TRange     TRange;
  53.     typedef TAlnVec::TSignedRange   TSignedRange;
  54.     CAlnVecRowHandle(const TAlnVec* aln_vec, TNumrow row)
  55.         : m_AlnVec(aln_vec), m_Row(row) {}
  56.     TNumrow     GetRowNum() const;
  57.     const objects::CBioseq_Handle&  GetBioseqHandle() const;
  58.     
  59.     TSignedSeqPos   GetSeqAlnStart() const;
  60.     TSignedSeqPos   GetSeqAlnStop() const;
  61.     TSignedRange    GetSeqAlnRange() const;
  62.     TSignedSeqPos   GetSeqStop() const;  
  63.     bool            IsNegativeStrand() const;  
  64.     string&  GetSeqString (string &buffer, const TRange &seq_rng) const;
  65.     string&  GetAlnSeqString(string &buffer, const TSignedRange &aln_rng) const;    
  66.     TSignedSeqPos  GetAlnPosFromSeqPos(TSeqPos seq_pos, 
  67.                         TAlnVec::ESearchDirection dir = TAlnVec::eNone, 
  68.                         bool try_reverse_dir = true) const;
  69.     TSignedSeqPos  GetSeqPosFromAlnPos(TSeqPos aln_pos, 
  70.                         TAlnVec::ESearchDirection dir = TAlnVec::eNone, 
  71.                         bool try_reverse_dir = true) const;
  72.     
  73.     CRef<TAlnVec::CAlnChunkVec>     GetAlnChunks(const TSignedRange& range,
  74.                                     TAlnVec::TGetChunkFlags flags) const;
  75. protected:
  76.     const objects::CAlnVec* m_AlnVec;
  77.     TNumrow m_Row;
  78. };
  79. inline CAlnVecRowHandle::TNumrow CAlnVecRowHandle::GetRowNum() const
  80. {
  81.     return m_Row;
  82. }
  83. inline const objects::CBioseq_Handle&  CAlnVecRowHandle::GetBioseqHandle() const
  84. {
  85.     return m_AlnVec->GetBioseqHandle(m_Row);
  86. }
  87. inline TSignedSeqPos  CAlnVecRowHandle::GetSeqAlnStart() const
  88. {
  89.     return m_AlnVec->GetSeqAlnStart(m_Row);
  90. }
  91. inline TSignedSeqPos  CAlnVecRowHandle::GetSeqAlnStop() const
  92. {
  93.     return m_AlnVec->GetSeqAlnStop(m_Row);
  94. }
  95. inline TSignedSeqPos  CAlnVecRowHandle::GetSeqStop() const
  96. {
  97.     return m_AlnVec->GetSeqStop(m_Row);
  98. }
  99. inline bool CAlnVecRowHandle::IsNegativeStrand() const
  100. {
  101.     return m_AlnVec->IsNegativeStrand(m_Row);
  102. }
  103. inline CAlnVecRowHandle::TSignedRange  CAlnVecRowHandle::GetSeqAlnRange() const
  104. {
  105.     return m_AlnVec->GetSeqAlnRange(m_Row);
  106. }
  107. inline string&  CAlnVecRowHandle::GetSeqString (string &buffer, 
  108.                                                 const TRange &seq_rng) const
  109. {
  110.     return m_AlnVec->GetSeqString(buffer, m_Row, seq_rng);
  111. }
  112. inline string &  CAlnVecRowHandle::GetAlnSeqString(string &buffer, 
  113.                                           const TSignedRange &aln_rng) const
  114. {
  115.     return m_AlnVec->GetAlnSeqString(buffer, m_Row, aln_rng);
  116. }
  117. inline TSignedSeqPos  CAlnVecRowHandle::GetAlnPosFromSeqPos(TSeqPos seq_pos, 
  118.                         TAlnVec::ESearchDirection dir, 
  119.                         bool try_reverse_dir) const
  120. {
  121.     return m_AlnVec->GetAlnPosFromSeqPos(m_Row, seq_pos, dir, try_reverse_dir);
  122. }
  123.     
  124. inline TSignedSeqPos  CAlnVecRowHandle::GetSeqPosFromAlnPos (TSeqPos aln_pos, 
  125.                     TAlnVec::ESearchDirection dir, 
  126.                     bool try_reverse_dir) const
  127. {
  128.     return m_AlnVec->GetSeqPosFromAlnPos(m_Row, aln_pos, dir, try_reverse_dir);
  129. }
  130. inline CRef<CAlnVecRowHandle::TAlnVec::CAlnChunkVec>     
  131.     CAlnVecRowHandle::GetAlnChunks(const TSignedRange& range, 
  132.                                     TAlnVec::TGetChunkFlags flags) const
  133. {
  134.     return m_AlnVec->GetAlnChunks(m_Row, range, flags);
  135. }
  136. END_NCBI_SCOPE
  137. /*
  138.  * ===========================================================================
  139.  * $Log: alnvec_row_handle.hpp,v $
  140.  * Revision 1000.1  2004/04/12 18:16:07  gouriano
  141.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.4
  142.  *
  143.  * Revision 1.4  2004/03/08 17:15:04  yazhuk
  144.  * Added GetAlnPosFromSeqPos()
  145.  *
  146.  * Revision 1.3  2004/03/02 15:11:21  yazhuk
  147.  * Added IsNegativeStrand()
  148.  *
  149.  * Revision 1.2  2004/01/08 19:38:48  yazhuk
  150.  * Added GetSeqString()
  151.  *
  152.  * Revision 1.1  2003/10/29 23:29:38  yazhuk
  153.  * Initial revision
  154.  *
  155.  * ===========================================================================
  156.  */
  157. #endif  // GUI_WIDGETS_ALN_MULTIPLE___ALNVEC_ROW_HANDLE__HPP