Skip to content

Commit

Permalink
Fix orthoani CLI not using the --jobs flag to set thread count
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jun 24, 2020
1 parent fb6f0b1 commit e260f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orthoani/_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def main(argv=None):
try:
query = parse(args.query, "fasta")
reference = parse(args.reference, "fasta")
print(orthoani(query, reference))
print(orthoani(query, reference, threads=args.jobs))
return 0

except KeyboardInterrupt:
Expand Down

0 comments on commit e260f86

Please sign in to comment.