Skip to content

Commit 741423b

Browse files
committed
change --zero-branch-supp to --sprta-zero-branch; change --out-alter-spr to --sprta-other-places
1 parent 47517dc commit 741423b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

utils/tools.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,8 +1159,8 @@ void cmaple::parseArg(int argc, char* argv[], Params& params) {
11591159

11601160
continue;
11611161
}
1162-
if (strcmp(argv[cnt], "--zero-branch-supp") == 0 ||
1163-
strcmp(argv[cnt], "-zero-branch-supp") == 0) {
1162+
if (strcmp(argv[cnt], "--sprta-zero-branch") == 0 ||
1163+
strcmp(argv[cnt], "-sprta-zero-branch") == 0) {
11641164
params.compute_SPRTA_zero_length_branches = true;
11651165
// also print supports for identical sequences
11661166
// to make sure we print supports of
@@ -1175,8 +1175,8 @@ void cmaple::parseArg(int argc, char* argv[], Params& params) {
11751175

11761176
continue;
11771177
}
1178-
if (strcmp(argv[cnt], "--out-alternative-spr") == 0 ||
1179-
strcmp(argv[cnt], "-out-alternative-spr") == 0) {
1178+
if (strcmp(argv[cnt], "--sprta-other-places") == 0 ||
1179+
strcmp(argv[cnt], "-sprta-other-places") == 0) {
11801180
params.output_alternative_spr = true;
11811181

11821182
continue;
@@ -1430,9 +1430,9 @@ void cmaple::usage_cmaple() {
14301430
<< endl
14311431
<< " SPRs are close to the optimal one."
14321432
<< endl
1433-
<< " --zero-branch-supp Compute supports for zero-length branches."
1433+
<< " --sprta-zero-branch Compute supports for zero-length branches."
14341434
<< endl
1435-
<< " --out-alternative-spr Output alternative SPRs and their supports."
1435+
<< " --sprta-other-places Output alternative SPRs and their supports."
14361436
<< endl
14371437
<< " --min-sup-alt <MIN> The min support to be outputted as "
14381438
<< endl

0 commit comments

Comments
 (0)