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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dist_methods.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 17:53:33  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef ALGO_PHY_TREE___DIST_METHODS__HPP
  10. #define ALGO_PHY_TREE___DIST_METHODS__HPP
  11. /*  $Id: dist_methods.hpp,v 1000.0 2004/04/12 17:53:33 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:  Distance methods for phylogenic tree reconstruction
  39.  *
  40.  */
  41. #include <objtools/alnmgr/alnvec.hpp>
  42. #include <util/creaders/alignment_file.hpp>
  43. #include <util/math/matrix.hpp>
  44. #include <algo/phy_tree/phy_node.hpp>
  45. BEGIN_NCBI_SCOPE
  46. class NCBI_XALGOPHYTREE_EXPORT CDistMethods
  47. {
  48. public:
  49.     typedef CNcbiMatrix<double> TMatrix;
  50.     typedef TPhyTreeNode TTree;
  51.     enum EFastMePar {
  52.         eOls = 1,
  53.         eBalanced = 2
  54.     };
  55.     /// Jukes-Cantor distance calculation for DNA sequences:
  56.     /// d = -3/4 ln(1 - (4/3)p).
  57.     static void JukesCantorDist(const TMatrix& frac_diff,
  58.                                 TMatrix& result);
  59.     /// Simple distance calculation for protein sequences:
  60.     /// d = -ln(1 - p).
  61.     static void PoissonDist(const TMatrix& frac_diff,
  62.                             TMatrix& result);
  63.     /// Kimura's distance for protein sequences:
  64.     /// d = -ln(1 - p - 0.2p^2).
  65.     static void KimuraDist(const TMatrix& frac_diff,
  66.                            TMatrix& result);
  67.     /// Calculate pairwise fractions of non-identity
  68.     static double Divergence(const string& seq1, const string& seq2);
  69.     static void Divergence(const objects::CAlnVec& avec_in, TMatrix& result);
  70.     //static void Divergence(const CAlignment& aln, TMatrix& result);
  71.     /// Compute a tree by neighbor joining; 
  72.     /// as per Hillis et al. (Ed.), Molecular Systematics, pg. 488-489.
  73.     static TTree *NjTree(const TMatrix& dist_mat,
  74.                          const vector<string>& labels = vector<string>());
  75.     /// Compute a tree using the fast minimum evolution algorithm
  76.     static TTree *FastMeTree(const TMatrix& dist_mat,
  77.                              const vector<string>& labels = vector<string>(),
  78.                              EFastMePar btype = eOls,
  79.                              EFastMePar wtype = eOls,
  80.                              EFastMePar ntype = eBalanced);
  81. };
  82. END_NCBI_SCOPE
  83. /*
  84.  * ===========================================================================
  85.  * $Log: dist_methods.hpp,v $
  86.  * Revision 1000.0  2004/04/12 17:53:33  gouriano
  87.  * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.5
  88.  *
  89.  * Revision 1.5  2004/02/19 16:43:46  jcherry
  90.  * Temporarily disable one form of Divergence() method
  91.  *
  92.  * Revision 1.4  2004/02/19 13:21:58  dicuccio
  93.  * Roll back to version 1.2
  94.  *
  95.  * Revision 1.2  2004/02/10 17:02:28  dicuccio
  96.  * Formatting changes.  Added export specifiers
  97.  *
  98.  * Revision 1.1  2004/02/10 15:15:56  jcherry
  99.  * Initial version
  100.  *
  101.  * ===========================================================================
  102.  */
  103. #endif  // ALGO_PHY_TREE___DIST_METHODS__HPP