Skip to content
Snippets Groups Projects
Commit 2fedb544 authored by Floreal Cabanettes's avatar Floreal Cabanettes
Browse files

Fix summary rule

parent c3d1baaa
No related branches found
No related tags found
No related merge requests found
......@@ -179,11 +179,13 @@ rule summary:
input:
expand("filtered/{svtype}/svtyper_{chrom}_{svtype}_genotypes_filtered.vcf.gz", chrom=chromosomes, svtype=variant_types)
params:
tpl = os.path.join(ROOTPATH, "full.tpl")
tpl = os.path.join(ROOTPATH, "full.tpl"),
ipynb = os.path.join(ROOTPATH, "Summarized_results.ipynb")
output:
ipynb = "Summarized_results.ipynb",
html = "Summarized_results.html"
threads:
1
shell:
"cp {params.ipynb} {output.ipynb}; "
"jupyter nbconvert --to html --template {params.tpl} --execute {output.ipynb}"
\ 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