superlint/.automation/test/snakemake/snakemake_good_1.smk

16 lines
247 B
Text

rule all:
input:
file1="result.txt",
rule simulation:
output:
file1="result.txt",
log:
"logs/simulation.log",
conda:
"envs/simulation.yml"
shell:
"""
touch {output}
"""