Skip to content

Commit

Permalink
fix version link issue in version.xml for struct class
Browse files Browse the repository at this point in the history
  • Loading branch information
nicfel committed Aug 1, 2023
1 parent 6027851 commit 2cbc821
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mascot/dynamics/StructuredMigrationSkyline.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void initAndValidate() {
isForward = true;

// check the dimension of the migration rates
if (dimensionInput.get()*(dimensionInput.get()-1)!=migration.size() || fromBeautiInput.get()){
if (dimensionInput.get()*(dimensionInput.get()-1)!=migration.size()){
throw new IllegalArgumentException("the dimension of " + migration.getID() + " is set to " + (dimensionInput.get()*(dimensionInput.get()-1)) + " from " + migration.size());
}

Expand Down
2 changes: 1 addition & 1 deletion version.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<provider classname="mascot.dynamics.GLMWithSkylineNe"/>
<provider classname="mascot.dynamics.RateShifts"/>
<provider classname="mascot.dynamics.StructuredSkyline"/>
<provider classname="mascot.dynamics.mascot.dynamics.StructuredMigrationSkyline"/>
<provider classname="mascot.dynamics.StructuredMigrationSkyline"/>

<provider classname="mascot.glmmodel.Covariate"/>
<provider classname="mascot.glmmodel.CovariateList"/>
Expand Down

0 comments on commit 2cbc821

Please sign in to comment.