From e7008f5f612d553e95384678b9a9867174167363 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20FR=C3=89ROT?= Date: Sun, 15 Dec 2024 16:15:59 +0000 Subject: [PATCH] Update Workflow management --- Workflow-management.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Workflow-management.md b/Workflow-management.md index 0a9811f..415ae5c 100644 --- a/Workflow-management.md +++ b/Workflow-management.md @@ -175,6 +175,8 @@ shortcomings could be solved with a strong knowledge of Make). For reference, here is a `Makefile` defining the same rules as the Snakemake example above. ```makefile +.DELETE_ON_ERROR: # forces make to remove targets of failed rules + # One input, one output groups_with_users.txt: /etc/group cat $< | awk -F ':' '$$4 != "" { print $$1,$$4; }' > $@