Skip to content
Snippets Groups Projects
Commit 08898dde authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix file used in first step.

parent 861b7993
Branches
Tags
No related merge requests found
...@@ -100,7 +100,7 @@ def generate_sa(fastq, reference): ...@@ -100,7 +100,7 @@ def generate_sa(fastq, reference):
with open(sai, 'w') as sai_file: with open(sai, 'w') as sai_file:
bwa_command = "bwa aln %s -t %d %s %s" \ bwa_command = "bwa aln %s -t %d %s %s" \
% (bwa_aln_params, cpu_count(), % (bwa_aln_params, cpu_count(),
reference, fastq_basename) reference, fastq)
logger.info("Running bwa with %s", bwa_command) logger.info("Running bwa with %s", bwa_command)
subprocess.check_call(shlex.split(bwa_command), stdout=sai_file) subprocess.check_call(shlex.split(bwa_command), stdout=sai_file)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment