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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Seq_point.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:34:43  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Seq_point.cpp,v 1000.1 2004/06/01 19:34:43 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_point.cpp,v $
  46.  * Revision 1000.1  2004/06/01 19:34:43  gouriano
  47.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.7
  48.  *
  49.  * Revision 6.7  2004/05/19 17:26:25  gorelenk
  50.  * Added include of PCH - ncbi_pch.hpp
  51.  *
  52.  * Revision 6.6  2004/05/06 16:55:00  shomrat
  53.  * Added methods to set partial left and right
  54.  *
  55.  * Revision 6.5  2002/09/12 21:17:45  kans
  56.  * IsPartialLeft and IsPartialRight are const
  57.  *
  58.  * Revision 6.4  2002/09/12 20:39:30  kans
  59.  * added member functions IsPartialLeft and IsPartialRight
  60.  *
  61.  * Revision 6.3  2002/06/06 20:49:00  clausen
  62.  * Moved IsValid to objects/util/sequence.cpp
  63.  *
  64.  * Revision 6.2  2002/05/03 21:28:19  ucko
  65.  * Introduce T(Signed)SeqPos.
  66.  *
  67.  * Revision 6.1  2002/01/10 19:12:12  clausen
  68.  * Committing add
  69.  *
  70.  *
  71.  * ===========================================================================
  72.  */
  73. #include <ncbi_pch.hpp>
  74. #include <objects/seqloc/Seq_point.hpp>
  75. // generated classes
  76. BEGIN_NCBI_SCOPE
  77. BEGIN_objects_SCOPE // namespace ncbi::objects::
  78. // destructor
  79. CSeq_point::~CSeq_point(void)
  80. {
  81. }
  82. bool CSeq_point::x_IsMinusStrand(void) const
  83. {
  84.     ENa_strand strand = eNa_strand_unknown;
  85.     if ( IsSetStrand() ) {
  86.         strand = GetStrand();
  87.     }
  88.     return (strand == eNa_strand_minus)  ||  (strand == eNa_strand_both_rev);
  89. }
  90. bool CSeq_point::IsPartialLeft (void) const
  91. {
  92.     if (x_IsMinusStrand()) {
  93.         if (IsSetFuzz ()) {
  94.             const CInt_fuzz & ifp = GetFuzz ();
  95.             if (ifp.IsLim ()  &&  ifp.GetLim () == CInt_fuzz::eLim_gt) {
  96.                 return true;
  97.             }
  98.         }
  99.     } else {
  100.         if (IsSetFuzz ()) {
  101.             const CInt_fuzz & ifp = GetFuzz ();
  102.             if (ifp.IsLim ()  &&  ifp.GetLim () == CInt_fuzz::eLim_lt) {
  103.                 return true;
  104.             }
  105.         }
  106.     }
  107.     return false;
  108. }
  109. bool CSeq_point::IsPartialRight (void) const
  110. {
  111.     if (x_IsMinusStrand()) {
  112.         if (IsSetFuzz ()) {
  113.             const CInt_fuzz & ifp = GetFuzz ();
  114.             if (ifp.IsLim ()  &&  ifp.GetLim () == CInt_fuzz::eLim_lt) {
  115.                 return true;
  116.             }
  117.         }
  118.     } else {
  119.         if (IsSetFuzz ()) {
  120.             const CInt_fuzz & ifp = GetFuzz ();
  121.             if (ifp.IsLim ()  &&  ifp.GetLim () == CInt_fuzz::eLim_gt) {
  122.                 return true;
  123.             }
  124.         }
  125.     }
  126.     return false;
  127. }
  128. // set / remove e_Lim fuzz on left (5') or right (3') end
  129. void CSeq_point::SetPartialLeft (bool val)
  130. {
  131.     if (val == IsPartialLeft()) {
  132.         return;
  133.     }
  134.     if (val) {
  135.         SetFuzz().SetLim(x_IsMinusStrand() ? CInt_fuzz::eLim_gt : CInt_fuzz::eLim_lt);
  136.     } else {
  137.         ResetFuzz();
  138.     }
  139.     _ASSERT(val == IsPartialLeft());
  140. }
  141. void CSeq_point::SetPartialRight(bool val)
  142. {
  143.     if (val == IsPartialRight()) {
  144.         return;
  145.     }
  146.     if ( val ) {
  147.         SetFuzz().SetLim(x_IsMinusStrand() ? CInt_fuzz::eLim_lt : CInt_fuzz::eLim_gt);
  148.     } else {
  149.         ResetFuzz();
  150.     }
  151.     _ASSERT(val == IsPartialRight());
  152. }
  153. END_objects_SCOPE // namespace ncbi::objects::
  154. END_NCBI_SCOPE
  155. /* Original file checksum: lines: 61, chars: 1886, CRC32: 5f7b1244 */