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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: seq_entry_ci.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:23:55  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: seq_entry_ci.cpp,v 1000.1 2004/06/01 19:23:55 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: Aleksey Grichenko, Eugene Vasilchenko
  35. *
  36. * File Description:
  37. *    Handle to Seq-entry object
  38. *
  39. */
  40. #include <ncbi_pch.hpp>
  41. #include <objmgr/seq_entry_ci.hpp>
  42. #include <objmgr/impl/seq_entry_info.hpp>
  43. #include <objmgr/impl/scope_impl.hpp>
  44. #include <objmgr/impl/bioseq_set_info.hpp>
  45. #include <objects/seqset/Bioseq_set.hpp>
  46. BEGIN_NCBI_SCOPE
  47. BEGIN_SCOPE(objects)
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CSeq_entry_CI
  50. /////////////////////////////////////////////////////////////////////////////
  51. CSeq_entry_CI::CSeq_entry_CI(const CSeq_entry_Handle& entry)
  52. {
  53.     x_Initialize(entry.GetSet());
  54. }
  55. CSeq_entry_CI::CSeq_entry_CI(const CBioseq_set_Handle& seqset)
  56. {
  57.     x_Initialize(seqset);
  58. }
  59. void CSeq_entry_CI::x_Initialize(const CBioseq_set_Handle& seqset)
  60. {
  61.     if ( seqset ) {
  62.         m_Parent = seqset;
  63.         m_Iterator = seqset.x_GetInfo().GetSeq_set().begin();
  64.         x_SetCurrentEntry();
  65.     }
  66. }
  67. void CSeq_entry_CI::x_SetCurrentEntry(void)
  68. {
  69.     if ( m_Parent && m_Iterator != m_Parent.x_GetInfo().GetSeq_set().end() ) {
  70.         m_Current = CSeq_entry_Handle(m_Parent.GetScope(), **m_Iterator);
  71.     }
  72.     else {
  73.         m_Current.Reset();
  74.     }
  75. }
  76. CSeq_entry_CI& CSeq_entry_CI::operator ++(void)
  77. {
  78.     if ( *this ) {
  79.         ++m_Iterator;
  80.         x_SetCurrentEntry();
  81.     }
  82.     return *this;
  83. }
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CSeq_entry_I
  86. /////////////////////////////////////////////////////////////////////////////
  87. CSeq_entry_I::CSeq_entry_I(const CSeq_entry_EditHandle& entry)
  88. {
  89.     x_Initialize(entry.SetSet());
  90. }
  91. CSeq_entry_I::CSeq_entry_I(const CBioseq_set_EditHandle& seqset)
  92. {
  93.     x_Initialize(seqset);
  94. }
  95. void CSeq_entry_I::x_Initialize(const CBioseq_set_EditHandle& seqset)
  96. {
  97.     if ( seqset ) {
  98.         m_Parent = seqset;
  99.         m_Iterator = seqset.x_GetInfo().SetSeq_set().begin();
  100.         x_SetCurrentEntry();
  101.     }
  102. }
  103. void CSeq_entry_I::x_SetCurrentEntry(void)
  104. {
  105.     if ( m_Parent && m_Iterator != m_Parent.x_GetInfo().SetSeq_set().end() ) {
  106.         m_Current = CSeq_entry_EditHandle(m_Parent.GetScope(), **m_Iterator);
  107.     }
  108.     else {
  109.         m_Current.Reset();
  110.     }
  111. }
  112. CSeq_entry_I& CSeq_entry_I::operator ++(void)
  113. {
  114.     if ( *this ) {
  115.         ++m_Iterator;
  116.         x_SetCurrentEntry();
  117.     }
  118.     return *this;
  119. }
  120. END_SCOPE(objects)
  121. END_NCBI_SCOPE
  122. /*
  123. * ---------------------------------------------------------------------------
  124. * $Log: seq_entry_ci.cpp,v $
  125. * Revision 1000.1  2004/06/01 19:23:55  gouriano
  126. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  127. *
  128. * Revision 1.4  2004/05/21 21:42:13  gorelenk
  129. * Added PCH ncbi_pch.hpp
  130. *
  131. * Revision 1.3  2004/03/31 17:08:07  vasilche
  132. * Implemented ConvertSeqToSet and ConvertSetToSeq.
  133. *
  134. * Revision 1.2  2004/03/22 16:51:10  grichenk
  135. * Fixed CSeq_entry_CI initialization
  136. *
  137. * Revision 1.1  2004/03/16 15:47:28  vasilche
  138. * Added CBioseq_set_Handle and set of EditHandles
  139. *
  140. * Revision 1.3  2004/02/09 22:09:14  grichenk
  141. * Use CConstRef for id
  142. *
  143. * Revision 1.2  2004/02/09 19:18:54  grichenk
  144. * Renamed CDesc_CI to CSeq_descr_CI. Redesigned CSeq_descr_CI
  145. * and CSeqdesc_CI to avoid using data directly.
  146. *
  147. * Revision 1.1  2003/11/28 15:12:31  grichenk
  148. * Initial revision
  149. *
  150. *
  151. * ===========================================================================
  152. */