Skip to content

Commit a26df28

Browse files
committed
added force-newick command-line option to randomly resolve polytomies
1 parent 272374b commit a26df28

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/tree_generation.cu

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ void parseArguments(int argc, char** argv)
123123

124124
("version,v", "Print DIPPER version")
125125

126-
("print-binary-newick",
127-
"Print fully resolved binary Newick with explicit :0 branches; default is to collapse near-zero "
126+
("force-binary",
127+
"Force output of fully resolved binary Newick with explicit :0 branches; default is to collapse near-zero "
128128
"internal edges to multifurcations when writing trees");
129129

130130
mainDesc.add(requiredDesc).add(optionalDesc);
@@ -218,7 +218,7 @@ int main(int argc, char** argv) {
218218
return 1;
219219
}
220220

221-
MashPlacement::g_printBinaryNewick = vm.count("print-binary-newick") > 0;
221+
MashPlacement::g_printBinaryNewick = vm.count("force-binary") > 0;
222222

223223

224224

0 commit comments

Comments
 (0)