DEBSOURCES
Skip Quicknav
sources / snakemake / 7.32.4-8.1 / tests / test_use_rule_same_module / Snakefile
123456789101112
shell.executable("bash") rule a: output: "test.out" shell: "echo test > {output}" use rule a as b with: output: "test2.out"