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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: split_parser.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 17:38:02  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef ID2_PARSER__HPP_INCLUDED
  10. #define ID2_PARSER__HPP_INCLUDED
  11. /*  $Id: split_parser.hpp,v 1000.0 2004/04/12 17:38:02 gouriano Exp $
  12.  * ===========================================================================
  13.  *                            PUBLIC DOMAIN NOTICE
  14.  *               National Center for Biotechnology Information
  15.  *
  16.  *  This software/database is a "United States Government Work" under the
  17.  *  terms of the United States Copyright Act.  It was written as part of
  18.  *  the author's official duties as a United States Government employee and
  19.  *  thus cannot be copyrighted.  This software/database is freely available
  20.  *  to the public for use. The National Library of Medicine and the U.S.
  21.  *  Government have not placed any restriction on its use or reproduction.
  22.  *
  23.  *  Although all reasonable efforts have been taken to ensure the accuracy
  24.  *  and reliability of the software and data, the NLM and the U.S.
  25.  *  Government do not and cannot warrant the performance or results that
  26.  *  may be obtained by using this software or data. The NLM and the U.S.
  27.  *  Government disclaim all warranties, express or implied, including
  28.  *  warranties of performance, merchantability or fitness for any particular
  29.  *  purpose.
  30.  *
  31.  *  Please cite the author in any work or product based on this material.
  32.  *
  33.  * ===========================================================================
  34.  *
  35.  *  Author:  Eugene Vasilchenko
  36.  *
  37.  *  File Description: Methods to create object manager structures from ID2 spec
  38.  *
  39.  */
  40. #include <corelib/ncbiobj.hpp>
  41. #include <util/range.hpp>
  42. #include <vector>
  43. #include <utility>
  44. BEGIN_NCBI_SCOPE
  45. BEGIN_SCOPE(objects)
  46. class CID2S_Split_Info;
  47. class CID2S_Chunk_Info;
  48. class CID2S_Chunk;
  49. class CID2S_Seq_annot_Info;
  50. class CID2S_Seq_annot_place_Info;
  51. class CID2_Seq_loc;
  52. class CTSE_Info;
  53. class CTSE_Chunk_Info;
  54. class NCBI_XREADER_EXPORT CSplitParser
  55. {
  56. public:
  57.     static void Attach(CTSE_Info& tse, const CID2S_Split_Info& split);
  58.     static CRef<CTSE_Chunk_Info> Parse(const CID2S_Chunk_Info& info);
  59.     static void Load(CTSE_Chunk_Info& chunk, const CID2S_Chunk& data);
  60.     static void x_Attach(CTSE_Chunk_Info& chunk,
  61.                          const CID2S_Seq_annot_Info& annot);
  62.     static void x_Attach(CTSE_Chunk_Info& chunk,
  63.                          const CID2S_Seq_annot_place_Info& place);
  64.     typedef int TLocationId;
  65.     typedef CRange<TSeqPos> TLocationRange;
  66.     typedef pair<TLocationId, TLocationRange> TLocation;
  67.     typedef vector<TLocation> TLocationSet;
  68.     static void x_ParseLocation(TLocationSet& vec, const CID2_Seq_loc& loc);
  69. protected:
  70.     static void x_AddWhole(TLocationSet& vec, const TLocationId& id);
  71.     static void x_AddInterval(TLocationSet& vec, const TLocationId& id,
  72.                               TSeqPos start, TSeqPos length);
  73. };
  74. END_SCOPE(objects)
  75. END_NCBI_SCOPE
  76. /*
  77. * $Log: split_parser.hpp,v $
  78. * Revision 1000.0  2004/04/12 17:38:02  gouriano
  79. * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.3
  80. *
  81. * Revision 1.3  2004/01/28 20:53:42  vasilche
  82. * Added CSplitParser::Attach().
  83. *
  84. * Revision 1.2  2004/01/22 22:28:31  vasilche
  85. * Added export specifier.
  86. *
  87. * Revision 1.1  2004/01/22 20:10:33  vasilche
  88. * 1. Splitted ID2 specs to two parts.
  89. * ID2 now specifies only protocol.
  90. * Specification of ID2 split data is moved to seqsplit ASN module.
  91. * For now they are still reside in one resulting library as before - libid2.
  92. * As the result split specific headers are now in objects/seqsplit.
  93. * 2. Moved ID2 and ID1 specific code out of object manager.
  94. * Protocol is processed by corresponding readers.
  95. * ID2 split parsing is processed by ncbi_xreader library - used by all readers.
  96. * 3. Updated OBJMGR_LIBS correspondingly.
  97. *
  98. *
  99. */
  100. #endif//ID2_PARSER__HPP_INCLUDED