Skip to content

Commit

Permalink
update help
Browse files Browse the repository at this point in the history
  • Loading branch information
hasindu2008 committed Aug 23, 2024
1 parent 6237ce7 commit ff43ea8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/man.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Basic options in *squigulator* are as below:
- `-t INT`: Number of threads [default: 8]
- `-h`: help
- `--ideal`: To generate perfect signals with no noise. See example [here](img/ideal.svg).
- `--full-contigs`: generate a complete raw signal per each contig in the input reference genome (incompatible with `-n` and `-r`).
- `--full-contigs`: generate a complete raw signal per each contig in the input reference genome or each sequence in the input sequences (incompatible with `-n` and `-r`).
- `--version`: print version
- `--verbose INT`: verbosity level [default: 4]

Expand Down
2 changes: 1 addition & 1 deletion src/sim.c
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ static void print_help(FILE *fp_help, opt_t opt, profile_t p, int64_t nreads) {
fprintf(fp_help," --ideal generate ideal signals with no noise\n");
fprintf(fp_help," --version print version\n");
fprintf(fp_help," --verbose INT verbosity level [%d]\n",(int)get_log_level());
fprintf(fp_help," --full-contigs generate signals for complete contigs (incompatible with -n, -r and -n)\n");
fprintf(fp_help," --full-contigs generate signals for complete contigs/sequences in the input (incompatible with -n, -r & -n)\n");

fprintf(fp_help,"\nadvanced options:\n");
fprintf(fp_help," -K INT batch size (max number of reads created at once) [%d]\n",opt.batch_size);
Expand Down

0 comments on commit ff43ea8

Please sign in to comment.