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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Seq_loc_mix.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:34:40  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.12
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Seq_loc_mix.cpp,v 1000.2 2004/06/01 19:34:40 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:  Eugene Vasilchenko
  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. #include <ncbi_pch.hpp>
  45. #include <objects/seqloc/Seq_loc_mix.hpp>
  46. #include <objects/seqloc/Seq_interval.hpp>
  47. #include <objects/seqloc/Seq_point.hpp>
  48. BEGIN_NCBI_SCOPE
  49. BEGIN_objects_SCOPE // namespace ncbi::objects::
  50. CSeq_loc_mix::CSeq_loc_mix(void)
  51. {
  52.     return;
  53. }
  54. CSeq_loc_mix::~CSeq_loc_mix(void)
  55. {
  56. }
  57. bool CSeq_loc_mix::IsPartialLeft (void) const
  58. {
  59.     return Get ().front ()->IsPartialLeft ();
  60. }
  61. bool CSeq_loc_mix::IsPartialRight (void) const
  62. {
  63.     return Get ().back ()->IsPartialRight ();
  64. }
  65. void CSeq_loc_mix::SetPartialLeft (bool val)
  66. {
  67.     if ( !Set().empty() ) {
  68.         Set().front()->SetPartialLeft(val);
  69.     }
  70.     _ASSERT(val == IsPartialLeft());
  71. }
  72. void CSeq_loc_mix::SetPartialRight(bool val)
  73. {
  74.     if ( !Set().empty() ) {
  75.         Set().front()->SetPartialRight(val);
  76.     }
  77.     _ASSERT(val == IsPartialRight());
  78. }
  79. void CSeq_loc_mix::AddSeqLoc(const CSeq_loc& other)
  80. {
  81.     if ( !other.IsMix() ) {
  82.         CRef<CSeq_loc> loc(new CSeq_loc);
  83.         loc->Assign(other);
  84.         Set().push_back(loc);
  85.     } else {
  86.         // "flatten" the other seq-loc
  87.         ITERATE(CSeq_loc_mix::Tdata, li, other.GetMix().Get()) {
  88.             AddSeqLoc(**li);
  89.         }
  90.     }
  91. }
  92. void CSeq_loc_mix::AddSeqLoc(CSeq_loc& other)
  93. {
  94.     if ( !other.IsMix() ) {
  95.         CRef<CSeq_loc> loc(&other);
  96.         Set().push_back(loc);
  97.     } else {
  98.         // "flatten" the other seq-loc
  99.         NON_CONST_ITERATE(CSeq_loc_mix::Tdata, li, other.SetMix().Set()) {
  100.             AddSeqLoc(**li);
  101.         }
  102.     }
  103. }
  104. void CSeq_loc_mix::AddInterval(const CSeq_id& id, TSeqPos from, TSeqPos to,
  105.                                ENa_strand strand)
  106. {
  107.     CRef<CSeq_loc> loc(new CSeq_loc);
  108.     if (from == to) {
  109.         CSeq_point& pnt = loc->SetPnt();
  110.         pnt.SetPoint(from);
  111.         pnt.SetId().Assign(id);
  112.         if (strand != eNa_strand_unknown) {
  113.             pnt.SetStrand(strand);
  114.         }
  115.     } else {
  116.         CSeq_interval& ival = loc->SetInt();
  117.         ival.SetFrom(from);
  118.         ival.SetTo(to);
  119.         ival.SetId().Assign(id);
  120.         if (strand != eNa_strand_unknown) {
  121.             ival.SetStrand(strand);
  122.         }
  123.     }
  124.     Set().push_back(loc);
  125. }
  126. END_objects_SCOPE // namespace ncbi::objects::
  127. END_NCBI_SCOPE
  128. /*
  129.  * ===========================================================================
  130.  *
  131.  * $Log: Seq_loc_mix.cpp,v $
  132.  * Revision 1000.2  2004/06/01 19:34:40  gouriano
  133.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R6.12
  134.  *
  135.  * Revision 6.12  2004/05/19 17:26:25  gorelenk
  136.  * Added include of PCH - ncbi_pch.hpp
  137.  *
  138.  * Revision 6.11  2004/05/06 16:55:00  shomrat
  139.  * Added methods to set partial left and right
  140.  *
  141.  * Revision 6.10  2004/01/28 17:18:19  shomrat
  142.  * Added methods to ease the construction of objects
  143.  *
  144.  * Revision 6.9  2003/05/23 20:24:56  ucko
  145.  * +AddInterval (also handles points automatically); CVS log -> end;
  146.  * drop workaround for old WorkShop bug
  147.  *
  148.  * Revision 6.8  2002/09/12 21:19:02  kans
  149.  * added IsPartialLeft and IsPartialRight
  150.  *
  151.  * Revision 6.7  2002/06/06 20:51:51  clausen
  152.  * Moved GetLength to objects/util/sequence.cpp
  153.  *
  154.  * Revision 6.6  2002/05/03 21:28:19  ucko
  155.  * Introduce T(Signed)SeqPos.
  156.  *
  157.  * Revision 6.5  2002/04/22 20:09:08  grichenk
  158.  * -GetTotalRange(), GetRangeMap(), ResetRangeMap()
  159.  *
  160.  * Revision 6.4  2002/01/24 23:29:48  vakatov
  161.  * Note for ourselves that the bug workaround "BW_010" is not needed
  162.  * anymore, and we should get rid of it in about half a year
  163.  *
  164.  * Revision 6.3  2002/01/07 05:20:03  vakatov
  165.  * Workaround for the SUN Forte 6 Update 1,2 compiler's internal bug.
  166.  *
  167.  * Revision 6.2  2001/01/03 16:39:05  vasilche
  168.  * Added CAbstractObjectManager - stub for object manager.
  169.  * CRange extracted to separate file.
  170.  *
  171.  * Revision 6.1  2000/11/17 21:35:10  vasilche
  172.  * Added GetLength() method to CSeq_loc class.
  173.  *
  174.  * ===========================================================================
  175.  */