Skip to content

Commit

Permalink
Merge pull request #160 from stephaneguindon/optAAFreq
Browse files Browse the repository at this point in the history
Changed boundaries for GTR param values
  • Loading branch information
stephaneguindon authored Jan 25, 2022
2 parents 5eb2bbb + d97d55a commit 72d82ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/phyml-manual.tex
Original file line number Diff line number Diff line change
Expand Up @@ -606,9 +606,9 @@ \subsection{Command-line interface}
\item \x{--free\_rates} or \x{--freerates} \index{command-line options!\x{--free\_rates}}\\
As an alternative to the discrete gamma model, it is possible to estimate the (relative) rate in
each class of the (mixture) model and the corresponding frequencies directly from the data. This
model, called the FreeRate model, has more parameters
model, called FreeRate, has more parameters
than the discrete gamma one but usually provides a significantly better fit to the data. See
\cite{soubrier12} for more information about this model and an illustration of its use.
\cite{soubrier12} for more information about this model and an illustration of its use.

\item \x{--il} \index{command-line options!\x{--il}}\\ \x{il} stands here for integrated (branch)
length. This model, described in \cite{guindon13} in the context of molecular dating, provides an
Expand Down
4 changes: 2 additions & 2 deletions src/utilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ static inline int isinf_ld (long double x) { return isnan (x - x); }
#define PINV_MIN 0.00001
#define PINV_MAX 0.99999

#define RR_MIN 0.01
#define RR_MAX 100.0
#define RR_MIN 0.001
#define RR_MAX 1000.0

#define UNSCALED_RR_MIN log(RR_MIN)
#define UNSCALED_RR_MAX log(RR_MAX)
Expand Down

0 comments on commit 72d82ca

Please sign in to comment.