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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: flat_table_formatter.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:43:31  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: flat_table_formatter.cpp,v 1000.2 2004/06/01 19:43:31 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. *   new (early 2003) flat-file generator -- 5-column tabular output
  38. *
  39. * ===========================================================================
  40. */
  41. #include <ncbi_pch.hpp>
  42. #include <objtools/flat/flat_table_formatter.hpp>
  43. #include <objtools/flat/flat_items.hpp>
  44. BEGIN_NCBI_SCOPE
  45. BEGIN_SCOPE(objects)
  46. void CFlatTableFormatter::BeginSequence(CFlatContext& context)
  47. {
  48.     IFlatFormatter::BeginSequence(context);
  49.     m_Stream->NewSequence();
  50. }
  51. void CFlatTableFormatter::FormatHead(const CFlatHead& head)
  52. {
  53.     list<string> l;
  54.     l.push_back(">Features " + m_Context->GetAccession());
  55.     m_Stream->AddParagraph(l, &head, &m_Context->GetPrimaryID());
  56. }
  57. void CFlatTableFormatter::FormatFeature(const IFlattishFeature& f)
  58. {
  59.     const CFlatFeature& feat     = *f.Format();
  60.     list<string>        l;
  61.     string              line;
  62.     bool                need_key = true;
  63.     ITERATE (CFlatLoc::TIntervals, it, feat.GetLoc().GetIntervals()) {
  64.         if (it->m_Accession != m_Context->GetAccession()) {
  65.             continue; // or should we turn it into a prefix?
  66.         }
  67.         string left, right;
  68.         if (it->IsPartialLeft()) {
  69.             left = '<';
  70.         }
  71.         left += NStr::IntToString(it->m_Range.GetFrom());
  72.         if (it->IsPartialRight()) {
  73.             right = '>';
  74.         }
  75.         right += NStr::IntToString(it->m_Range.GetTo());
  76.         if (it->IsReversed()) {
  77.             line = right + 't' + left;
  78.         } else {
  79.             line = left + 't' + right;
  80.         }
  81.         if (need_key) {
  82.             line += 't' + feat.GetKey();
  83.             need_key = false;
  84.         }
  85.         l.push_back(line);
  86.     }
  87.     ITERATE (CFlatFeature::TQuals, it, feat.GetQuals()) {
  88.         // drop redundant quals?
  89.         line = "ttt" + (*it)->GetName();
  90.         if ((*it)->GetStyle() != CFlatQual::eEmpty) {
  91.             string value;
  92.             NStr::Replace((*it)->GetValue(), " b", kEmptyStr, value);
  93.             line += 't' + value;
  94.         }
  95.     }
  96.     m_Stream->AddParagraph(l, &f, &feat.GetFeat());
  97. }
  98. END_SCOPE(objects)
  99. END_NCBI_SCOPE
  100. /*
  101. * ===========================================================================
  102. *
  103. * $Log: flat_table_formatter.cpp,v $
  104. * Revision 1000.2  2004/06/01 19:43:31  gouriano
  105. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  106. *
  107. * Revision 1.6  2004/05/21 21:42:53  gorelenk
  108. * Added PCH ncbi_pch.hpp
  109. *
  110. * Revision 1.5  2003/11/04 20:00:28  ucko
  111. * Edit " b" sequences (used as hints for wrapping) out from qualifier values
  112. *
  113. * Revision 1.4  2003/11/04 19:45:42  jcherry
  114. * Write an accession in header, not a name
  115. *
  116. * Revision 1.3  2003/06/02 16:06:42  dicuccio
  117. * Rearranged src/objects/ subtree.  This includes the following shifts:
  118. *     - src/objects/asn2asn --> arc/app/asn2asn
  119. *     - src/objects/testmedline --> src/objects/ncbimime/test
  120. *     - src/objects/objmgr --> src/objmgr
  121. *     - src/objects/util --> src/objmgr/util
  122. *     - src/objects/alnmgr --> src/objtools/alnmgr
  123. *     - src/objects/flat --> src/objtools/flat
  124. *     - src/objects/validator --> src/objtools/validator
  125. *     - src/objects/cddalignview --> src/objtools/cddalignview
  126. * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  127. * replaces the three libmmdb? libs.
  128. *
  129. * Revision 1.2  2003/04/10 20:08:22  ucko
  130. * Arrange to pass the item as an argument to IFlatTextOStream::AddParagraph
  131. *
  132. * Revision 1.1  2003/03/28 19:04:33  ucko
  133. * Add a formatter for 5-column tabular output.
  134. *
  135. *
  136. * ===========================================================================
  137. */