From 8190fde9cee654a8dafd1fd2df09c18e116e4372 Mon Sep 17 00:00:00 2001 From: Fabian Date: Tue, 19 Mar 2024 09:48:52 +0100 Subject: [PATCH] Snakefile: reinsert shutil and os functions --- Snakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Snakefile b/Snakefile index 3e8875d3..4f55085f 100644 --- a/Snakefile +++ b/Snakefile @@ -4,8 +4,8 @@ from pathlib import Path import yaml -from os.path import normpath -from shutil import move, rmtree +from os.path import normpath, exists +from shutil import copyfile, move, rmtree from snakemake.utils import min_version min_version("8.5")