Skip to content
Snippets Groups Projects
Commit aa805acb authored by Rachel  LEGENDRE's avatar Rachel LEGENDRE
Browse files

add threads to bamCoverage

parent a21c578b
Branches
Tags
No related merge requests found
...@@ -168,7 +168,7 @@ feature_counts: ...@@ -168,7 +168,7 @@ feature_counts:
bamCoverage: bamCoverage:
do: yes do: yes
options: "--filterRNAstrand forward --effectiveGenomeSize 2913022398 --normalizeUsing RPKM" options: "--filterRNAstrand forward --effectiveGenomeSize 2913022398 --normalizeUsing RPKM"
threads: 4
#=============================================================================== #===============================================================================
......
...@@ -36,9 +36,11 @@ rule bamCoverage: ...@@ -36,9 +36,11 @@ rule bamCoverage:
options = bamCoverage_options options = bamCoverage_options
envmodules: envmodules:
"deepTools" "deepTools"
threads:
config['bamCoverage']['threads']
shell: shell:
""" """
bamCoverage --bam {input} --outFileName {output} {params.options} 2> {log} bamCoverage --bam {input} --outFileName {output} {params.options} --numberOfProcessors {threads} 2> {log}
""" """
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment