Skip to content
Snippets Groups Projects
Commit 87e71188 authored by Susheel Busi's avatar Susheel Busi
Browse files

fixed errors

parent aa3d9acc
No related branches found
No related tags found
1 merge request!78Add zymo workflow
......@@ -263,6 +263,11 @@ rule sibeliaz:
log:
out="logs/sibeliaz.{rtype1}.{tool1}.{rtype2}.{tool2}.out.log",
err="logs/sibeliaz.{rtype1}.{tool1}.{rtype2}.{tool2}.err.log"
threads:
config["sibeliaz"]["threads"]
params:
kmers=config["sibeliaz"]["kmer"],
memory=config["sibeliaz"]["mem"]
wildcard_constraints:
rtype1="|".join(READ_TYPES),
rtype2="|".join(READ_TYPES),
......@@ -274,5 +279,5 @@ rule sibeliaz:
"Genome comparision: Sibeliaz: {input.asm1} {input.asm2}"
shell:
"(date && "
"sibeliaz -t config[sibeliaz][threads] -k config[sibeliaz][kmer] -f config[threads][mem] -o $(dirname {output}) {input.asm1} {input.asm2} && "
"sibeliaz -t {threads} -k {params.kmers} -f {params.memory} -o $(dirname {output}) {input.asm1} {input.asm2} && "
"date) 2> {log.err} > {log.out}"
\ No newline at end of file
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