Commit 2f5170b1 authored by Anna Buschart's avatar Anna Buschart
Browse files

Delete stats.smk

parent ff543bd7
Pipeline #46327 canceled with stages
in 0 seconds
rule collate_stats:
input:
expand("{raw_directory}/Stats/all_stats.tsv", raw_directory=samples.path[samples.stats == 1])
output:
report("Collection/multi_stats.tsv",category="Collection"),
"Collection/multi_stats.RDS"
threads: 1
resources:
runtime = "12:00:00",
mem = MEMCORE
params:
samples = samples.loc[samples.stats == 1,"sample"]
log: "logs/collate_stats.log"
message: 'collate_stats: stats from ' + " ".join(samples.loc[samples.stats == 1,"sample"])+ '.'
threads: 1
conda: ENVDIR + "/IMP_multi.yaml"
script:
SRCDIR + "/multi_collect_stats.R"
localrules: ctrl_stats_collation
rule ctrl_stats_collation:
input:
"Collection/multi_stats.tsv"
output:
touch("status/stats.collated")
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment