Skip to content
New issue

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

Add substitution model test capability with modeltest-ng binary #141

Merged
merged 14 commits into from
Sep 5, 2020
2 changes: 1 addition & 1 deletion scripts/download-binaries.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const osName = (() => {
}
})();

const binariesBaseDir = "https://github.com/AntonelliLab/raxmlGUI-binaries/releases/download/v20.04";
const binariesBaseDir = "https://github.com/AntonelliLab/raxmlGUI-binaries/releases/download/v20.09";
const binariesUrl = `${binariesBaseDir}/${osName}.zip`;

const binPath = path.join(__dirname, "..", "static", "bin");
Expand Down
2 changes: 1 addition & 1 deletion src/app/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ const App = () => {
onClose={run.clearFinished}
variant={run.exitCode === 0 ? 'success' : 'info'}
message={
run.exitCode === 0 ? 'RAxML finished!' : `RAxML cancelled!`
run.exitCode === 0 ? 'Calculation finished!' : `Calculation cancelled!`
}
/>
</Snackbar>
Expand Down
1 change: 0 additions & 1 deletion src/app/store/Alignment.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ class Alignment {
/*
DNA, gene1 = 1-3676
BIN, morph = 3677-3851
asdf
*/
let partitionFileText = '';
let site = 1;
Expand Down
Loading
Loading