JetBrains-Research / snakecharm

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

Warn if snakemake section isn't supported in current snakemake project based on snakemake version #500

Open iromeo opened 1 year ago

iromeo commented 1 year ago

E.g. check min_version declaration and warn if not supported, e.g. template_enginge introduced only in 7.0.0

from snakemake.utils import min_version
min_version("6.0")

configfile: "config.yaml"