Skip to content

Commit

Permalink
missing commas error
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Caballero committed Sep 30, 2024
1 parent 13a888e commit fedc174
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snakePipes/shared/rules/sambamba.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ rule sambamba_markdup:
input:
aligner+"/{sample}.sorted.bam"
output:
bam=aligner+"/{sample}.bam"# duplicate marked
bam=aligner+"/{sample}.bam",
log="Sambamba/{sample}.sorted.markdup.txt"
threads: lambda wildcards: 10 if 10<max_thread else max_thread
benchmark: aligner + "/.benchmark/sambamba_markdup.{sample}.benchmark"
params:
tempDir = tempDir
tempDir = tempDir,
buffer = "--sort-buffer-size=6000 --overflow-list-size 600000"
conda: CONDA_SAMBAMBA_ENV
shell: """
Expand Down

0 comments on commit fedc174

Please sign in to comment.