Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
micknudsen committed Jun 8, 2020
1 parent fc39c48 commit 283d1a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Options:
--minimum_coverage INTEGER Only consider SNP positions with a lest this
coverage [default: 30]
--minimum_base_quality INTEGER Only count bases with a least this quality
--minimum_base_quality INTEGER Only count bases with at least this quality
[default: 1]
--homozygosity_threshold FLOAT Consider a SNP position homozygote if
Expand Down
2 changes: 1 addition & 1 deletion src/snpahoy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_counts(alignment: AlignmentFile, chromosome: str, position: int, minimum

@click.group()
@click.option('--minimum_coverage', default=30, show_default=True, help='Only consider SNP positions with a lest this coverage')
@click.option('--minimum_base_quality', default=1, show_default=True, help='Only count bases with a least this quality')
@click.option('--minimum_base_quality', default=1, show_default=True, help='Only count bases with at least this quality')
@click.option('--homozygosity_threshold', default=0.95, show_default=True, help='Consider a SNP position homozygote if frequency of most common allele is this or higher')
@click.pass_context
def client(ctx, minimum_coverage, homozygosity_threshold, minimum_base_quality):
Expand Down

0 comments on commit 283d1a5

Please sign in to comment.