You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/Complex-Models.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,25 +150,25 @@ Here, we specify two mixture components and four Gamma rate categories. Effectiv
150
150
151
151
MixtureFinder is an approach to select the optimum number of classes and the substitution model in each class for a mixture model of Q matrices. To run MixtureFinder:
152
152
153
-
iqtree -s example.phy -m MF+MIX
153
+
iqtree -s example.phy -m MIX+MF
154
154
155
155
Here, we estimate the optimal Q mixture model. To select mixture model and then do the tree search:
156
156
157
-
iqtree -s example.phy -m MFP+MIX
157
+
iqtree -s example.phy -m MIX+MFP
158
158
159
159
Likelihood ratio test (LRT) with p-value = 0.05 is the default method to assess the number of classes in the Q mixture model. To change the p-value:
160
160
161
-
iqtree -s example.phy -m MF+MIX -lrt 0.01
161
+
iqtree -s example.phy -m MIX+MF -lrt 0.01
162
162
163
163
Here, we change the LRT p-value to 0.01. To use information criteria instead of LRT to assess the number of classes:
164
164
165
-
iqtree -s example.phy -m MF+MIX -lrt 0 -merit BIC
165
+
iqtree -s example.phy -m MIX+MF -lrt 0 -merit BIC
166
166
167
167
Here, `-lrt 0` means turning off the LRT, then `-merit BIC` means using BIC to assess the number of classes. (Note that: `-merit` also decides the creterion for selecting subtitution model type in each classes. If using LRT for assessing the number of classes, the default creterion for selecting subtitution model type is BIC.)
168
168
169
169
Options for ModelFinder also work for MixtureFinder, e.g.:
The `-mset HKY,GTR` means we select subtitution model type among only `HKY` and `GTR` substitution models in each iteration of adding one more class. The `-mrate E,I,G,I+G` means we select the rate heterogeneity across sites models among `+E`, `+I`, `G` and `+I+G` models.
0 commit comments