Skip to content

Commit

Permalink
string coerce
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 committed Mar 18, 2024
1 parent 235f3b0 commit 2be5c30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assemble/skani.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def execute(self, subcommand, args, outfile, threads=None):
tool_cmd.extend(["-t", "{}".format(util.misc.sanitize_thread_count(threads))])

# run the command
_log.debug(' '.join(tool_cmd) + ' > ' + outfile)
_log.debug(' '.join(map(str, tool_cmd)) + ' > ' + outfile)
with open(outfile, 'w') as outf:
util.misc.run_and_save(tool_cmd, outf=outf)

Expand Down

0 comments on commit 2be5c30

Please sign in to comment.