JetBrains-Research / snakecharm

Plugin for PyCharm / IntelliJ IDEA Platform IDEs which adds support for Snakemake language.
MIT License
61 stars 7 forks source link

new directive "retries" #490

Closed iromeo closed 2 years ago

iromeo commented 2 years ago
    rule a:
         output:
             "test.txt"
         retries: 3
         shell:
             "curl https://some.unreliable.server/test.txt > {output}"

Introduced in snakemake 7.7.0 (2022-05-16):

Features

new directive “retries” for annotating the number of times a job shall be restarted after a failure (#1649) (c8d81d0) Bug Fixes