Skip to content

Commit dbdef7f

Browse files
committed
fix Print_H
1 parent 184eb0a commit dbdef7f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CommandLines.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,9 @@ void Print_H(hifiasm_opt_t* asm_opt)
219219
fprintf(stderr, " --ont assemble ONT simplex reads in fastq format\n");
220220
// fprintf(stderr, " --sc-n consider base qual value for assembly\n");
221221
fprintf(stderr, " --chem-c INT\n");
222-
fprintf(stderr, " detect chemical reads with <=INT other reads support [%lu]\n", asm_opt->chemical_cov);
222+
fprintf(stderr, " detect chimeric reads with <=INT other reads support [%lu]\n", asm_opt->chemical_cov);
223223
fprintf(stderr, " --chem-f INT\n");
224-
fprintf(stderr, " length of flanking regions for chemical read detection [%lu]\n", asm_opt->chemical_flank);
224+
fprintf(stderr, " length of flanking regions for chimeric read detection [%lu]\n", asm_opt->chemical_flank);
225225

226226

227227
fprintf(stderr, "Example: ./hifiasm -o NA12878.asm -t 32 NA12878.fq.gz\n");

CommandLines.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <pthread.h>
66
#include <stdint.h>
77

8-
#define HA_VERSION "0.22.0-r687"
8+
#define HA_VERSION "0.22.0-r689"
99

1010
#define VERBOSE 0
1111

0 commit comments

Comments
 (0)