Skip to content

Commit

Permalink
Adapt Snakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
adonath committed Oct 17, 2023
1 parent 6482e6e commit 6f266e7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ include: "rules/summarize-gp-spectra.smk"
# all rule
rule all:
input:
expand("{path_results}/{config_name}/datasets/{config_name}-{event_type}-dataset.fits", path_results=config.path_results, config_name=config_obj.name, event_type=config_obj.event_types),
expand("{path_results}/{config_name}/datasets/{config_name}-datasets-all.yaml", path_results=config.path_results, config_name=config_obj.name),
expand("{path_results}/{config_name}/model/{config_name}-model.yaml", path_results=config.path_results, config_name=config_obj.name),
expand("{path_results}/{config_name}/summary/images/{event_type}/{config_name}-{event_type}-counts-image.png", path_results=config.path_results, config_name=config_obj.name, event_type=config_obj.event_types),
expand("{path_results}/{config_name}/summary/images/{config_name}-counts-spectra.png", path_results=config.path_results, config_name=config_obj.name),
expand("{path_results}/{config_name}/datasets/{config_name}-{event_type}-dataset.fits", path_results=config_obj.path_results, config_name=config_obj.name, event_type=config_obj.event_types),
expand("{path_results}/{config_name}/datasets/{config_name}-datasets-all.yaml", path_results=config_obj.path_results, config_name=config_obj.name),
expand("{path_results}/{config_name}/model/{config_name}-model.yaml", path_results=config_obj.path_results, config_name=config_obj.name),
expand("{path_results}/{config_name}/summary/images/{event_type}/{config_name}-{event_type}-counts-image.png", path_results=config_obj.path_results, config_name=config_obj.name, event_type=config_obj.event_types),
expand("{path_results}/{config_name}/summary/images/{config_name}-counts-spectra.png", path_results=config_obj.path_results, config_name=config_obj.name),

0 comments on commit 6f266e7

Please sign in to comment.