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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: bioseq_ci.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:22:52  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: bioseq_ci.cpp,v 1000.2 2004/06/01 19:22:52 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. *   Bioseq iterator
  38. *
  39. */
  40. #include <ncbi_pch.hpp>
  41. #include <objmgr/bioseq_ci.hpp>
  42. #include <objmgr/scope.hpp>
  43. #include <objmgr/bioseq_handle.hpp>
  44. #include <objmgr/seq_entry_handle.hpp>
  45. #include <objmgr/impl/scope_impl.hpp>
  46. BEGIN_NCBI_SCOPE
  47. BEGIN_SCOPE(objects)
  48. CBioseq_CI::CBioseq_CI(void)
  49. {
  50.     m_Current = m_Handles.end();
  51. }
  52. CBioseq_CI::CBioseq_CI(const CBioseq_CI& bioseq_ci)
  53. {
  54.     *this = bioseq_ci;
  55. }
  56. CBioseq_CI::~CBioseq_CI(void)
  57. {
  58. }
  59. CBioseq_CI::CBioseq_CI(const CSeq_entry_Handle& entry,
  60.                        CSeq_inst::EMol filter,
  61.                        EBioseqLevelFlag level)
  62.     : m_Scope(&entry.GetScope())
  63. {
  64.     m_Scope->x_PopulateBioseq_HandleSet(entry, m_Handles, filter, level);
  65.     m_Current = m_Handles.begin();
  66. }
  67. CBioseq_CI::CBioseq_CI(CScope& scope, const CSeq_entry& entry,
  68.                        CSeq_inst::EMol filter,
  69.                        EBioseqLevelFlag level)
  70.     : m_Scope(&scope)
  71. {
  72.     m_Scope->x_PopulateBioseq_HandleSet(m_Scope->GetSeq_entryHandle(entry),
  73.                                         m_Handles, filter, level);
  74.     m_Current = m_Handles.begin();
  75. }
  76. CBioseq_CI& CBioseq_CI::operator= (const CBioseq_CI& bioseq_ci)
  77. {
  78.     if (this != &bioseq_ci) {
  79.         m_Scope = bioseq_ci.m_Scope;
  80.         m_Handles = bioseq_ci.m_Handles;
  81.         if ( bioseq_ci ) {
  82.             m_Current = m_Handles.begin() +
  83.                 (bioseq_ci.m_Current - bioseq_ci.m_Handles.begin());
  84.         }
  85.         else {
  86.             m_Current = m_Handles.end();
  87.         }
  88.     }
  89.     return *this;
  90. }
  91. END_SCOPE(objects)
  92. END_NCBI_SCOPE
  93. /*
  94. * ---------------------------------------------------------------------------
  95. * $Log: bioseq_ci.cpp,v $
  96. * Revision 1000.2  2004/06/01 19:22:52  gouriano
  97. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  98. *
  99. * Revision 1.3  2004/05/21 21:42:12  gorelenk
  100. * Added PCH ncbi_pch.hpp
  101. *
  102. * Revision 1.2  2004/03/16 15:47:27  vasilche
  103. * Added CBioseq_set_Handle and set of EditHandles
  104. *
  105. * Revision 1.1  2003/09/30 16:22:02  vasilche
  106. * Updated internal object manager classes to be able to load ID2 data.
  107. * SNP blobs are loaded as ID2 split blobs - readers convert them automatically.
  108. * Scope caches results of requests for data to data loaders.
  109. * Optimized CSeq_id_Handle for gis.
  110. * Optimized bioseq lookup in scope.
  111. * Reduced object allocations in annotation iterators.
  112. * CScope is allowed to be destroyed before other objects using this scope are
  113. * deleted (feature iterators, bioseq handles etc).
  114. * Optimized lookup for matching Seq-ids in CSeq_id_Mapper.
  115. * Added 'adaptive' option to objmgr_demo application.
  116. *
  117. * ===========================================================================
  118. */