We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The loop in this class currently says:
if (substitutionModel.canReturnComplexDiagonalization()) { for (int i = 0; i < m_siteModel.getCategoryCount(); i++) { ...
but it should say
if (substitutionModel.canReturnComplexDiagonalization()) { for (int i = 0; i < this.categoryCount; i++) { ...
because the invariant category counts as a category according to the site model, which will cause an indexing error on this class.
https://github.com/CompEvol/beast2/blob/master/src/beast/base/evolution/likelihood/BeagleTreeLikelihood.java
The text was updated successfully, but these errors were encountered:
e6fd752
correction to #1168
edc84fe
After further testing, I realise that the invariant category index should be skipped, not the last category
Sorry, something went wrong.
No branches or pull requests
The loop in this class currently says:
but it should say
because the invariant category counts as a category according to the site model, which will cause an indexing error on this class.
https://github.com/CompEvol/beast2/blob/master/src/beast/base/evolution/likelihood/BeagleTreeLikelihood.java
The text was updated successfully, but these errors were encountered: