From eb7081d7a99f13a1b6cfda945b5ce1e4d48da18c Mon Sep 17 00:00:00 2001 From: CJ Herrmann Date: Wed, 6 Sep 2023 11:19:31 +0200 Subject: [PATCH] typo: add space --- workflow/rules/htsinfer.smk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/rules/htsinfer.smk b/workflow/rules/htsinfer.smk index b8251e6..c67e299 100644 --- a/workflow/rules/htsinfer.smk +++ b/workflow/rules/htsinfer.smk @@ -59,7 +59,7 @@ rule run_htsinfer: set +e htsinfer --records={params.records} --output-directory={params.outdir} --temporary-directory={resources.tmpdir} --cleanup-regime=KEEP_ALL --threads={threads} {input.fq1_path} {params.fq2_path} > {output.htsinfer_json} 2> {log.stderr} exitcode=$? - if [ $exitcode -eq 1] + if [ $exitcode -eq 1 ] then exit 0 fi