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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: embl_gather.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:44:10  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: embl_gather.cpp,v 1000.1 2004/06/01 19:44:10 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:  Aaron Ucko, NCBI
  35. *
  36. * File Description:
  37. *   
  38. *
  39. * ===========================================================================
  40. */
  41. #include <ncbi_pch.hpp>
  42. #include <corelib/ncbistd.hpp>
  43. #include <objtools/format/item_ostream.hpp>
  44. #include <objtools/format/flat_expt.hpp>
  45. #include <objtools/format/items/locus_item.hpp>
  46. #include <objtools/format/items/defline_item.hpp>
  47. #include <objtools/format/items/accession_item.hpp>
  48. #include <objtools/format/items/version_item.hpp>
  49. #include <objtools/format/items/date_item.hpp>
  50. #include <objtools/format/items/segment_item.hpp>
  51. #include <objtools/format/items/keywords_item.hpp>
  52. #include <objtools/format/items/source_item.hpp>
  53. #include <objtools/format/items/reference_item.hpp>
  54. #include <objtools/format/items/comment_item.hpp>
  55. #include <objtools/format/items/basecount_item.hpp>
  56. #include <objtools/format/items/sequence_item.hpp>
  57. #include <objtools/format/items/ctrl_items.hpp>
  58. #include <objtools/format/items/feature_item.hpp>
  59. #include <objtools/format/gather_items.hpp>
  60. #include <objtools/format/embl_gather.hpp>
  61. #include <objtools/format/context.hpp>
  62. BEGIN_NCBI_SCOPE
  63. BEGIN_SCOPE(objects)
  64. CEmblGatherer::CEmblGatherer(void)
  65. {
  66. }
  67. void CEmblGatherer::x_DoSingleSection(CBioseqContext& ctx) const
  68. {
  69.     const CFlatFileConfig& cfg = ctx.Config();
  70.     ItemOS() << new CStartSectionItem(ctx);
  71.     // The ID Line
  72.     ItemOS() << new CLocusItem(ctx);
  73.     // The AC Line
  74.     ItemOS() << new CAccessionItem(ctx);
  75.     // The SV Line
  76.     if ( ctx.IsNuc() ) {
  77.         ItemOS() << new CVersionItem(ctx);
  78.     }
  79.     // The DT Line
  80.     ItemOS() << new CDateItem(ctx);
  81.     // The DE Line
  82.     ItemOS() << new CDeflineItem(ctx);
  83.     // The KW Line
  84.     ItemOS() << new CKeywordsItem(ctx);
  85.     // The OS, OC, OG Lines
  86.     ItemOS() << new CSourceItem(ctx);
  87.     // The Reference (RN, RC, RP, RX, RG, RA, RT, RL) lines
  88.     x_GatherReferences();
  89.     x_GatherComments();
  90.     // Features
  91.     ItemOS() << new CFeatHeaderItem(ctx);
  92.     if ( !cfg.HideSourceFeats() ) {
  93.         x_GatherSourceFeatures();
  94.     }
  95.     x_GatherFeatures();
  96.     // Base count
  97.     if ( ctx.IsNuc()  &&  (cfg.IsModeGBench()  ||  cfg.IsModeDump()) ) {
  98.         ItemOS() << new CBaseCountItem(ctx);
  99.     }
  100.     // Sequenece
  101.     x_GatherSequence();
  102.     
  103.     ItemOS() << new CEndSectionItem(ctx);
  104. }
  105. END_SCOPE(objects)
  106. END_NCBI_SCOPE
  107. /*
  108. * ===========================================================================
  109. *
  110. * $Log: embl_gather.cpp,v $
  111. * Revision 1000.1  2004/06/01 19:44:10  gouriano
  112. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  113. *
  114. * Revision 1.10  2004/05/21 21:42:54  gorelenk
  115. * Added PCH ncbi_pch.hpp
  116. *
  117. * Revision 1.9  2004/04/22 15:55:26  shomrat
  118. * Changes in context
  119. *
  120. * Revision 1.8  2004/03/31 17:17:04  shomrat
  121. * Active bioseq set outside method
  122. *
  123. * Revision 1.7  2004/03/25 20:36:56  shomrat
  124. * Use handles
  125. *
  126. * Revision 1.6  2004/02/19 18:06:42  shomrat
  127. * Skip source-features if flag is set
  128. *
  129. * Revision 1.5  2004/02/11 22:50:01  shomrat
  130. * using types in flag file
  131. *
  132. * Revision 1.4  2004/02/11 16:50:31  shomrat
  133. * gather source features separately
  134. *
  135. * Revision 1.3  2004/01/14 16:11:48  shomrat
  136. * using ctrl_items
  137. *
  138. * Revision 1.2  2003/12/18 17:43:33  shomrat
  139. * context.hpp moved
  140. *
  141. * Revision 1.1  2003/12/17 20:20:15  shomrat
  142. * Initial Revision (adapted from flat lib)
  143. *
  144. *
  145. * ===========================================================================
  146. */