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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: prot_product.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 19:55:47  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_OBJUTILS___PROT_PRODUCT__HPP
  10. #define GUI_OBJUTILS___PROT_PRODUCT__HPP
  11. /*  $Id: prot_product.hpp,v 1000.0 2004/06/01 19:55:47 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:  Vlad Lebedev
  37.  *
  38.  * File Description:
  39.  *   CLayoutProtProd -- utility class to layout protein products
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. //#include <gui/core/types.hpp>
  43. #include <gui/objutils/feature.hpp>
  44. #include <objmgr/bioseq_handle.hpp>
  45. /** @addtogroup GUI_OBJUTILS
  46.  *
  47.  * @{
  48.  */
  49. BEGIN_NCBI_SCOPE
  50. class NCBI_GUIOBJUTILS_EXPORT CLayoutProtProd : public CLayoutFeat
  51. {
  52. public:
  53.     // ctor
  54.     CLayoutProtProd(objects::CScope& scope,
  55.                     const objects::CMappedFeat& feat);
  56.     // Retrieve the feature as an object.  For safety's sake,
  57.     // this returns the remapped feature.
  58.     const CObject* GetObject(TSeqPos pos) const;
  59.     bool HasObject(const CObject* obj) const;
  60.     // retrieve the type of this object
  61.     EType GetType() const;
  62. private:
  63.     // handle of the bioseq that holds the protein
  64.     objects::CBioseq_Handle m_Handle;
  65. };
  66. inline
  67. CLayoutProtProd::EType CLayoutProtProd::GetType() const
  68. {
  69.     return eFeatProtProduct;
  70. }
  71. END_NCBI_SCOPE
  72. /* @} */
  73. /*
  74.  * ===========================================================================
  75.  * $Log: prot_product.hpp,v $
  76.  * Revision 1000.0  2004/06/01 19:55:47  gouriano
  77.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.4
  78.  *
  79.  * Revision 1.4  2004/05/14 14:24:47  dicuccio
  80.  * Added new pure virtual requirement on CLayoutObject(): GetType(), returns enum
  81.  * defined in CLayoutObject
  82.  *
  83.  * Revision 1.3  2004/05/03 13:34:54  dicuccio
  84.  * FIxed include guards, doxygen groups
  85.  *
  86.  * Revision 1.2  2004/05/03 12:41:35  dicuccio
  87.  * Fixed #includes and export specifiers
  88.  *
  89.  * Revision 1.1  2004/04/30 11:52:53  dicuccio
  90.  * Split out from gui/utils
  91.  *
  92.  * Revision 1.8  2004/04/16 14:27:17  dicuccio
  93.  * Added doxygen module tag
  94.  *
  95.  * Revision 1.7  2004/04/15 12:57:43  lebedev
  96.  * Changed GetObject to return NULL or const pointer based on given position
  97.  *
  98.  * Revision 1.6  2003/09/29 15:20:08  dicuccio
  99.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  100.  *
  101.  * Revision 1.5  2003/08/22 15:57:11  dicuccio
  102.  * Removed 'USING_SCOPE(objects)'.  Removed export specifier from inline structs
  103.  *
  104.  * Revision 1.4  2003/08/18 14:53:26  dicuccio
  105.  * Changed nales: CFeature -> CLayoutFeat; CAlignment -> CLayoutAlign; CGraph ->
  106.  * CLayoutGraph; CProtProduct -> CLayoutProtProd.
  107.  * Removed USING_SCOPE(objects);
  108.  *
  109.  * Revision 1.3  2003/07/24 13:11:24  dicuccio
  110.  * Changed CLayoutProtProd to return the protein bioseq as its object, not the CDS
  111.  * from which it originated
  112.  *
  113.  * Revision 1.2  2003/07/21 19:24:09  dicuccio
  114.  * Changed storage mechanism: CLayoutObject::GetObject() is pure virtual.  Also,
  115.  * CFeature now stores a CMappedFeat object instead of a CSeq_feat / CSeq_loc pair
  116.  *
  117.  * Revision 1.1  2003/07/18 13:33:52  lebedev
  118.  * Initial revision
  119.  *
  120.  * ===========================================================================
  121.  */
  122. #endif  // GUI_OBJUTILS___PROT_PRODUCT__HPP