Skip to content
Snippets Groups Projects
Commit 899d8d5c authored by Skander Hatira's avatar Skander Hatira
Browse files

updated memory needs for methylkit

parent 96d521e9
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ def all_input(wildcards):
wanted_input.extend(
expand(
[
outdir+"methylation/{id}-{context}/{id}-{context}-overallMethylation.bed.gz",
outdir+"methylation/{id}-{context}/{id}-{context}-methylation-stats.txt",
outdir+"methylation/{id}-{context}/{id}-{context}-coverage-stats.pdf",
] ,
......@@ -42,7 +42,7 @@ def all_input(wildcards):
wanted_input.extend(
expand(
[
outdir+"methylation/{id}-{context}/{id}-{context}-overallMethylation.bed.gz",
outdir+"methylation/{id}-{context}/{id}-{context}-overallMethylation-closest.bed.gz",
] ,
id=get_id(),
......
......@@ -42,7 +42,8 @@ rule compute_methylkit:
minCov=config["params"]["minCov"],
minDiff= config["params"]["minDiff"],
resources:
cpus=4
cpus=4,
mem_mb= lambda Input : int(genomeSize*11*len(Input)),
script:
"../scripts/methylkit.R"
rule closest_feature:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment