Skip to content

Commit

Permalink
Merge pull request #16 from broadinstitute/ct-fastqc-kwarg-fix
Browse files Browse the repository at this point in the history
kwarg fix in fastqc threads sanitization
  • Loading branch information
tomkinsc committed Apr 13, 2020
2 parents 2a4ec3e + 5a86333 commit de5c4fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/fastqc.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def version(self):
return TOOL_VERSION

def execute(self, inBam, out_html, out_zip=None, threads=None): # pylint: disable=W0221
threads = util.misc.sanitize_thread_count(threads)
threads = util.misc.sanitize_thread_count(threads=threads)

if tools.samtools.SamtoolsTool().isEmpty(inBam):
# fastqc can't deal with empty input
Expand Down

0 comments on commit de5c4fb

Please sign in to comment.