-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathSnakefile
128 lines (107 loc) · 3.63 KB
/
Snakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
"""
Snakefile for doing the higher stages of data processing (everything beyond build_raw)
This includes:
- building the tcm
- dsp parameter generation
- building dsp
- hit pars generation
- building hit
- building evt
- the same for partition level tiers
"""
import pathlib, os, json, sys
import scripts.util as ds
from scripts.util.pars_loading import pars_catalog
from scripts.util.patterns import get_pattern_tier_raw
from scripts.util.utils import (
subst_vars_in_snakemake_config,
runcmd,
config_path,
chan_map_path,
filelist_path,
metadata_path,
)
from datetime import datetime
from collections import OrderedDict
# Set with `snakemake --configfile=/path/to/your/config.json`
# configfile: "have/to/specify/path/to/your/config.json"
check_in_cycle = True
subst_vars_in_snakemake_config(workflow, config)
setup = config["setups"]["l200"]
configs = config_path(setup)
chan_maps = chan_map_path(setup)
meta = metadata_path(setup)
swenv = runcmd(setup)
part = ds.dataset_file(setup, os.path.join(configs, "partitions.json"))
basedir = workflow.basedir
include: "rules/common.smk"
include: "rules/main.smk"
localrules:
gen_filelist,
autogen_output,
ds.pars_key_resolve.write_par_catalog(
["-*-*-*-cal"],
os.path.join(pars_path(setup), "pht", "validity.jsonl"),
get_pattern_tier_raw(setup),
{"cal": ["par_pht"], "lar": ["par_pht"]},
)
include: "rules/tcm.smk"
include: "rules/dsp.smk"
include: "rules/hit.smk"
include: "rules/pht.smk"
include: "rules/blinding_calibration.smk"
onstart:
print("Starting workflow")
shell(f"rm {pars_path(setup)}/dsp/validity.jsonl || true")
shell(f"rm {pars_path(setup)}/hit/validity.jsonl || true")
shell(f"rm {pars_path(setup)}/pht/validity.jsonl || true")
shell(f"rm {pars_path(setup)}/raw/validity.jsonl || true")
ds.pars_key_resolve.write_par_catalog(
["-*-*-*-cal"],
os.path.join(pars_path(setup), "raw", "validity.jsonl"),
get_pattern_tier_raw(setup),
{"cal": ["par_raw"]},
)
ds.pars_key_resolve.write_par_catalog(
["-*-*-*-cal"],
os.path.join(pars_path(setup), "dsp", "validity.jsonl"),
get_pattern_tier_raw(setup),
{"cal": ["par_dsp"], "lar": ["par_dsp"]},
)
ds.pars_key_resolve.write_par_catalog(
["-*-*-*-cal"],
os.path.join(pars_path(setup), "hit", "validity.jsonl"),
get_pattern_tier_raw(setup),
{"cal": ["par_hit"], "lar": ["par_hit"]},
)
ds.pars_key_resolve.write_par_catalog(
["-*-*-*-cal"],
os.path.join(pars_path(setup), "pht", "validity.jsonl"),
get_pattern_tier_raw(setup),
{"cal": ["par_pht"], "lar": ["par_pht"]},
)
onsuccess:
print("Workflow finished, no error")
shell("rm *.gen || true")
shell(f"rm {filelist_path(setup)}/* || true")
# Placeholder, can email or maybe put message in slack
onerror:
print("An error occurred :( ")
checkpoint gen_filelist:
"""
This rule generates the filelist. It is a checkpoint so when it is run it will update
the dag passed on the files it finds as an output. It does this by taking in the search
pattern, using this to find all the files that match this pattern, deriving the keys from
the files found and generating the list of new files needed.
"""
output:
os.path.join(filelist_path(setup), "{label}-{tier}.{extension}list"),
params:
setup=lambda wildcards: setup,
search_pattern=lambda wildcards: get_pattern_tier_raw(setup),
basedir=basedir,
configs=configs,
chan_maps=chan_maps,
blinding=False,
script:
"scripts/create_{wildcards.extension}list.py"