Snakefile: reinsert shutil and os functions

This commit is contained in:
Fabian 2024-03-19 09:48:52 +01:00
parent 23e1139c21
commit 8190fde9ce

View File

@ -4,8 +4,8 @@
from pathlib import Path from pathlib import Path
import yaml import yaml
from os.path import normpath from os.path import normpath, exists
from shutil import move, rmtree from shutil import copyfile, move, rmtree
from snakemake.utils import min_version from snakemake.utils import min_version
min_version("8.5") min_version("8.5")