Skip to content

Commit

Permalink
Don't export the freq strings for the UNREST model
Browse files Browse the repository at this point in the history
  • Loading branch information
trongnhanuit committed May 27, 2024
1 parent 60dbad5 commit ae59775
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions model/modelmarkov.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,9 @@ string ModelMarkov::getNameParams(bool show_fixed_params) {
}

void ModelMarkov::getNameParamsFreq(ostream &retname) {
// don't specify freqs for UNREST
if (name == "UNREST")
return;
// "+F..." but without {frequencies}
retname << freqTypeString(freq_type, phylo_tree->aln->seq_type, true);
if (fixed_parameters)
Expand Down

0 comments on commit ae59775

Please sign in to comment.