mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-27 23:40:26 +08:00
25 lines
593 B
C
25 lines
593 B
C
// $Id: findRateOfGene.h 962 2006-11-07 15:13:34Z privmane $
|
|
|
|
#ifndef ____FIND_RATE_OF_GENE
|
|
#define ____FIND_RATE_OF_GENE
|
|
|
|
|
|
#include "numRec.h"
|
|
#include "errorMsg.h"
|
|
#include "likelihoodComputation.h"
|
|
#include "tree.h"
|
|
#include "sequenceContainer.h"
|
|
#include "stochasticProcess.h"
|
|
#include "suffStatComponent.h"
|
|
#include "definitions.h"
|
|
|
|
MDOUBLE findTheBestFactorFor(const tree &t,
|
|
const sequenceContainer& sc,
|
|
stochasticProcess& sp,
|
|
const Vdouble * weights,
|
|
MDOUBLE & logLresults);
|
|
|
|
void makeAverageRateEqOne(tree& et,vector<stochasticProcess> & spVec);
|
|
|
|
#endif
|