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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Seq_loc_mix.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:30:56  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Seq_loc_mix.hpp,v 1000.2 2004/06/01 19:30:56 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. #ifndef OBJECTS_SEQLOC_SEQ_LOC_MIX_HPP
  45. #define OBJECTS_SEQLOC_SEQ_LOC_MIX_HPP
  46. // generated includes
  47. #include <objects/seqloc/Seq_loc_mix_.hpp>
  48. #include <objects/seqloc/Na_strand.hpp>
  49. // generated classes
  50. BEGIN_NCBI_SCOPE
  51. BEGIN_objects_SCOPE // namespace ncbi::objects::
  52. class NCBI_SEQLOC_EXPORT CSeq_loc_mix : public CSeq_loc_mix_Base
  53. {
  54.     typedef CSeq_loc_mix_Base Tparent;
  55. public:
  56.     // constructor
  57.     CSeq_loc_mix(void);
  58.     // destructor
  59.     ~CSeq_loc_mix(void);
  60.     
  61.     //
  62.     // See related function in util/sequence.hpp:
  63.     //
  64.     //   TSeqPos GetLength(const CSeq_loc_mix&, CScope*)
  65.     //
  66.     // check left (5') or right (3') end of location for e_Lim fuzz
  67.     bool IsPartialLeft  (void) const;
  68.     bool IsPartialRight (void) const;
  69.     // set / remove e_Lim fuzz on left (5') or right (3') end
  70.     void SetPartialLeft (bool val);
  71.     void SetPartialRight(bool val);
  72.     // Add a Seq-loc to the mix.
  73.     // NB: This is just a structural change, no guarantees as to the biological
  74.     // validity of the data are made.
  75.     // See sequence::MergeLocations(..) for context aware function.
  76.     void AddSeqLoc(const CSeq_loc& other);
  77.     void AddSeqLoc(CSeq_loc& other);
  78.     // convenience function; automatically optimizes down points
  79.     void AddInterval(const CSeq_id& id, TSeqPos from, TSeqPos to,
  80.                      ENa_strand strand = eNa_strand_unknown);
  81.         
  82. private:
  83.     // Prohibit copy constructor & assignment operator
  84.     CSeq_loc_mix(const CSeq_loc_mix&);
  85.     CSeq_loc_mix& operator= (const CSeq_loc_mix&);
  86. };
  87. /////////////////// CSeq_loc_mix inline methods
  88. /////////////////// end of CSeq_loc_mix inline methods
  89. END_objects_SCOPE // namespace ncbi::objects::
  90. END_NCBI_SCOPE
  91. /*
  92.  * ===========================================================================
  93.  *
  94.  * $Log: Seq_loc_mix.hpp,v $
  95.  * Revision 1000.2  2004/06/01 19:30:56  gouriano
  96.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15
  97.  *
  98.  * Revision 1.15  2004/05/06 16:54:41  shomrat
  99.  * Added methods to set partial left and right
  100.  *
  101.  * Revision 1.14  2004/01/28 17:15:37  shomrat
  102.  * Added methods to ease the construction of objects
  103.  *
  104.  * Revision 1.13  2003/05/23 20:23:57  ucko
  105.  * +AddInterval (also handles points automatically); CVS log -> end
  106.  *
  107.  * Revision 1.12  2002/12/26 12:43:42  dicuccio
  108.  * Added Win32 export specifiers
  109.  *
  110.  * Revision 1.11  2002/09/12 21:15:11  kans
  111.  * added IsPartialLeft and IsPartialRight
  112.  *
  113.  * Revision 1.10  2002/06/07 11:47:38  clausen
  114.  * Added relate function comment
  115.  *
  116.  * Revision 1.9  2002/06/06 20:52:24  clausen
  117.  * Moved GetLength to objects/util/sequence.cpp
  118.  *
  119.  * Revision 1.8  2002/05/03 21:28:04  ucko
  120.  * Introduce T(Signed)SeqPos.
  121.  *
  122.  * Revision 1.7  2002/04/22 20:09:06  grichenk
  123.  * -GetTotalRange(), GetRangeMap(), ResetRangeMap()
  124.  *
  125.  * Revision 1.6  2001/08/24 13:45:01  grichenk
  126.  * included <memory>
  127.  *
  128.  * Revision 1.5  2001/08/23 22:33:49  vakatov
  129.  * + <memory>
  130.  *
  131.  * Revision 1.4  2001/06/25 18:52:02  grichenk
  132.  * Prohibited copy constructor and assignment operator
  133.  *
  134.  * Revision 1.3  2001/01/05 20:11:42  vasilche
  135.  * CRange, CRangeMap were moved to util.
  136.  *
  137.  * Revision 1.2  2001/01/03 16:38:59  vasilche
  138.  * Added CAbstractObjectManager - stub for object manager.
  139.  * CRange extracted to separate file.
  140.  *
  141.  * Revision 1.1  2000/11/17 21:35:03  vasilche
  142.  * Added GetLength() method to CSeq_loc class.
  143.  *
  144.  * ===========================================================================
  145.  */
  146. #endif // OBJECTS_SEQLOC_SEQ_LOC_MIX_HPP