10 lines
240 B
Python
10 lines
240 B
Python
|
|
||
|
from shutil import copy
|
||
|
|
||
|
files = ["config.yaml",
|
||
|
"scripts/solve_network.py",
|
||
|
"scripts/prepare_sector_network.py"]
|
||
|
|
||
|
for f in files:
|
||
|
copy(f,snakemake.config['summary_dir'] + '/' + snakemake.config['run'] + '/configs/')
|