snakecharm icon indicating copy to clipboard operation
snakecharm copied to clipboard

Rule already used false positive

Open iromeo opened this issue 3 years ago • 0 comments

# 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

iromeo avatar Feb 11 '22 18:02 iromeo