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

生物技术

开发平台:

C/C++

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