Skip to content

Commit

Permalink
Fix help typos.
Browse files Browse the repository at this point in the history
Fix two typos in the help command output:
	distnict -> distinct
	subtracting -> substracting.
  • Loading branch information
mphschmitt authored and brianwalenz committed Apr 7, 2022
1 parent c6a39cf commit b16772b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/meryl/meryl.C
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ main(int argc, char **argv) {
fprintf(stderr, "\n");
fprintf(stderr, " COMMANDS:\n");
fprintf(stderr, "\n");
fprintf(stderr, " statistics display total, unique, distnict, present number of the kmers on the screen. accepts exactly one input.\n");
fprintf(stderr, " statistics display total, unique, distinct, present number of the kmers on the screen. accepts exactly one input.\n");
fprintf(stderr, " histogram display kmer frequency on the screen as 'frequency<tab>count'. accepts exactly one input.\n");
fprintf(stderr, " print display kmers on the screen as 'kmer<tab>count'. accepts exactly one input.\n");
fprintf(stderr, "\n");
Expand Down Expand Up @@ -138,7 +138,7 @@ main(int argc, char **argv) {
fprintf(stderr, " intersect-max return kmers that occur in all inputs, set the count to the maximum count.\n");
fprintf(stderr, " intersect-sum return kmers that occur in all inputs, set the count to the sum of the counts.\n");
fprintf(stderr, "\n");
fprintf(stderr, " subtract return kmers that occur in the first input, subtracting counts from the other inputs\n");
fprintf(stderr, " subtract return kmers that occur in the first input, substracting counts from the other inputs\n");
fprintf(stderr, "\n");
fprintf(stderr, " difference return kmers that occur in the first input, but none of the other inputs\n");
fprintf(stderr, " symmetric-difference return kmers that occur in exactly one input\n");
Expand Down

0 comments on commit b16772b

Please sign in to comment.