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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: reader_snp.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 17:37:52  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef READER_SNP__HPP_INCLUDED
  10. #define READER_SNP__HPP_INCLUDED
  11. /*  $Id: reader_snp.hpp,v 1000.0 2004/04/12 17:37:52 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. *  Author:  Eugene Vasilchenko
  35. *
  36. *  File Description: SNP data reader and compressor
  37. *
  38. */
  39. #include <corelib/ncbistd.hpp>
  40. #include <corelib/ncbiobj.hpp>
  41. #include <serial/objhook.hpp>
  42. #include <objmgr/impl/snp_annot_info.hpp>
  43. BEGIN_NCBI_SCOPE
  44. class CObjectIStream;
  45. BEGIN_SCOPE(objects)
  46. class CSeq_entry;
  47. class CSeq_annot;
  48. class CSeq_feat;
  49. class CSeq_annot_SNP_Info;
  50. class NCBI_XREADER_EXPORT CSeq_annot_SNP_Info_Reader
  51. {
  52. public:
  53.     // parse ASN converting SNP features to packed table.
  54.     static void Parse(CObjectIStream& in,
  55.                       CSeq_annot_SNP_Info& snp_info);
  56.     // store table in platform specific format
  57.     static void Write(CNcbiOstream& stream,
  58.                       const CSeq_annot_SNP_Info& snp_info);
  59.     // load table in platform specific format
  60.     static void Read(CNcbiIstream& stream,
  61.                      CSeq_annot_SNP_Info& snp_info);
  62. };
  63. END_SCOPE(objects)
  64. END_NCBI_SCOPE
  65. /*
  66. * $Log: reader_snp.hpp,v $
  67. * Revision 1000.0  2004/04/12 17:37:52  gouriano
  68. * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.2
  69. *
  70. * Revision 1.2  2004/01/13 16:55:53  vasilche
  71. * CReader, CSeqref and some more classes moved from xobjmgr to separate lib.
  72. * Headers moved from include/objmgr to include/objtools/data_loaders/genbank.
  73. *
  74. * Revision 1.1  2003/08/14 20:05:18  vasilche
  75. * Simple SNP features are stored as table internally.
  76. * They are recreated when needed using CFeat_CI.
  77. *
  78. */
  79. #endif // READER_SNP__HPP_INCLUDED