Skip to content

Commit

Permalink
removed variable assignment for blast process
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-fuchs committed Jan 24, 2024
1 parent f92c77c commit 547246b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion varvamp/scripts/blast.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def run_BLAST(query, blast_db, data_dir, n_threads):
args.append('-' + k)
args.append(str(v))
# run BLAST
proc = subprocess.run(args, capture_output=True, check=True)
subprocess.run(args, capture_output=True, check=True)

return blast_out

Expand Down

0 comments on commit 547246b

Please sign in to comment.