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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: phy_tree_serial.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/19 16:02:17  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef ALGO_PHY_TREE___PHY_TREE_SERIAL__HPP
  10. #define ALGO_PHY_TREE___PHY_TREE_SERIAL__HPP
  11. /*  $Id: phy_tree_serial.hpp,v 1000.1 2004/04/19 16:02:17 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:  Josh Cherry
  37.  *
  38.  * File Description:  A manually defined serial object for
  39.  *                    representing a phylogenetic tree
  40.  *
  41.  */
  42. #include <algo/phy_tree/phy_node.hpp>
  43. #include <serial/serialimpl.hpp>
  44. #include <objects/seqloc/Seq_id.hpp>
  45. BEGIN_NCBI_SCOPE
  46. class NCBI_XALGOPHYTREE_EXPORT CPhyTreeSerial : public CSerialObject
  47. {
  48. public:
  49.     /// Seq-ids of terminal nodes
  50.     typedef vector< CConstRef<objects::CSeq_id> > TIds;
  51.     
  52.     CPhyTreeSerial(void) {}
  53.     CPhyTreeSerial(const TPhyTreeNode& val)
  54.         : m_Tree(val) {}
  55.     const TPhyTreeNode& GetTree(void) const {return m_Tree;}
  56.     TPhyTreeNode& SetTree(void) {return m_Tree;}
  57.     void SetTree(const TPhyTreeNode& val) {m_Tree = val;}
  58.     /// Getters and setters for optional Seq-ids 
  59.     /// associated with terminal nodes.
  60.     /// For this to make sense, the integer ids of the terminal
  61.     /// nodes must be indexes into this.
  62.     const TIds& GetIds(void) const {return m_Ids;}
  63.     TIds& SetIds(void) {return m_Ids;}
  64.     void SetIds(const TIds& val) {m_Ids = val;}
  65.     DECLARE_INTERNAL_TYPE_INFO();
  66. private:
  67.     TPhyTreeNode m_Tree;
  68.     TIds m_Ids;
  69. };
  70. END_NCBI_SCOPE
  71. /*
  72.  * ===========================================================================
  73.  * $Log: phy_tree_serial.hpp,v $
  74.  * Revision 1000.1  2004/04/19 16:02:17  gouriano
  75.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.4
  76.  *
  77.  * Revision 1.4  2004/04/16 16:38:30  dicuccio
  78.  * Changed TIds typedef - store CConstRef<>, not CRef<>
  79.  *
  80.  * Revision 1.3  2004/03/17 16:52:47  jcherry
  81.  * Added optional Seq-ids
  82.  *
  83.  * Revision 1.2  2004/02/10 17:02:29  dicuccio
  84.  * Formatting changes.  Added export specifiers
  85.  *
  86.  * Revision 1.1  2004/02/10 15:15:57  jcherry
  87.  * Initial version
  88.  *
  89.  * ===========================================================================
  90.  */
  91. #endif  // ALGO_PHY_TREE___PHY_TREE_SERIAL__HPP