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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: align_ds.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 18:15:37  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS___ALIGN_DS__HPP
  10. #define GUI_WIDGETS___ALIGN_DS__HPP
  11. /*  $Id: align_ds.hpp,v 1000.1 2004/04/12 18:15:37 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:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <objtools/alnmgr/alnvec.hpp>
  43. #include <objmgr/bioseq_handle.hpp>
  44. BEGIN_NCBI_SCOPE
  45. BEGIN_SCOPE(objects)
  46.     class CAlign_CI;
  47.     class CAlnMix;
  48.     class CDense_seg;
  49.     class CSeq_annot;
  50.     class CSeq_align;
  51.     class CBioseq_Handle;
  52. END_SCOPE(objects)
  53. //
  54. // class CAlignDataSource defines the API required of a data source object
  55. // for CAlnVec-based alignment widgets.
  56. //
  57. // This is a bridge interface to the alignment manager and to Genome
  58. // Workbench's data storage mechanism.
  59. class NCBI_GUIWIDGETS_ALNCROSSALN_EXPORT CAlignDataSource : public CObject
  60. {
  61. public:
  62.     CAlignDataSource();
  63.     // create a data source around an existing alignment manager
  64.     virtual void    Init(objects::CAlnVec& vec);
  65.     // create a new data source around an alignment iterator
  66.     virtual void    Init(objects::CAlign_CI& iter, objects::CScope& scope);
  67.     // create a new data source around a seq-align
  68.     virtual void    Init(const objects::CSeq_align& align, objects::CScope& scope);
  69.     // create a new data source around a seq-annot
  70.     virtual void    Init(const objects::CSeq_annot& annot, objects::CScope& scope);
  71.     // create a new data source around a dense-seg
  72.     virtual void    Init(const objects::CDense_seg& seg, objects::CScope& scope);
  73.     virtual void    Init(const objects::CBioseq_Handle& handle, objects::CScope& scope);
  74.     objects::CAlnVec&       SetAlnMgr(void);
  75.     const objects::CAlnVec& GetAlnMgr(void) const;
  76.     // recreates m_AlnMgr adding a row representing consensus
  77.     void    CreateConsensus();
  78.     // new interface
  79.     typedef objects::CAlnVec::TNumrow   TNumrow;  
  80. protected:
  81.     // the alignment manager is stored as an alignment vector
  82.     CRef<objects::CAlnVec> m_AlnMgr;
  83.     int m_ConsRowIndex;
  84. protected:
  85.     void x_Init(objects::CAlnMix& mix);
  86.     virtual void x_ClearHandles();
  87.     virtual void x_CreateHandles();
  88.     // returns index of the consensus row or -1 if it doesn't exist
  89.     int     x_GetConsensusRow() const;
  90. };
  91. END_NCBI_SCOPE
  92. /*
  93.  * ===========================================================================
  94.  * $Log: align_ds.hpp,v $
  95.  * Revision 1000.1  2004/04/12 18:15:37  gouriano
  96.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.6
  97.  *
  98.  * Revision 1.6  2004/02/11 15:08:49  yazhuk
  99.  * Replaced constructors with Init() functions; removed x_Init()
  100.  *
  101.  * Revision 1.5  2003/10/29 23:13:57  yazhuk
  102.  * Moved IAlignRowHandle, CAlnVecRowHandle to widgets/aln)multiple. Moved implementation of interface for CAlnMultiWidget to CAlnVecMutliDataSource
  103.  *
  104.  * Revision 1.4  2003/10/20 15:44:03  yazhuk
  105.  * Clean-up.
  106.  *
  107.  * Revision 1.3  2003/10/15 21:17:31  yazhuk
  108.  * Add to CAlignDataSource functions for providing API to "generic" alignments.
  109.  * Added IAlignRowHandle and CAlnVecRowHandle classes.
  110.  *
  111.  * Revision 1.2  2003/09/25 20:51:29  yazhuk
  112.  * Added support for consensus row
  113.  *
  114.  * Revision 1.1  2003/09/23 20:15:06  dicuccio
  115.  * Initial revision
  116.  *
  117.  * ===========================================================================
  118.  */
  119. #endif  // GUI_WIDGETS___ALIGN_DS__HPP