Skip to content

Commit

Permalink
Added the taxacut to the align parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
bhillmann committed Nov 1, 2017
1 parent 6c70a65 commit 5ec9093
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shogun/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ def align(ctx, aligner, input, database, output, taxacut, threads, percent_id):

if aligner == 'all':
for align in ALIGNERS.values():
aligner_cl = align(database, threads=threads, post_align=False, shell=ctx.obj['shell'], percent_id=percent_id)
aligner_cl = align(database, threads=threads, post_align=False, shell=ctx.obj['shell'], percent_id=percent_id, taxacut=taxacut)
aligner_cl.align(input, output)
else:
aligner_cl = ALIGNERS[aligner](database, threads=threads, post_align=False, shell=ctx.obj['shell'], percent_id=percent_id)
aligner_cl = ALIGNERS[aligner](database, threads=threads, post_align=False, shell=ctx.obj['shell'], percent_id=percent_id, taxacut=taxacut)
aligner_cl.align(input, output)


Expand Down

0 comments on commit 5ec9093

Please sign in to comment.