variable-expansion

Correctly consuming a multiline config file in snakemake as an input

Correctly consuming a multiline config file in snakemake as an input Question: For various reasons I would like to be able to define my inputs in a separate config file. My current version without using a config file looks like: rule test: input: labs = "data/labs.csv" demo = "data/demo.csv" output: "outputs/output.txt" script: "programs/myprogram.py" Instead of …

Total answers: 1