superlint/test/linters/snakemake_snakefmt/snakemake_good_1.smk

17 lines
247 B
Text
Raw Normal View History

2020-09-07 10:55:06 -04:00
rule all:
input:
file1="result.txt",
rule simulation:
output:
file1="result.txt",
log:
"logs/simulation.log",
conda:
"envs/simulation.yml"
2020-09-07 10:55:06 -04:00
shell:
"""
touch {output}
"""