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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: genemark_loader.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/04/12 19:32:45  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.15
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE_DOC_BASIC___GENEMARK_LOADER__HPP
  10. #define GUI_CORE_DOC_BASIC___GENEMARK_LOADER__HPP
  11. /*  $Id: genemark_loader.hpp,v 1000.2 2004/04/12 19:32:45 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors: Dmitry Dernovoy
  37.  *
  38.  * File Description:
  39.  *    CGeneMarkLoader - Plugin to load GeneMark's predictions
  40.  */
  41. #include <gui/core/doc_loader.hpp>
  42. #include <objects/seq/Seq_annot.hpp>
  43. BEGIN_NCBI_SCOPE
  44. USING_SCOPE(objects);
  45. class CGeneMarkLoader : public CDocLoader<CGeneMarkLoader>
  46. {
  47. public:
  48.     CGeneMarkLoader();
  49.    ~CGeneMarkLoader();
  50.     // pure virtual requirement: load data into a document
  51.     void Import(objects::CPluginMessage& msg);
  52.     static void GetInfo(CPluginInfo& info);
  53. private:
  54.     enum EFileFormat {
  55.         fUnknownFormat = 0,
  56.         fGeneMarkHMM   = 1,
  57.         fGeneMark      = 2,
  58.         fGlimmer2      = 3
  59.     };
  60.     CRef<CSeq_annot>     x_LoadGeneMarkFile(const string&  fname,
  61.                                             const CSeq_id& id);
  62.     CRef<CSeq_annot>     x_LoadGeneMarkHmmFile(const string&  fname,
  63.                                                const CSeq_id& id);
  64.     CRef<CSeq_annot>     x_LoadGlimmer2File(const string&  fname,
  65.                                             const CSeq_id& id);
  66.     EFileFormat          x_RecognizeFormat(const string& fname);
  67. };
  68. END_NCBI_SCOPE
  69. #endif  // GUI_CORE_DOC_BASIC___GENEMARK_LOADER__HPP
  70. /*
  71.  * =========================================================================
  72.  * $Log: genemark_loader.hpp,v $
  73.  * Revision 1000.2  2004/04/12 19:32:45  gouriano
  74.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.15
  75.  *
  76.  * Revision 1.15  2003/12/09 21:45:38  dernovoy
  77.  * Glimmer2 output loader was added
  78.  *
  79.  * Revision 1.14  2003/11/04 17:49:25  dicuccio
  80.  * Changed calling parameters for plugins - pass CPluginMessage instead of paired
  81.  * CPluginCommand/CPluginReply
  82.  *
  83.  * Revision 1.13  2003/10/10 17:19:33  dicuccio
  84.  * Added Import() interface.  Removed dead Save() interfaces
  85.  *
  86.  * Revision 1.12  2003/09/29 15:45:48  dicuccio
  87.  * Deprecated gui/scope.hpp
  88.  *
  89.  * Revision 1.11  2003/07/14 11:17:22  shomrat
  90.  * Plugin messageing system related changes
  91.  *
  92.  * Revision 1.10  2003/06/25 17:02:59  dicuccio
  93.  * Split CPluginHandle into a handle (pointer-to-implementation) and
  94.  * implementation file.  Lots of #include file clean-ups.
  95.  *
  96.  * Revision 1.9  2003/06/20 14:52:58  dicuccio
  97.  * Revised plugin registration - moved GetInfo() into the plugin handler
  98.  *
  99.  * Revision 1.8  2003/04/24 16:39:29  dicuccio
  100.  * Updated to reflect changes in plugin API
  101.  *
  102.  * Revision 1.7  2003/02/24 13:03:16  dicuccio
  103.  * Renamed classes in plugin spec:
  104.  *     CArgSeg --> CPluginArgSet
  105.  *     CArgument --> CPluginArg
  106.  *     CPluginArgs --> CPluginCommand
  107.  *     CPluginCommands --> CPluginCommandSet
  108.  *
  109.  * Revision 1.6  2003/02/20 19:49:56  dicuccio
  110.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH frameowrk
  111.  * over to use new plugin architecture.
  112.  *
  113.  * Revision 1.5  2003/01/13 13:10:07  dicuccio
  114.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  115.  * Moved all FLUID-generated code into namespace ncbi.
  116.  *
  117.  * Revision 1.4  2003/01/08 21:19:48  dernovoy
  118.  * m_SeqId added as private member - should contains gi for correct feature location
  119.  *
  120.  * Revision 1.3  2002/12/31 19:44:07  dernovoy
  121.  * private methods added
  122.  *
  123.  * Revision 1.2  2002/12/30 17:55:42  dicuccio
  124.  * Added new virtual requirement: Save() (not handled by some plugins; return
  125.  * values should be obeyed)
  126.  *
  127.  * Revision 1.1  2002/12/26 17:12:39  dernovoy
  128.  * Initial revision.
  129.  *
  130.  * =========================================================================
  131.  */