Skip to content

Commit 48b326d

Browse files
committed
A lot of fixes in complete_run.py
1 parent 8197a3f commit 48b326d

File tree

7 files changed

+42
-39
lines changed

7 files changed

+42
-39
lines changed

rules/main.smk

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ rule autogen_output:
4848
filedb_path=os.path.join(pars_path(setup), "filedb"),
4949
setup=lambda wildcards: setup,
5050
basedir=basedir,
51-
threads: workflow.cores
51+
threads: min(workflow.cores, 64)
5252
script:
5353
"../scripts/complete_run.py"

rules/raw.smk

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ raw_par_catalog = ParsKeyResolve.get_par_catalog(
2121

2222
rule build_raw_orca:
2323
"""
24-
This rule runs build_raw, it takes in a file.{daq_ext} and outputs a raw file
24+
This rule runs build_raw(), it takes in a file.fcio and outputs a raw file
2525
"""
2626
input:
2727
get_pattern_tier_daq(setup, extension="orca"),
@@ -51,7 +51,7 @@ rule build_raw_orca:
5151

5252
rule build_raw_fcio:
5353
"""
54-
This rule runs build_raw, it takes in a file.{daq_ext} and outputs a raw file
54+
This rule runs build_raw(), it takes in a file.fcio and outputs a raw file
5555
"""
5656
input:
5757
get_pattern_tier_daq(setup, extension="fcio"),

scripts/build_fdb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from pathlib import Path
44

55
import numpy as np
6-
from legendmeta.catalog import Props
6+
from dbetto.catalog import Props
77
from lgdo import lh5
88
from pygama.flow.file_db import FileDB
99

scripts/check_blinding.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
# check for peaks within +- 5keV of 2614 and 583 to ensure blinding still
8585
# valid and if so create file else raise error. if detector is in ac mode it
8686
# will always pass this check
87-
if np.any(np.abs(maxs - 2614) < 5) and np.any(np.abs(maxs - 583) < 5) or det_status is False:
87+
if (np.any(np.abs(maxs - 2614) < 5) and np.any(np.abs(maxs - 583) < 5)) or det_status is False:
8888
Path(args.output).parent.mkdir(parents=True, exist_ok=True)
8989
Props.write_to(args.output, {})
9090
else:

scripts/complete_run.py

+27-24
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import datetime
44
import json
55
import os
6+
import subprocess
67
import time
78
from pathlib import Path
89

@@ -157,12 +158,12 @@ def find_gen_runs(gen_tier_path):
157158
# first look for non-concat tiers
158159
paths = gen_tier_path.glob("*/*/*/*")
159160
# use the directories to build a datatype/period/run string
160-
runs = {"/".join(p.name.split("/")[-3:]) for p in paths}
161+
runs = {"/".join(str(p).split("/")[-3:]) for p in paths}
161162

162163
# then look for concat tiers (use filenames now)
163164
paths_concat = gen_tier_path.glob("*/*/*.lh5")
164165
# use the directories to build a datatype/period/run string
165-
runs_concat = {"/".join([p.name.split("-")[3]] + p.name.split("-")[1:3]) for p in paths_concat}
166+
runs_concat = {"/".join([str(p).split("-")[3]] + str(p).split("-")[1:3]) for p in paths_concat}
166167

167168
return runs | runs_concat
168169

@@ -188,30 +189,32 @@ def build_file_dbs(gen_tier_path, outdir):
188189
logfile = Path(ut.tmp_log_path(snakemake.params.setup)) / outfile.with_suffix(".log").name
189190
print(f"INFO: ......building {outfile}")
190191

191-
cmdline = ut.runcmd(snakemake.params.setup, aslist=True)
192-
prodenv = as_ro(os.getenv("PRODENV"))
193-
cmdline += [f"--env=PRODENV={prodenv}"]
192+
cmdline = [
193+
*ut.runcmd(snakemake.params.setup, aslist=True),
194+
"--",
195+
"python3",
196+
"-B",
197+
f"{snakemake.params.basedir}/scripts/build_fdb.py",
198+
"--scan-path",
199+
spec,
200+
"--output",
201+
str(outfile),
202+
"--config",
203+
str(outdir / "file_db_config.json"),
204+
"--log",
205+
str(logfile),
206+
]
207+
208+
if speck[0] == "phy":
209+
cmdline += ["--assume-nonsparse"]
210+
211+
print(cmdline)
212+
print(" ".join(cmdline))
213+
214+
cmdenv = {}
194215

195216
# TODO: forward stdout to log file
196-
processes.add(
197-
subprocess.Popen(
198-
[
199-
*cmdline,
200-
"python3",
201-
"-B",
202-
f"{snakemake.params.basedir}/scripts/build_fdb.py",
203-
"--scan-path",
204-
spec,
205-
"--output",
206-
str(outfile),
207-
"--config",
208-
str(outdir / "file_db_config.json"),
209-
"--log",
210-
str(logfile),
211-
"--assume-nonsparse" if speck[0] == "phy" else "",
212-
],
213-
)
214-
)
217+
processes.add(subprocess.Popen(cmdline))
215218

216219
if len(processes) >= snakemake.threads:
217220
os.wait()

scripts/util/__init__.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@
1212
)
1313

1414
__all__ = [
15-
"Props",
16-
"PropsStream",
17-
"Catalog",
18-
"ParsKeyResolve",
1915
"CalGrouping",
20-
"FileKey",
21-
"ProcessingFileKey",
16+
"Catalog",
2217
"ChannelProcKey",
18+
"FileKey",
2319
"ParsCatalog",
24-
"unix_time",
20+
"ParsKeyResolve",
21+
"ProcessingFileKey",
22+
"Props",
23+
"PropsStream",
2524
"runcmd",
26-
"subst_vars_impl",
2725
"subst_vars",
26+
"subst_vars_impl",
2827
"subst_vars_in_snakemake_config",
28+
"unix_time",
2929
]

scripts/util/utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ def filelist_path(setup):
110110

111111
def runcmd(setup, aslist=False):
112112
cmdline = shlex.split(setup["execenv"]["cmd"])
113-
cmdline += ["--env=" + "'PYTHONUSERBASE=" + f"{setup['paths']['install']}" + "'"]
113+
cmdline += ["--env=" + "PYTHONUSERBASE=" + f"{setup['paths']['install']}"]
114114
if "env" in setup["execenv"]:
115-
cmdline += [f'--env="{var}={val}"' for var, val in setup["execenv"]["env"].items()]
115+
cmdline += [f"--env={var}={val}" for var, val in setup["execenv"]["env"].items()]
116116

117117
cmdline += shlex.split(setup["execenv"]["arg"])
118118

0 commit comments

Comments
 (0)