From 18bfb0efa5108b845e163ef4327a0fe680f335d2 Mon Sep 17 00:00:00 2001 From: David Koppstein Date: Fri, 9 Sep 2022 15:15:36 +0200 Subject: [PATCH] convert workflow.included to list of strings --- snakelib/utils.snake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snakelib/utils.snake b/snakelib/utils.snake index 1c14533..0bc1e18 100644 --- a/snakelib/utils.snake +++ b/snakelib/utils.snake @@ -11,7 +11,7 @@ def generate_help(sfile): rule help: ## print list of all targets with help input: - workflow.included + [str(x) for x in workflow.included] run: print("--------------------------------------------") [generate_help(sfile) for sfile in input]