implement correct status handling and add snakemake profile

This commit is contained in:
Johannes Heuel
2022-09-17 18:55:37 +02:00
parent 6e925b731e
commit a4a84844fa
11 changed files with 833 additions and 67 deletions

12
snakemake/Snakefile Normal file
View File

@@ -0,0 +1,12 @@
rule collect:
input:
[f"{i}.txt" for i in range(100)],
run:
shell("rm {input}")
rule create:
output:
"{i}.txt",
run:
shell("touch {output}")