Skip to content

Commit

Permalink
Update seqfindr.py
Browse files Browse the repository at this point in the history
Fixed coverage type to float
  • Loading branch information
Nouri BEN ZAKOUR committed Oct 6, 2015
1 parent e9bbd88 commit 6ae8deb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SeqFindr/seqfindr.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,8 @@ def core(args):
default=0.95,
help=('Similarity cutoff [default = 0.95]'))
alg.add_argument('--cov', action='store', type=float,
default=1,
help=('Proportion of query covered cutoff [default = 1]'))
default=1.0,
help=('Proportion of query covered cutoff [default = 1.0]'))
alg.add_argument('-m', '--cons', action='store', default=None,
help=('Full path to directory containing mapping '
'consensuses [default = None]. See manual for '
Expand Down

0 comments on commit 6ae8deb

Please sign in to comment.