Skip to content

Commit

Permalink
Add snakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhuppmann committed Nov 4, 2024
1 parent a0a01ec commit c5ffe77
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Snakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
rule run_workflow:
input:
"{file}.xlsx",
output:
"{file}_result.xlsx",
log:
"{file}.log",
conda:
"envs/workflow_env.yaml"
script:
"workflow.py"

0 comments on commit c5ffe77

Please sign in to comment.