1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/***************************************************************************
* Copyright (C) 2006 by BUI Quang Minh, Steffen Klaere, Arndt von Haeseler *
* minh.bui@univie.ac.at *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef MEXTTREE_H
#define MEXTTREE_H
#include "mtree.h"
#include "mtreeset.h"
/**
extended tree, for bootstrap, cluster, etc (do not related to PDA main topic)
@author BUI Quang Minh, Steffen Klaere, Arndt von Haeseler
*/
class MExtTree : public MTree
{
public:
/********************************************************
CONSTRUCTORs, INITIALIZATION AND DESTRUCTORs
********************************************************/
/**
constructor, read tree from user file
@param userTreeFile the name of the user tree
@param is_rooted (IN/OUT) true if tree is rooted
*/
MExtTree(const char *userTreeFile, bool &is_rooted) : MTree(userTreeFile, is_rooted) {};
/**
constructor, get from another tree
@param tree another MTree
*/
MExtTree(MTree &tree) : MTree(tree) {};
/**
constructor
*/
MExtTree() : MTree() {};
/********************************************************
GENERATE RANDOM TREE PROCEDURES
********************************************************/
/**
generate a random tree with given tree type
@param tree_type can be YULE_HARDING, UNIFORM, BALANCED, or CATERPILLAR, or STAR_TREE
@param params program parameters
@param binary TRUE if you want to generate a binary tree
*/
void generateRandomTree(TreeGenType tree_type, Params ¶ms, bool binary = true);
/**
generate a random tree following Yule-Harding model
@param params program parameters
@param binary TRUE if you want to generate a binary tree
*/
void generateYuleHarding(Params ¶ms, bool binary = true);
/**
generate a random tree following Yule-Harding model satisfying a constraint tree
@param params program parameters
@param binary TRUE if you want to generate a binary tree
@param constraint_tree a (multifurcating) constraint tree
@param taxnames taxa names
*/
void generateConstrainedYuleHarding(Params ¶ms, MTree* constraint_tree, StrVector &taxnames);
/**
generate a random tree following uniform model
@param size number of taxa
@param binary TRUE if you want to generate a binary tree
*/
void generateUniform(int size, bool binary = true);
/**
generate a caterpillar tree
@param size number of taxa
*/
void generateCaterpillar(int size);
/**
generate a balanced tree
@param size number of taxa
*/
void generateBalanced(int size);
/**
generate a star tree
@param params program parameters
*/
void generateStarTree(Params ¶ms);
/**
* generate random branch lengths on the given topology
* @param params program parameters
*/
void generateRandomBranchLengths(Params ¶ms, Node* node = NULL, Node *dad = NULL);
/**
set the leaf ID and names when generating random tree
@param myleaves vector of leaves
*/
void setLeavesName(NodeVector &myleaves);
void setZeroInternalBranches(int num_zero_len);
/********************************************************
CLUSTER for each branch, useful for likelihood mapping analysis
********************************************************/
/**
create CLUSTER for each branch, useful for likelihood mapping analysis
@param taxa an order of taxa
@param clusters (OUT) list of all clusters
@param node the starting node, NULL to start from the root
@param dad dad of the node, used to direct the search
*/
void createCluster(NodeVector &taxa, mmatrix(int) &clusters, Node *node = NULL, Node *dad = NULL);
/**
create CLUSTER for each branch, useful for likelihood mapping analysis
@param clu_num cluster number
@param node the starting node, NULL to start from the root
@param dad dad of the node, used to direct the search
*/
void createCluster(int clu_num, Node *node, Node *dad);
/********************************************************
Miscellaneous
********************************************************/
/**
collapse all branches with support lower than minsup (in back-slash separated format)
implemented for Ricardo
*/
void collapseLowBranchSupport(DoubleVector &minsup, Node *node = NULL, Node *dad = NULL);
};
#endif
|