Skip to content

Commit

Permalink
The parameters of PF will be shown only for merging
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskf committed Apr 17, 2024
1 parent ea027e7 commit 1effd0b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions main/phylotesting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2013,12 +2013,14 @@ void testPartitionModel(Params &params, PhyloSuperTree* in_tree, ModelCheckpoint
}

// show the parameters for partition finder
cout << endl;
cout << "PartitionFinder's parameters:" << endl;
cout << part_algo << endl;
cout << "Percentage: " << params.partfinder_rcluster << endl;
cout << "Maximum pairs: " << params.partfinder_rcluster_max << endl;
cout << endl;
if (part_algo != "") {
cout << endl;
cout << "PartitionFinder's parameters:" << endl;
cout << part_algo << endl;
cout << "Percentage: " << params.partfinder_rcluster << endl;
cout << "Maximum pairs: " << params.partfinder_rcluster_max << endl;
cout << endl;
}

if (params.partition_merge != MERGE_NONE) {
double p = params.partfinder_rcluster/100.0;
Expand Down

0 comments on commit 1effd0b

Please sign in to comment.