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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: origin_item.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:45:08  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: origin_item.cpp,v 1000.1 2004/06/01 19:45:08 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:  Mati Shomrat, NCBI
  35. *
  36. * File Description:
  37. *   Contig item for flat-file
  38. *
  39. */
  40. #include <ncbi_pch.hpp>
  41. #include <corelib/ncbistd.hpp>
  42. #include <objects/seq/Seqdesc.hpp>
  43. #include <objects/seqblock/GB_block.hpp>
  44. #include <objmgr/seqdesc_ci.hpp>
  45. #include <objtools/format/formatter.hpp>
  46. #include <objtools/format/text_ostream.hpp>
  47. #include <objtools/format/items/origin_item.hpp>
  48. #include <objtools/format/context.hpp>
  49. BEGIN_NCBI_SCOPE
  50. BEGIN_SCOPE(objects)
  51. COriginItem::COriginItem(CBioseqContext& ctx) :
  52.     CFlatItem(&ctx), m_Origin(kEmptyStr)
  53. {
  54.     x_GatherInfo(ctx);
  55. }
  56. void COriginItem::Format
  57. (IFormatter& formatter,
  58.  IFlatTextOStream& text_os) const
  59. {
  60.     formatter.FormatOrigin(*this, text_os);
  61. }
  62. void COriginItem::x_GatherInfo(CBioseqContext& ctx)
  63. {
  64.     CSeqdesc_CI gb(ctx.GetHandle(), CSeqdesc::e_Genbank);
  65.     if ( gb ) {
  66.         const CGB_block& gbb = gb->GetGenbank();
  67.         if ( gbb.CanGetOrigin() ) {
  68.             x_SetObject(*gb);
  69.             m_Origin = gbb.GetOrigin();
  70.         }
  71.     }
  72. }
  73. END_SCOPE(objects)
  74. END_NCBI_SCOPE
  75. /*
  76. * ===========================================================================
  77. *
  78. * $Log: origin_item.cpp,v $
  79. * Revision 1000.1  2004/06/01 19:45:08  gouriano
  80. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  81. *
  82. * Revision 1.3  2004/05/21 21:42:54  gorelenk
  83. * Added PCH ncbi_pch.hpp
  84. *
  85. * Revision 1.2  2004/04/22 15:59:03  shomrat
  86. * Changes in context
  87. *
  88. * Revision 1.1  2004/02/19 18:15:55  shomrat
  89. * Initial Revision
  90. *
  91. *
  92. * ===========================================================================
  93. */