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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: phy_node.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 18:09:38  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: phy_node.cpp,v 1000.1 2004/06/01 18:09:38 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Josh Cherry
  35.  *
  36.  * File Description:  Things for representing and manipulating
  37.  *          phylogenetic trees
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <algo/phy_tree/phy_node.hpp>
  42. BEGIN_NCBI_SCOPE
  43. static string s_EncodeLabel(const string& label);
  44. // recursive function
  45. void PrintNode(CNcbiOstream& os, const TPhyTreeNode& node)
  46. {
  47.     if (!node.IsLeaf()) {
  48.         os << '(';
  49.         for (TPhyTreeNode::TNodeList_CI it = node.SubNodeBegin();
  50.              it != node.SubNodeEnd();  ++it) {
  51.             if (it != node.SubNodeBegin()) {
  52.                 os << ", ";
  53.             }
  54.             PrintNode(os, **it);
  55.         }
  56.         os << ')';
  57.     }
  58.     if (node.IsLeaf() || !node.GetValue().GetLabel().empty()) {
  59.         os << s_EncodeLabel(node.GetValue().GetLabel());
  60.     }
  61.     if (node.GetValue().IsSetDist()) {
  62.         os << ':' << node.GetValue().GetDist();
  63.     }
  64. }
  65. CNcbiOstream& operator<<(CNcbiOstream& os, const TPhyTreeNode& tree)
  66. {
  67.     PrintNode(os, tree);
  68.     os << ';' << endl;
  69.     return os;
  70. };
  71. void WriteNexusTree(CNcbiOstream& os, const TPhyTreeNode& tree,
  72.                     const string& tree_name)
  73. {
  74.     os << "#nexusnnbegin trees;ntree " << tree_name << " = "
  75.        << tree << "nend;" << endl;
  76. };
  77. // Encode a label for Newick format: enclose it in single quotes,
  78. // but first escape any single quotes by doubling them.
  79. // e.g., "This 'label'" -> "'This ''label'''"
  80. static string s_EncodeLabel(const string& label) {
  81.     if (label.find_first_of("'") == string::npos) {
  82.         return ''' + label + ''';
  83.     }
  84.     string rv;
  85.     rv.reserve(label.size() + 2);
  86.     rv.append(1, ''');
  87.     for (unsigned int i = 0;  i < label.size();  ++i) {
  88.         rv.append(1, label[i]);
  89.         if (label[i] == ''') {
  90.             // "'" -> "''"
  91.             rv.append(1, label[i]);
  92.         }
  93.     }
  94.     rv.append(1, ''');
  95.     return rv;
  96. }
  97. END_NCBI_SCOPE
  98. /*
  99.  * ===========================================================================
  100.  * $Log: phy_node.cpp,v $
  101.  * Revision 1000.1  2004/06/01 18:09:38  gouriano
  102.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  103.  *
  104.  * Revision 1.4  2004/05/21 21:41:03  gorelenk
  105.  * Added PCH ncbi_pch.hpp
  106.  *
  107.  * Revision 1.3  2004/02/11 21:50:23  jcherry
  108.  * Added Nexus format output
  109.  *
  110.  * Revision 1.2  2004/02/10 17:01:42  dicuccio
  111.  * Use basic_string::append() instead of push_back, as the latter isn't found on
  112.  * MSVC
  113.  *
  114.  * Revision 1.1  2004/02/10 15:15:58  jcherry
  115.  * Initial version
  116.  *
  117.  * ===========================================================================
  118.  */