From 4382cb0c08de5d10214f1329e994898d1f3a8f5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilo=20Garc=C3=ADa?= Date: Sun, 19 Nov 2023 19:31:51 -0500 Subject: [PATCH] Fix typo in transition probability calculation --- src/transitions.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transitions.jl b/src/transitions.jl index 0429445..243770f 100644 --- a/src/transitions.jl +++ b/src/transitions.jl @@ -201,7 +201,7 @@ end Calculates the log-odds ratio between the transition probability matrices of two BioMarkovChain models. ```math -\beta = \log \frac{P(x|\mathscr{m}_{1})}{P(x|\text{\mathscr{m}_{2})} +\beta = \log \frac{P(x|\mathscr{m}_{1})}{P(x|\mathscr{m}_{2})} ``` Where $\mathscr{m}_{1}$ and $\mathscr{m}_{2}$ are the two models transition probability matrices.