Skip to content

Commit

Permalink
fix Print_H
Browse files Browse the repository at this point in the history
  • Loading branch information
chhylp123 committed Dec 6, 2024
1 parent 184eb0a commit dbdef7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CommandLines.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ void Print_H(hifiasm_opt_t* asm_opt)
fprintf(stderr, " --ont assemble ONT simplex reads in fastq format\n");
// fprintf(stderr, " --sc-n consider base qual value for assembly\n");
fprintf(stderr, " --chem-c INT\n");
fprintf(stderr, " detect chemical reads with <=INT other reads support [%lu]\n", asm_opt->chemical_cov);
fprintf(stderr, " detect chimeric reads with <=INT other reads support [%lu]\n", asm_opt->chemical_cov);
fprintf(stderr, " --chem-f INT\n");
fprintf(stderr, " length of flanking regions for chemical read detection [%lu]\n", asm_opt->chemical_flank);
fprintf(stderr, " length of flanking regions for chimeric read detection [%lu]\n", asm_opt->chemical_flank);


fprintf(stderr, "Example: ./hifiasm -o NA12878.asm -t 32 NA12878.fq.gz\n");
Expand Down
2 changes: 1 addition & 1 deletion CommandLines.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <pthread.h>
#include <stdint.h>

#define HA_VERSION "0.22.0-r687"
#define HA_VERSION "0.22.0-r689"

#define VERBOSE 0

Expand Down

0 comments on commit dbdef7f

Please sign in to comment.