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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Seq_interval.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:30:51  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Seq_interval.hpp,v 1000.2 2004/06/01 19:30:51 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 ASN data definition file
  42.  *   'seqloc.asn'.
  43.  *
  44.  * ---------------------------------------------------------------------------
  45.  * $Log: Seq_interval.hpp,v $
  46.  * Revision 1000.2  2004/06/01 19:30:51  gouriano
  47.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  48.  *
  49.  * Revision 1.13  2004/05/06 16:54:41  shomrat
  50.  * Added methods to set partial left and right
  51.  *
  52.  * Revision 1.12  2004/01/28 17:15:26  shomrat
  53.  * Added methods to ease the construction of objects
  54.  *
  55.  * Revision 1.11  2003/01/24 20:12:18  vasilche
  56.  * Reverted CSeq_interval::GetLength() fix for negative strands.
  57.  *
  58.  * Revision 1.10  2002/12/26 12:43:42  dicuccio
  59.  * Added Win32 export specifiers
  60.  *
  61.  * Revision 1.9  2002/12/19 20:11:02  grichenk
  62.  * Fixed GetLength() for minus strand
  63.  *
  64.  * Revision 1.8  2002/09/12 21:13:51  kans
  65.  * IsPartialLeft and IsPartialRight are const
  66.  *
  67.  * Revision 1.7  2002/09/12 20:29:55  kans
  68.  * added member functions IsPartialLeft and IsPartialRight
  69.  *
  70.  * Revision 1.6  2002/06/07 11:24:24  clausen
  71.  * Added related function comment
  72.  *
  73.  * Revision 1.5  2002/06/06 20:48:38  clausen
  74.  * Moved IsValid to objects/util/sequence.hpp
  75.  *
  76.  * Revision 1.4  2002/05/03 21:28:04  ucko
  77.  * Introduce T(Signed)SeqPos.
  78.  *
  79.  * Revision 1.3  2002/01/10 18:22:59  clausen
  80.  * Added IsValid
  81.  *
  82.  * Revision 1.2  2001/06/25 18:52:02  grichenk
  83.  * Prohibited copy constructor and assignment operator
  84.  *
  85.  * Revision 1.1  2000/11/17 21:35:02  vasilche
  86.  * Added GetLength() method to CSeq_loc class.
  87.  *
  88.  *
  89.  * ===========================================================================
  90.  */
  91. #ifndef OBJECTS_SEQLOC_SEQ_INTERVAL_HPP
  92. #define OBJECTS_SEQLOC_SEQ_INTERVAL_HPP
  93. // generated includes
  94. #include <objects/seqloc/Seq_interval_.hpp>
  95. // generated classes
  96. BEGIN_NCBI_SCOPE
  97. BEGIN_objects_SCOPE // namespace ncbi::objects::
  98. class NCBI_SEQLOC_EXPORT CSeq_interval : public CSeq_interval_Base
  99. {
  100.     typedef CSeq_interval_Base Tparent;
  101. public:
  102.     // See also related function in util/sequence.hpp:
  103.     //
  104.     //   bool IsValid(const CSeq_interval&, CScope*)
  105.     //
  106.     // constructor
  107.     CSeq_interval(void);
  108.     CSeq_interval(TId& id, TFrom from, TTo to, TStrand strand = eNa_strand_unknown);
  109.     // destructor
  110.     ~CSeq_interval(void);
  111.     // Get the length of the interval
  112.     TSeqPos GetLength(void) const;
  113.     // check left (5') or right (3') end of location for e_Lim fuzz
  114.     bool IsPartialLeft  (void) const;
  115.     bool IsPartialRight (void) const;
  116.     // set / remove e_Lim fuzz on left (5') or right (3') end
  117.     void SetPartialLeft (bool val);
  118.     void SetPartialRight(bool val);
  119.         
  120. private:
  121.     // Prohibit copy constructor & assignment operator
  122.     CSeq_interval(const CSeq_interval&);
  123.     CSeq_interval& operator= (const CSeq_interval&);
  124.     bool x_IsMinusStrand(void) const;
  125. };
  126. /////////////////// CSeq_interval inline methods
  127. // constructor
  128. inline
  129. CSeq_interval::CSeq_interval(void)
  130. {
  131. }
  132. inline
  133. CSeq_interval::CSeq_interval(TId& id, TFrom from, TTo to, TStrand strand)
  134. {
  135.     SetId(id);
  136.     SetFrom(from);
  137.     SetTo(to);
  138.     if ( strand != eNa_strand_unknown ) {
  139.         SetStrand(strand);
  140.     }
  141. }
  142. // length return
  143. inline
  144. TSeqPos CSeq_interval::GetLength(void) const
  145. {
  146.     return ((GetTo() - GetFrom()) + 1);
  147. }
  148. /////////////////// end of CSeq_interval inline methods
  149. END_objects_SCOPE // namespace ncbi::objects::
  150. END_NCBI_SCOPE
  151. #endif // OBJECTS_SEQLOC_SEQ_INTERVAL_HPP