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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Dense_seg.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:30:36  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Dense_seg.hpp,v 1000.3 2004/06/01 19:30:36 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.  * Author:  .......
  35.  *
  36.  * File Description:
  37.  *   .......
  38.  *
  39.  * Remark:
  40.  *   This code was originally generated by application DATATOOL
  41.  *   using specifications from the data definition file
  42.  *   'seqalign.asn'.
  43.  */
  44. #ifndef OBJECTS_SEQALIGN_DENSE_SEG_HPP
  45. #define OBJECTS_SEQALIGN_DENSE_SEG_HPP
  46. // generated includes
  47. #include <objects/seqalign/Dense_seg_.hpp>
  48. #include <objects/seqalign/seqalign_exception.hpp>
  49. #include <util/range.hpp>
  50. // generated classes
  51. BEGIN_NCBI_SCOPE
  52. BEGIN_objects_SCOPE // namespace ncbi::objects::
  53. // forward declarations
  54. class CSeq_loc;
  55. class NCBI_SEQALIGN_EXPORT CDense_seg : public CDense_seg_Base
  56. {
  57.     typedef CDense_seg_Base Tparent;
  58. public:
  59.     // constructor
  60.     CDense_seg(void);
  61.     // destructor
  62.     ~CDense_seg(void);
  63.     typedef vector<int> TWidths;
  64.     // optional
  65.     // typedef vector<int> TWidths
  66.     bool IsSetWidths(void) const;
  67.     bool CanGetWidths(void) const;
  68.     void ResetWidths(void);
  69.     const TWidths& GetWidths(void) const;
  70.     TWidths& SetWidths(void);
  71.     // Validators
  72.     TDim    CheckNumRows(void)                   const;
  73.     TNumseg CheckNumSegs(void)                   const;
  74.     void    Validate    (bool full_test = false) const;
  75.     // GetSeqRange
  76.     CRange<TSeqPos> GetSeqRange(TDim row) const;
  77.     TSeqPos         GetSeqStart(TDim row) const;
  78.     TSeqPos         GetSeqStop(TDim row) const;
  79.     /// Reverse the segments' orientation
  80.     void Reverse(void);
  81.     /// Swap two rows (changing *order*, not content)
  82.     void SwapRows(TDim row1, TDim row2);
  83.     /// Remap row coords according to a given seq-loc
  84.     /// Optionally, ignore the strand of the loc
  85.     void RemapToLoc(TDim row, const CSeq_loc& loc,
  86.                     bool ignore_strand = false);
  87. private:
  88.     // Prohibit copy constructor and assignment operator
  89.     CDense_seg(const CDense_seg& value);
  90.     CDense_seg& operator=(const CDense_seg& value);
  91.     // data
  92.     Uint4 m_set_State1[1];
  93.     TWidths m_Widths;
  94. };
  95. /////////////////// CDense_seg inline methods
  96. // constructor
  97. inline
  98. CDense_seg::CDense_seg(void)
  99. {
  100.     memset(m_set_State1,0,sizeof(m_set_State1));
  101. }
  102. inline
  103. bool CDense_seg::IsSetWidths(void) const
  104. {
  105.     return ((m_set_State1[0] & 0x3) != 0);
  106. }
  107. inline
  108. bool CDense_seg::CanGetWidths(void) const
  109. {
  110.     return true;
  111. }
  112. inline
  113. const vector<int>& CDense_seg::GetWidths(void) const
  114. {
  115.     return m_Widths;
  116. }
  117. inline
  118. vector<int>& CDense_seg::SetWidths(void)
  119. {
  120.     m_set_State1[0] |= 0x1;
  121.     return m_Widths;
  122. }
  123. inline
  124. void CDense_seg::ResetWidths(void)
  125. {
  126.     m_Widths.clear();
  127.     m_set_State1[0] &= ~0x3;
  128. }
  129. inline
  130. CRange<TSeqPos> CDense_seg::GetSeqRange(TDim row) const
  131. {
  132.     return CRange<TSeqPos>(GetSeqStart(row), GetSeqStop(row));
  133. }
  134. inline
  135. CDense_seg::TDim CDense_seg::CheckNumRows() const
  136. {
  137.     const size_t& dim = GetDim();
  138.     if (dim != GetIds().size()) {
  139.         NCBI_THROW(CSeqalignException, eInvalidAlignment,
  140.                    "CDense_seg::CheckNumRows()"
  141.                    " ids.size is inconsistent with dim");
  142.     }
  143.     return dim;
  144. }
  145. /////////////////// end of CDense_seg inline methods
  146. END_objects_SCOPE // namespace ncbi::objects::
  147. END_NCBI_SCOPE
  148. /*
  149. * ===========================================================================
  150. *
  151. * $Log: Dense_seg.hpp,v $
  152. * Revision 1000.3  2004/06/01 19:30:36  gouriano
  153. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  154. *
  155. * Revision 1.8  2004/05/06 18:23:35  todorov
  156. * + optional ignore_strand param to RemapToLoc
  157. *
  158. * Revision 1.7  2004/04/09 14:31:35  dicuccio
  159. * Back out previous commit - don't automatically set bit 1 and 2 in Set()
  160. *
  161. * Revision 1.6  2004/04/09 14:26:46  dicuccio
  162. * FIxed bug in SetWidths(): use the correct bit to indicate set state
  163. *
  164. * Revision 1.5  2003/11/04 14:46:16  todorov
  165. * +RemapToLoc
  166. *
  167. * Revision 1.4  2003/09/16 15:31:59  todorov
  168. * Added validation methods. Added seq range methods
  169. *
  170. * Revision 1.3  2003/08/26 20:28:38  johnson
  171. * added 'SwapRows' method
  172. *
  173. * Revision 1.2  2003/08/14 19:52:53  todorov
  174. * Added m_Widths to support nuc2prot aligns
  175. *
  176. * Revision 1.1  2003/08/13 18:11:35  johnson
  177. * added 'Reverse' method
  178. *
  179. *
  180. * ===========================================================================
  181. */
  182. #endif // OBJECTS_SEQALIGN_DENSE_SEG_HPP
  183. /* Original file checksum: lines: 93, chars: 2426, CRC32: 48766ca1 */