JetBrains-Research / snakecharm

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

ensure directive #489

Closed iromeo closed 2 years ago

iromeo commented 2 years ago
    rule NAME:
         output:
             ensure("test.txt", non_empty=True)
         shell:
             "somecommand {output}"

Introduces in snakemake:

7.7.0 (2022-05-16)

Features

add flag ensure that allows to annotate that certain output files should be non-empty or agree with a given checksum (#1651) (76f69d9)