From d9031236563b7dd8e31ed27208c9ad39699f765e Mon Sep 17 00:00:00 2001 From: Nicolas Ochsner Date: Fri, 28 Apr 2023 16:09:36 +0200 Subject: [PATCH] fix: Fix inconsistencies between detailed summary and normal summary (#2218) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Description This fixes #1917. ### QC * [x] The PR contains a test case for the changes or the changes are already covered by an existing test case. * [x] The documentation (`docs/`) is updated to reflect the changes or this is not necessary (e.g. if the change does neither modify the language nor the behavior or functionalities of Snakemake). Co-authored-by: Johannes Köster --- snakemake/__init__.py | 1 + snakemake/workflow.py | 1 + 2 files changed, 2 insertions(+) diff --git a/snakemake/__init__.py b/snakemake/__init__.py index 2bcd259c4..f1e604f62 100644 --- a/snakemake/__init__.py +++ b/snakemake/__init__.py @@ -2726,6 +2726,7 @@ def adjust_path(f): or args.filegraph or args.rulegraph or args.summary + or args.detailed_summary or args.lint or args.containerize or args.report diff --git a/snakemake/workflow.py b/snakemake/workflow.py index 9bf8b3367..9d15f5e79 100644 --- a/snakemake/workflow.py +++ b/snakemake/workflow.py @@ -705,6 +705,7 @@ def files(items): or printfilegraph or printdag or summary + or detailed_summary or archive or list_version_changes or list_code_changes