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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: alnvec_multi_ds.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/04/12 18:16:01  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_ALN_MULTIPLE___ALNVEC_MULTI_DS__HPP
  10. #define GUI_WIDGETS_ALN_MULTIPLE___ALNVEC_MULTI_DS__HPP
  11. /*  $Id: alnvec_multi_ds.hpp,v 1000.3 2004/04/12 18:16:01 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 <gui/widgets/aln_multiple/alnmulti_ds.hpp>
  42. #include <gui/widgets/aln_multiple/alnvec_row_handle.hpp>
  43. BEGIN_NCBI_SCOPE
  44. /// CAlnVecMultiDataSource - implementation of IAlnMultiDataSource for CAlnVec-based
  45. /// alignments.
  46. class NCBI_GUIWIDGETS_ALNMULTIPLE_EXPORT CAlnVecMultiDataSource
  47.     : public CAlignDataSource,
  48.       public IAlnMultiDataSource
  49. {
  50. public:
  51.     typedef IAlnMultiDataSource::TNumrow TNumrow;
  52.     CAlnVecMultiDataSource();
  53.     ~CAlnVecMultiDataSource();
  54.     virtual int     GetConsensusRow() const;
  55.     virtual TNumrow  GetNumRows (void) const;    
  56.     virtual TSeqPos  GetAlnStart (void) const; 
  57.     virtual TSeqPos  GetAlnStop (void) const;
  58.      
  59.     virtual bool  IsSetAnchor (void) const;
  60.     virtual TNumrow  GetAnchor (void) const; 
  61.     virtual void  SetAnchor (TNumrow anchor); 
  62.     virtual void  UnsetAnchor (void);
  63.     virtual bool    CanGetId(TNumrow row) const;
  64.     virtual const CSeq_id&  GetSeqId(TNumrow row) const;    
  65.     virtual const objects::CBioseq_Handle& GetBioseqHandle (TNumrow row) const;
  66.     virtual TSignedSeqPos GetSeqPosFromAlnPos(TNumrow for_row, TSeqPos aln_pos,
  67.                                 ESearchDirection dir=TSearchDirection::eNone,
  68.                                 bool try_reverse_dir=true) const;
  69.     virtual TSignedSeqPos GetAlnPosFromSeqPos(TNumrow row, TSeqPos seq_pos, 
  70.                                 ESearchDirection dir=TSearchDirection::eNone,
  71.                                 bool try_reverse_dir=true) const;
  72.     virtual const IAlignRowHandle*  GetRowHandle(TNumrow row) const;
  73.     void  SetGapChar (TResidue gap_char);    
  74. protected:
  75.     typedef vector<CAlnVecRowHandle*>    THandleVector;
  76.     THandleVector    m_Handles;
  77.     virtual void x_ClearHandles();
  78.     virtual void x_CreateHandles();
  79. private:
  80.     // prohibit copying!
  81.     CAlnVecMultiDataSource(const CAlnVecMultiDataSource& ds);
  82.     CAlnVecMultiDataSource& operator=(const CAlnVecMultiDataSource& ds);
  83. };
  84. END_NCBI_SCOPE
  85. /*
  86.  * ===========================================================================
  87.  * $Log: alnvec_multi_ds.hpp,v $
  88.  * Revision 1000.3  2004/04/12 18:16:01  gouriano
  89.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.7
  90.  *
  91.  * Revision 1.7  2004/02/11 15:28:55  yazhuk
  92.  * Removed constructors with arguments
  93.  *
  94.  * Revision 1.6  2003/12/10 19:03:20  yazhuk
  95.  * Added const specifier to CanGetId() and GetSeqId().
  96.  *
  97.  * Revision 1.5  2003/12/10 17:03:48  yazhuk
  98.  * Changed row identification from mandatory CBioseqHandle to optional CSeq_id.
  99.  *
  100.  * Revision 1.4  2003/12/08 15:09:49  yazhuk
  101.  * Moved constructors bodies to .cpp
  102.  *
  103.  * Revision 1.3  2003/11/26 16:52:53  johnson
  104.  * switch IAlnMultiDataSource to use CAlnMap::ESearchDirection instead of it's
  105.  * own ESearchDirection
  106.  *
  107.  * Revision 1.2  2003/11/17 21:13:47  yazhuk
  108.  * Made SetGapChar() a non-virtual function
  109.  *
  110.  * Revision 1.1  2003/10/29 23:29:38  yazhuk
  111.  * Initial revision
  112.  *
  113.  * ===========================================================================
  114.  */
  115. #endif  // GUI_WIDGETS_ALN_MULTIPLE___ALNVEC_MULTI_DS__HPP