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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
|
/***************************************************************************
* Copyright (C) 2009-2015 by *
* BUI Quang Minh <minh.bui@univie.ac.at> *
* Lam-Tung Nguyen <nltung@gmail.com> *
* *
* *
* 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 CANDIDATESET_H_
#define CANDIDATESET_H_
//#include "phylotree.h"
#include "utils/tools.h"
#include "alignment/alignment.h"
#include "tree/mtreeset.h"
#include <stack>
#include "utils/checkpoint.h"
class IQTree;
struct CandidateTree {
/**
* with branch lengths.
* empty for intermediate NNI tree
*/
string tree;
/**
* tree topology WITHOUT branch lengths
* and WITH TAXON ID (instead of taxon names)
* for sorting purpose
*/
string topology;
/**
* log-likelihood or parsimony score
*/
double score;
};
/**
* Candidate tree set, sorted in ascending order of scores, i.e. the last element is the highest scoring tree
*/
class CandidateSet : public multimap<double, CandidateTree>, public CheckpointFactory {
public:
/**
* Initialization
*/
void init(Alignment* aln, int maxSize);
CandidateSet();
CandidateSet(int maxSize);
/**
* Replace the current candidate trees by those in another candidate set
* @param candSet the candidate set whose trees will be copied over
*/
void initTrees(CandidateSet& candSet);
/**
save object into the checkpoint
*/
virtual void saveCheckpoint();
/**
restore object from the checkpoint
*/
virtual void restoreCheckpoint();
/**
* return randomly one of the current best trees
* @param numTopTrees [IN] Number of current best trees, from which a random tree is chosen.
*/
string getRandTopTree(int numTopTrees);
/**
* return the next parent tree for reproduction.
* Here we always maintain a list of candidate trees which have not
* been used for reproduction. If all candidate trees have been used, we select the
* current best trees as the new parent trees
*/
string getNextCandTree();
/**
* Replace an existing tree in the candidate set
* @param tree the new tree string that will replace the existing tree
* @param score the score of the new tree
* @return true if the topology of \a tree exist in the candidate set
*/
// bool replaceTree(string tree, double score);
/**
* create the parent tree set containing top trees
*/
void initParentTrees();
/**
* update/insert \a tree into the candidate set if its score is higher than the worst tree
*
* @param tree
* The new tree string (with branch lengths)
* @param score
* The score (ML or parsimony) of \a tree
* @return
* Relative position of the new tree to the current best tree.
* Return -1 if the tree topology already existed
* Return -2 if the candidate set is not updated
*/
int update(string newTree, double newScore);
/**
* Get the \a numBestScores best scores in the candidate set
*
* @param numBestScores
* Number of best scores
* @return
* Vector containing \a numBestScore best scores
*/
vector<double> getBestScores(int numBestScores = 0);
/**
* Get best score
*
* @return the best score
*/
double getBestScore();
/**
* Get \a numTree top scoring trees
*
* @param numTree
* Number of top scoring trees
* @return
* Vector of current best trees
*/
vector<string> getBestTreeStrings(int numTree = 0);
/**
* Get \a numTree top scoring trees for this MPI process. Also work for sequential version.
*
* @param numTree
* Number of top scoring trees
* @return
* Vector of current best trees
*/
vector<string> getBestTreeStringsForProcess(int totalNumTree);
/**
* Return a set of trees and a set of scores
*
* @param trees vector of trees
* @param scores vector of tree scores
* @param treeFormat the NEWICK format used for tree string (WT_TAXON_ID, WT_BR_LEN, ..)
*/
void getAllTrees(vector<string> &trees, vector<double> &scores, int treeFormat = -1);
/**
* destructor
*/
virtual ~CandidateSet();
/**
* Check if tree topology \a topo already exists
*
* @param topo
* Newick string of the tree topology
*/
bool treeTopologyExist(string topo);
/**
* Check if tree \a tree already exists
*
* @param tree
* Newick string of the tree topology
*/
bool treeExist(string tree);
/**
* Return a unique topology (sorted by taxon names, rooted at taxon with alphabetically smallest name)
* without branch lengths
*
* @param tree
* The newick tree string, from which the topology string will be generated
* @param convertOption
* Use the same options as printTree() (WT_ID, WT_BR_LEN, ...)
* @return
* Newick string of the tree topology
*/
string convertTreeString(const string tree, int format = WT_TAXON_ID | WT_SORT_TAXA);
/**
* Return a unique topology (sorted by taxon names, rooted at taxon with alphabetically smallest name)
* without branch lengths
*
* @param tree
* The newick tree string, from which the topology string will be generated
* @return
* Newick string of the tree topology
*/
string getTopology(string tree);
/**
* return the score of \a topology
*
* @param topology
* Newick topology
* @return
* Score of the topology
*/
double getTopologyScore(string topology);
/**
* Empty the candidate set
*/
void clear();
/**
* Empty the \a topologies data structure;
*/
void clearTopologies();
/**
* Collect all splits from the set of current best trees and compute for each of them the number of occurances.
*
* @param supportThres
* a number in (0,1] representing the support value threshold for stable splits
* @return number of splits with 100% support value
*/
int computeSplitOccurences(double supportThres);
/**
* Get number of stable splits
* @param thresHold A number between (0,1.0], all splits have support values above this threshold
* are considered stable
*/
int countStableSplits(double thresHold);
void reportStableSplits();
/**
* Update the set of stable split when a new tree is inserted
* to the set of best trees used for computing stable splits.
*
* This function will remove all splits that belong to oldTree and add all
* splits of newTree
*
* @param
* oldTree tree that will be replace by \a newTree
* @param
* newTree the new tree
*/
void updateStableSplit(string oldTree, string newTree);
/**
* Return a pointer to the \a CandidateTree that has topology equal to \a topology
* @param topology
* @return
*/
iterator getCandidateTree(string topology);
/**
* Remove candidate trees with topology equal to the specified topology
* @param topology
*/
void removeCandidateTree(string topology);
/**
* Remove the worst tree in the candidate set
*/
void removeWorstTree();
/* Getter and Setter function */
void setAln(Alignment* aln);
const StringDoubleHashMap& getTopologies() const {
return topologies;
}
/**
* Return a CandidateSet containing \a numTrees candidate trees
* @param numTrees
* @return
*/
CandidateSet getBestCandidateTrees(int numTrees = 0);
/**
* Return a set of trees whose score are equal \a score
*/
CandidateSet getCandidateTrees(double score);
SplitIntMap& getCandSplits() {
return candSplits;
}
/**
* @brief Get a random subset containing \a numSplit from the
* set of stable splits.
* @param
* numSplit size of the subset
* @param
* splits (OUT) a random subset of the stable splits
*/
//void getRandomStableSplits(int numSplit, SplitGraph& splits);
/**
* Add splits from \a treeString to the current candidate splits
*
* @param tree collect splits from this tree
*/
void addCandidateSplits(string treeString);
/**
* Remove splits that appear from \a treeString.
* If an existing split has weight > 1, their weight will be
* reduced by 1.
*/
void removeCandidateSplits(string treeString);
int getNumStableSplits() const {
return numStableSplits;
}
/**
* Print candidate trees and their likelihood
*/
void printTrees(string suffix);
/**
* Recompute the log-likelihood of all trees
* @param treeObject the tree object which store other model parameters used
* to compute the log-likelihood.
*/
void recomputeLoglOfAllTrees(IQTree &treeObject);
int getMaxSize() const {
return maxSize;
}
void setMaxSize(int maxSize) {
this->maxSize = maxSize;
}
private:
/**
* Maximum number of candidate trees
*/
int maxSize;
/**
* Number of stable splits identified
*/
int numStableSplits;
/**
* Set of splits and the number of their occurences from the current best trees.
* The number of current best tree is parameterized.
*/
SplitIntMap candSplits;
/**
* Map data structure storing <topology_string, score>
*/
StringDoubleHashMap topologies;
/**
* Trees used for reproduction
*/
stack<string> parentTrees;
/**
* pointer to alignment, just to assign correct IDs for taxa
*/
Alignment *aln;
};
#endif /* CANDIDATESET_H_ */
|