1 parent 272374b commit a26df28Copy full SHA for a26df28
1 file changed
src/tree_generation.cu
@@ -123,8 +123,8 @@ void parseArguments(int argc, char** argv)
123
124
("version,v", "Print DIPPER version")
125
126
- ("print-binary-newick",
127
- "Print fully resolved binary Newick with explicit :0 branches; default is to collapse near-zero "
+ ("force-binary",
+ "Force output of fully resolved binary Newick with explicit :0 branches; default is to collapse near-zero "
128
"internal edges to multifurcations when writing trees");
129
130
mainDesc.add(requiredDesc).add(optionalDesc);
@@ -218,7 +218,7 @@ int main(int argc, char** argv) {
218
return 1;
219
}
220
221
- MashPlacement::g_printBinaryNewick = vm.count("print-binary-newick") > 0;
+ MashPlacement::g_printBinaryNewick = vm.count("force-binary") > 0;
222
223
224
0 commit comments