From 35eb2869855ab595a4cf4fa825f67a60e7df4d66 Mon Sep 17 00:00:00 2001
From: MaNyh <nyhuis@tfd.uni-hannover.de>
Date: Fri, 18 Mar 2022 21:14:02 +0100
Subject: [PATCH] cleanup

---
 workflows/case_creation/Snakefile | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/workflows/case_creation/Snakefile b/workflows/case_creation/Snakefile
index 7939c9e5..0800c7fb 100644
--- a/workflows/case_creation/Snakefile
+++ b/workflows/case_creation/Snakefile
@@ -12,7 +12,6 @@ PARAMS = pd.read_csv("caseparams.tsv",sep="\t")
 
 def validate_configuration(config):
     validate(config,"config.schema.yaml")
-    # todo: the next line is not working. currently TEMPLATE.schema does not have the right format
     validate(PARAMS, TEMPLATE.schema)
     paramspace = Paramspace(PARAMS)
     return paramspace, config
@@ -42,7 +41,5 @@ rule create_case:
         from ntrfc.preprocessing.case_creation.create_case import create_case
         from ntrfc.utils.dictionaries.dict_utils import merge
 
-        print(params["simparams"])
-        print(config["case_options"])
         simconfig = merge(params["simparams"],config["case_options"])
         create_case(input,output,params["case_type"],simconfig)
-- 
GitLab