From 790e55bb630f0764cc6b16fb3bfb8b23f38e7313 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20FR=C3=89ROT?= Date: Sun, 15 Dec 2024 17:06:25 +0000 Subject: [PATCH] Update Workflow management --- Workflow-management.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Workflow-management.md b/Workflow-management.md index 1e573f3..042d695 100644 --- a/Workflow-management.md +++ b/Workflow-management.md @@ -196,4 +196,6 @@ Here are [documentation](https://www.gnu.org/software/make/manual/html_node/inde - [Wildcards](https://www.gnu.org/software/make/manual/html_node/Wildcards.html) are semantically different from wildcards in Snakemake - [Pattern rules](https://www.gnu.org/software/make/manual/html_node/Pattern-Intro.html) correspond to wildcards in Snakemake - [Automatic variables](https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html) correspond to the symbols `$@`, `$<` and `$*` in the example -- [Grouped targets](https://www.gnu.org/software/make/manual/html_node/Multiple-Targets.html) \ No newline at end of file +- [Grouped targets](https://www.gnu.org/software/make/manual/html_node/Multiple-Targets.html) + +One important advantage of Snakemake is the ability to define arbitrarily many wildcards (Make's patterns) in a single rule. Multi-pattern rules do not directly exist in Make. Emulating this feature is [cumbersome](https://stackoverflow.com/questions/3745177/multi-wildcard-pattern-rules-of-gnu-make). \ No newline at end of file