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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: version_item.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:45:40  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: version_item.cpp,v 1000.1 2004/06/01 19:45: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:  Mati Shomrat, NCBI
  35. *
  36. * File Description:
  37. *   flat-file generator -- version item implementation
  38. *
  39. */
  40. #include <ncbi_pch.hpp>
  41. #include <corelib/ncbistd.hpp>
  42. #include <objects/seq/Bioseq.hpp>
  43. #include <objtools/format/formatter.hpp>
  44. #include <objtools/format/text_ostream.hpp>
  45. #include <objtools/format/items/version_item.hpp>
  46. #include <objtools/format/context.hpp>
  47. BEGIN_NCBI_SCOPE
  48. BEGIN_SCOPE(objects)
  49. CVersionItem::CVersionItem(CBioseqContext& ctx) :
  50.     CFlatItem(&ctx),
  51.     m_Gi(0)
  52. {
  53.     x_GatherInfo(ctx);
  54. }
  55. void CVersionItem::Format
  56. (IFormatter& formatter,
  57.  IFlatTextOStream& text_os) const
  58. {
  59.     formatter.FormatVersion(*this, text_os);
  60. }
  61. int CVersionItem::GetGi(void) const
  62. {
  63.     return m_Gi;
  64. }
  65. const string& CVersionItem::GetAccession(void) const
  66. {
  67.     return m_Accession;
  68. }
  69. /***************************************************************************/
  70. /*                                  PRIVATE                                */
  71. /***************************************************************************/
  72. void CVersionItem::x_GatherInfo(CBioseqContext& ctx)
  73. {
  74.     if ( ctx.GetPrimaryId() != 0 ) {
  75.         const CSeq_id& id = *ctx.GetPrimaryId();
  76.         switch ( id.Which() ) {
  77.         case CSeq_id::e_Genbank:
  78.         case CSeq_id::e_Embl:
  79.         case CSeq_id::e_Ddbj:
  80.         case CSeq_id::e_Other:
  81.         case CSeq_id::e_Pir:
  82.         case CSeq_id::e_Swissprot:
  83.         case CSeq_id::e_Prf:
  84.         case CSeq_id::e_Pdb:
  85.         case CSeq_id::e_Tpg:
  86.         case CSeq_id::e_Tpe:
  87.         case CSeq_id::e_Tpd:
  88.             m_Accession = ctx.GetAccession();
  89.             break;
  90.         default:
  91.             break;
  92.         }        
  93.     }
  94.     ITERATE (CBioseq::TId, id, ctx.GetBioseqIds()) {
  95.         if ( (*id)->IsGi() ) { 
  96.             m_Gi = (*id)->GetGi();
  97.             break;
  98.         }
  99.     }
  100. }
  101. END_SCOPE(objects)
  102. END_NCBI_SCOPE
  103. /*
  104. * ===========================================================================
  105. *
  106. * $Log: version_item.cpp,v $
  107. * Revision 1000.1  2004/06/01 19:45:40  gouriano
  108. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  109. *
  110. * Revision 1.7  2004/05/21 21:42:54  gorelenk
  111. * Added PCH ncbi_pch.hpp
  112. *
  113. * Revision 1.6  2004/05/06 18:01:29  shomrat
  114. * Get accession from context
  115. *
  116. * Revision 1.5  2004/04/22 15:52:35  shomrat
  117. * Changes in context
  118. *
  119. * Revision 1.4  2004/03/25 20:48:19  shomrat
  120. * remove redundant include directive
  121. *
  122. * Revision 1.3  2004/03/10 21:28:06  shomrat
  123. * Limit Seq-id type for version
  124. *
  125. * Revision 1.2  2003/12/18 17:43:36  shomrat
  126. * context.hpp moved
  127. *
  128. * Revision 1.1  2003/12/17 20:25:19  shomrat
  129. * Initial Revision (adapted from flat lib)
  130. *
  131. *
  132. * ===========================================================================
  133. */