JetBrains-Research / snakecharm

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

Rule already used false positive #481

Open iromeo opened 2 years ago

iromeo commented 2 years ago
# module_481.smk

rule rule_481_M:
    input: ""
rule rule_481_M2:
    input: ""

 # rule_481.smk
module module_481:
    snakefile: "module_481.smk"

use rule rule_481_M1 from module_481 as new_* with:
use rule rule_481_M2 from module_481 as new_* with:

Seems there is no error here, both rules will have different names

image

image