Skip to content

Commit

Permalink
fix: natural name sort bams
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Routsong committed Jan 12, 2024
1 parent 340fc9a commit d4a439d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/qc.smk
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ rule bwa:
log: config['out_to'] + "/logs/" + config["project"] + "/bwa_mem/{sids}.log"
shell:
"""
bwa mem -t {threads} {params.host_genome} {input.in_read1} {input.in_read2} | samtools sort -@ {threads} -o {output.aligntoA} -
bwa mem -t {threads} {params.path_genome} {input.in_read1} {input.in_read2} | samtools sort -@ {threads} -o {output.aligntoB} -
bwa mem -t {threads} {params.host_genome} {input.in_read1} {input.in_read2} | samtools sort -@ {threads} -n -o {output.aligntoA} -
bwa mem -t {threads} {params.path_genome} {input.in_read1} {input.in_read2} | samtools sort -@ {threads} -n -o {output.aligntoB} -
"""


Expand Down

0 comments on commit d4a439d

Please sign in to comment.