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

Fix bwa aln variables.

parent c7af593e
Branches
Tags
1 merge request!5Resolve "Add mapping and trimming"
Pipeline #1047 failed with stage
in 50 minutes and 24 seconds
......@@ -100,7 +100,7 @@ def generate_sa(fastq, reference):
with open(sai, 'w') as sai_file:
bwa_command = "bwa aln %s -t %d %s %s" \
% (bwa_aln_params, cpu_count(),
reference, fastq, sai_file)
reference, fastq)
logger.info("Running bwa with %s", bwa_command)
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