Skip to content

Commit

Permalink
Should have been an = in the qualimap java mem flag
Browse files Browse the repository at this point in the history
  • Loading branch information
zjnolen committed Jan 20, 2025
1 parent 9eb9d0f commit 2e792e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/rules/2.1_sample_qc.smk
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ rule qualimap:
runtime="6h",
shell:
"""
qualimap bamqc -bam {input.bam} --java-mem-size {resources.mem_mb}M \
qualimap bamqc -bam {input.bam} --java-mem-size={resources.mem_mb}M \
-outdir {output.fold} 2> {log}
"""

Expand All @@ -80,7 +80,7 @@ rule qualimap_userprovided:
runtime="6h",
shell:
"""
qualimap bamqc -bam {input.bam} --java-mem-size {resources.mem_mb}M \
qualimap bamqc -bam {input.bam} --java-mem-size={resources.mem_mb}M \
-outdir {output.fold} 2> {log}
"""

Expand Down

0 comments on commit 2e792e0

Please sign in to comment.