Skip to content

Commit

Permalink
make ani default
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegenes committed Feb 24, 2024
1 parent 1b64a53 commit 98cbc27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/sourmash_plugin_branchwater/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,10 +366,10 @@ def __init__(self, p):
help='output csv file for the clusters')
p.add_argument('--cluster-sizes', required=True,
help='output file for the cluster size histogram')
p.add_argument('--similarity-column', type=str, default='containment',
p.add_argument('--similarity-column', type=str, default='average_ani',
choices=['containment', 'max_containment', 'jaccard', 'average_ani', 'max_ani'],
help='column to use as distance measure')
p.add_argument('-t', '--threshold', type=float, default=0.5)
p.add_argument('-t', '--threshold', type=float, default=95, help="similarity threshold for clustering. Default: 95% ANI")
p.add_argument('-c', '--cores', default=0, type=int,
help='number of cores to use (default is all available)')

Expand Down

0 comments on commit 98cbc27

Please sign in to comment.