Skip to content

Commit 928c366

Browse files
committed
rename rulegraph and add pygments as dependency
1 parent 6451cb4 commit 928c366

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ dependencies = [
6363
[project.optional-dependencies]
6464
# these are needed to run the data production
6565
runprod = [
66+
"pygments",
6667
"snakemake>=8.16",
6768
]
6869
test = [

workflow/Snakefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -143,16 +143,14 @@ onsuccess:
143143
report_plugin = ReportPluginRegistry().get_plugin(form)
144144
report_settings = report_plugin.settings_cls
145145
report_settings.path = rep_dir / f"report.{form}"
146-
# get_settings(path=rep_dir / f"report.{form}")
147-
# report_settings.path = rep_dir / f"report.{form}"
148146
asyncio.run(
149147
auto_report(workflow.persistence.dag, report_plugin, report_settings)
150148
)
151149

152150
with (rep_dir / "dag.txt").open("w") as f:
153151
f.writelines(str(workflow.persistence.dag))
154152

155-
with (rep_dir / "rg.txt").open("w") as f:
153+
with (rep_dir / "rulegraph.txt").open("w") as f:
156154
f.writelines(str(workflow.persistence.dag.rule_dot()))
157155

158156
# remove .gen files

0 commit comments

Comments
 (0)