snakecharm icon indicating copy to clipboard operation
snakecharm copied to clipboard

Collecting nested use rules

Open dakochik opened this issue 3 years ago • 0 comments

File boo.smk:

if condition:
  use rule r as rule_new1
else:
  use rule r as rule_new2

File foo.smk:

module M:
   snakefile: "boo.smk"

use rule * from M as other_*

use rule other_rule_new1 as bb with: # Unresolved reference
   threads: 2

other_rule_new1 won't be resolved, but it should

Related to #413

dakochik avatar Aug 11 '21 13:08 dakochik