< /ol>
Code: Select all
smk_project
├── config
├── Snakefile
├── input
├── resources
│ └── tool_foo
│ ├── Cargo.lock
│ ├── Cargo.toml
│ ├── scripts
│ └── src
├── result
├── rules
│ └── rules_a_set.smk
└── utils
< /code>
Die Rules_a_set.smk: < /li>
< /ol>
rule a:
input:
a.txt
output:
b.txt
something_I_need_help_here:
?
threads: 4
shell:
"tool_foo {input} {output}"
< /code>
cargo install --git resources/tool_foo